| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- //
- // InventoryViewController.h
- // IBOSS
- //
- // Created by apple on 2017/5/15.
- // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
- //
- // 功能描述:库存明细表控制器
- //
- #import "BaseViewController.h"
- #import "InventoryModel.h"
- #import "RefreshTableView.h"
- #import "SideSlipFilterController.h"
- #import "SideSlipModel.h"
- @interface InventoryViewController : BaseViewController
- // 查询条件
- /**
- 商品编码
- */
- @property (copy, nonatomic) NSString *goodsCodeStr;
- /**
- 商品名称
- */
- @property (copy, nonatomic) NSString *goodsNameStr;
- /**
- 唯一编码
- */
- @property (copy, nonatomic) NSString *onlyCodeStr;
- /**
- 库区
- */
- @property (copy, nonatomic) NSString *warehouseIdStr;
- /**
- 品牌
- */
- @property (copy, nonatomic) NSString *brandIdStr;
- @property (copy, nonatomic) NSString *ceaseFlag;
- @property(nonatomic,strong) NSString *positionNumberValue;
- @property (copy, nonatomic) NSString *goodsSpecification;
- @property (copy, nonatomic) NSString *minimumCanSalesQuantity;
- @property (copy, nonatomic) NSString *maximumCanSalesQuantity;
- @property (copy, nonatomic) NSString *settingValues;
- /**
- 零库存
- */
- @property (nonatomic,assign) Boolean isFilterQuantityEqZero;
- /**
- 数据源dic数据
- */
- @property (strong,nonatomic) NSMutableArray *arrDataList;
- /**
- 数据源model数据
- */
- @property (strong,nonatomic) NSMutableArray *arrNewdataList;
- /**
- model数据
- */
- @property (nonatomic,strong) InventoryModel *infoModel;
- /**
- ASIDownManager
- */
- @property (nonatomic,strong) ASIDownManager *downManager;
- /**
- TableView
- */
- @property (nonatomic,strong) RefreshTableView *customTableView;
- /**
- 抽屉对象
- */
- @property (strong,nonatomic) SideSlipFilterController *filterController;
- @end
|