InventoryFreezeGoodsSearchViewController.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. //
  2. // InventoryFreezeGoodsSearchViewController.h
  3. // IBOSS
  4. //
  5. // Created by 关宏厚 on 2020/4/28.
  6. // Copyright © 2020 elongtian. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. #import "InventoryFreezeGoodsSearchModel.h"
  10. #import "InventoryGoodsModel.h"
  11. #import "InventoryGoodsListCell.h"
  12. #import "NewInventoryFreezeViewController.h"
  13. @interface InventoryFreezeGoodsSearchViewController : BaseViewController<UITableViewDataSource,UITableViewDelegate,InventoryGoodsDelegate>
  14. /**
  15. 底部视图
  16. */
  17. @property (strong) UIView *bottomView;
  18. /**
  19. 选中所有按钮
  20. */
  21. @property (nonatomic, strong) UIButton *btnCheckAll;
  22. @property(nonatomic,strong) UIButton *btnSave;
  23. @property(nonatomic,strong) NSString *goodsCode;
  24. @property(nonatomic,strong) NSString *onlyCode;
  25. @property(nonatomic,strong) NSString *goodsName;
  26. /**
  27. 父类导航控制器
  28. */
  29. @property (strong,nonatomic) UINavigationController *cNav;
  30. @property (strong,nonatomic) SideSlipFilterController *filterController;
  31. /**
  32. ASIDownManager
  33. */
  34. @property (nonatomic,strong) ASIDownManager *downManager;
  35. @property(nonatomic,strong) NSMutableArray *inventoryGoodsList;
  36. @property(nonatomic,strong) NSMutableArray *submitInventoryGoodsList;
  37. @property (nonatomic,strong) UITableView* tableView;
  38. @property(nonatomic,strong) UIView *searchView;
  39. @property(nonatomic,assign) BOOL isCheckAll;
  40. @property (strong,nonatomic) NSMutableDictionary *heights;
  41. @end