InventoryGoodsDelegate.h 745 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // InventoryGoodsDelegate.h
  3. // IBOSS
  4. //
  5. // Created by 关宏厚 on 2020/4/29.
  6. // Copyright © 2020 elongtian. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @class InventoryGoodsListCell;
  10. @class InventoryFrozenGoodsListCell;
  11. @protocol InventoryGoodsDelegate <NSObject>
  12. @optional
  13. - (void) btnCheckPressed:(InventoryGoodsListCell*)cell;
  14. -(void)btnFrozenGoodsCheckPressed:(InventoryFrozenGoodsListCell*)cell;
  15. -(void)getInvoiceStyle:(NSString*)invoiceStyleId name:(NSString*)invoiceStyleName;
  16. -(void)getFreezeReason:(NSString*)reasonId name:(NSString*)reasonName;
  17. -(void)refreshData;
  18. -(void)editData:(NSInteger)position;
  19. -(void)getInventoryFrozenGoodsDetail:(NSString*)freezeId unfreezeId:(NSString*)unfreezeId;
  20. @end