| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- //
- // SalesOutStorageListVC.h
- // IBOSSmini
- //
- // Created by guan hong hou on 2018/4/10.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- #import "RefreshTableView.h"
- #import "SalesOutStorageListModel.h"
- #import "SalesOutStorageListCell.h"
- #import "SideSlipModel.h"
- #import "SalesOutStorageSearchModel.h"
- #import "SalesOutStorageListDetailVC.h"
- #import "SalesOutStorageDetailVC.h"
- #import "NewSalesOutStorageHomeVC.h"
- #define OUT_STORAGE_SEARCH_RANGE_MODEL @"OUT_STORAGE_SEARCH_RANGE_MODEL"
- @interface SalesOutStorageListVC : BaseViewController<UITableViewDataSource,
- UITableViewDelegate,SalesOutStorageListCellDelegate,SalesOutStorageDelegate,RefreshTableViewDelegate>
- /**
- 刷新tableview
- */
- @property (nonatomic,strong) RefreshTableView *vCustomTableView;
- @property(nonatomic,strong) NSMutableArray *dataList;
- @property(nonatomic,strong) UIView *topSeparatorView;
- @property(nonatomic,strong) SalesOutStorageListModel *outStorageListModel;
- /**
- 抽屉控制器
- */
- @property (strong, nonatomic) SideSlipFilterController *filterController;
- @property(nonatomic,strong)NSString *outStorageNo;
- @property(nonatomic,strong)NSString *customerName;
- @property(nonatomic,strong)NSString *startDate;
- @property(nonatomic,strong)NSString *endDate;
- @property(nonatomic,strong)NSString *salesNo;
- @property(nonatomic,strong)NSString *customerCode;
- @property(nonatomic,strong)NSString *customerAddress;
- @property(nonatomic,strong) NSString *invoiceStatus;
- @property (nonatomic,strong) ASIDownManager *downManager;
- @end
|