NewInventoryUnfreezeViewController.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. //
  2. // NewInventoryUnfreezeViewController.h
  3. // IBOSS
  4. //
  5. // Created by 关宏厚 on 2020/5/15.
  6. // Copyright © 2020 elongtian. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. #import "NewInventoryUnfreezeGoodsListCell.h"
  10. #import "InvoiceStyleViewController.h"
  11. @interface NewInventoryUnfreezeViewController : BaseViewController<UITableViewDelegate,UITableViewDataSource,InventoryGoodsDelegate>
  12. @property(nonatomic,strong) NSMutableArray *unfreezeGoodsList;
  13. @property(nonatomic,strong) NSString *freezeId;
  14. @property(nonatomic,strong) NSString *unfreezeId;
  15. @property(nonatomic,assign) bool editFlag;
  16. @property(nonatomic,strong) NSString *styleId;
  17. @property(nonatomic,strong) NSString *styleName;
  18. /**
  19. tableview的headerview
  20. */
  21. @property (nonatomic,strong) UIView* headerView;
  22. /**
  23. 提交订单的tableview
  24. */
  25. @property (nonatomic,strong)UITableView *tableView;
  26. @property (nonatomic,strong) UIButton *btnInvoiceStyle;
  27. @property(nonatomic,strong) UITextField *txtRemarks;
  28. @property (nonatomic,strong) UIButton *btnSubmit;
  29. @property (strong,nonatomic) NSMutableDictionary *heights;
  30. /**
  31. ASIDownManager
  32. */
  33. @property (nonatomic,strong) ASIDownManager *downManager;
  34. /**
  35. 委托
  36. */
  37. @property (weak,nonatomic) id<InventoryGoodsDelegate> inventoryDelegate;
  38. @end