| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- //
- // InventoryFreezeGoodsSearchViewController.h
- // IBOSS
- //
- // Created by 关宏厚 on 2020/4/28.
- // Copyright © 2020 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- #import "InventoryFreezeGoodsSearchModel.h"
- #import "InventoryGoodsModel.h"
- #import "InventoryGoodsListCell.h"
- #import "NewInventoryFreezeViewController.h"
- @interface InventoryFreezeGoodsSearchViewController : BaseViewController<UITableViewDataSource,UITableViewDelegate,InventoryGoodsDelegate>
- /**
- 底部视图
- */
- @property (strong) UIView *bottomView;
- /**
- 选中所有按钮
- */
- @property (nonatomic, strong) UIButton *btnCheckAll;
- @property(nonatomic,strong) UIButton *btnSave;
- @property(nonatomic,strong) NSString *goodsCode;
- @property(nonatomic,strong) NSString *onlyCode;
- @property(nonatomic,strong) NSString *goodsName;
- /**
- 父类导航控制器
- */
- @property (strong,nonatomic) UINavigationController *cNav;
- @property (strong,nonatomic) SideSlipFilterController *filterController;
- /**
- ASIDownManager
- */
- @property (nonatomic,strong) ASIDownManager *downManager;
- @property(nonatomic,strong) NSMutableArray *inventoryGoodsList;
- @property(nonatomic,strong) NSMutableArray *submitInventoryGoodsList;
- @property (nonatomic,strong) UITableView* tableView;
- @property(nonatomic,strong) UIView *searchView;
- @property(nonatomic,assign) BOOL isCheckAll;
- @property (strong,nonatomic) NSMutableDictionary *heights;
- @end
|