| 123456789101112131415161718192021222324252627282930313233343536 |
- //
- // NewOtherInStorageGoodsDetailVC.h
- // IBOSSmini
- //
- // Created by guan hong hou on 2018/4/24.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- #import "SideSlipFilterController.h"
- #import "OtherInStorageGoodsSearchModel.h"
- #import "NewOtherInStorageGoodsSearchVC.h"
- #import "OtherInStorageGoodsDetailVC.h"
- #import "OtherInStorageGoodsListCell.h"
- #import "WareSearchViewController.h"
- #import "CustomerReportTextVC.h"
- #define In_STORAGE_SEARCH_RANGE_MODEL @"IN_STORAGE_SEARCH_RANGE_MODEL"
- @interface NewOtherInStorageGoodsDetailVC : BaseViewController<SalesInStorageDelegate,UITableViewDelegate,UITableViewDataSource,BaseIDAndNameProtocol,DKScanDelegate>
- @property(nonatomic,strong) UINavigationController *nav;
- @property(nonatomic,strong) UIView *searchView;
- @property(nonatomic,strong) UIView *topSeparatorView;
- @property(nonatomic,strong) NSString *goodsCode;
- @property(nonatomic,strong) NSString *goodsName;
- @property(nonatomic,strong) NSString *onlyCode;
- @property(nonatomic,strong) NSString *brandId;
- @property(nonatomic,strong) NSString *kindId;
- @property(nonatomic,strong) NSString *kindCode;
- @property(nonatomic,strong) NSString *varietyId;
- @property(nonatomic,assign) NSInteger position;
- @property(nonatomic,strong) UITableView *vTableView;
- @property(nonatomic,strong) NSMutableArray *dataList;
- @property(nonatomic,strong) NSMutableArray *positionNumberList;
- @property(nonatomic,strong) OtherInStorageGoodsSearchListModel *goodsListModel;
- @property (strong, nonatomic) SideSlipFilterController *filterController;
- @property(nonatomic,strong) NewOtherInStorageVC *otherInStorageVc;
- @end
|