| 12345678910111213141516171819202122232425262728293031323334 |
- //
- // InventoryGoodsDelegate.h
- // IBOSS
- //
- // Created by 关宏厚 on 2020/4/29.
- // Copyright © 2020 elongtian. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @class InventoryGoodsListCell;
- @class InventoryFrozenGoodsListCell;
- @protocol InventoryGoodsDelegate <NSObject>
- @optional
- - (void) btnCheckPressed:(InventoryGoodsListCell*)cell;
- -(void)btnFrozenGoodsCheckPressed:(InventoryFrozenGoodsListCell*)cell;
- -(void)getInvoiceStyle:(NSString*)invoiceStyleId name:(NSString*)invoiceStyleName;
- -(void)getFreezeReason:(NSString*)reasonId name:(NSString*)reasonName;
- -(void)refreshData;
- -(void)editData:(NSInteger)position;
- -(void)getInventoryFrozenGoodsDetail:(NSString*)freezeId unfreezeId:(NSString*)unfreezeId;
- @end
|