| 123456789101112131415161718192021222324252627282930313233343536 |
- //
- // OtherOutStorageListVC.h
- // IBOSSmini
- //
- // Created by guan hong hou on 2018/4/20.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- #import "OtherOutStorageListSearchModel.h"
- #import "OtherOutStorageListModel.h"
- #import "OtherOutStorageListCell.h"
- #import "OtherOutStorageListModel.h"
- #import "OtherOutStorageListDetailVC.h"
- #import "OtherOutStorageDetailVC.h"
- #import "NewOtherOutStorageHomeVC.h"
- #define OTHER_OUT_STORAGE_SEARCH_RANGE_MODEL @"OTHER_OUT_STORAGE_SEARCH_RANGE_MODEL"
- @interface OtherOutStorageListVC : BaseViewController<UITableViewDataSource,UITableViewDelegate,RefreshTableViewDelegate,OtherOutStorageDelegate,SalesInStorageDelegate>
-
- @property(nonatomic,strong) UIView *searchView;
- @property(nonatomic,strong) UIView *topSeparatorView;
- @property (nonatomic,strong) RefreshTableView *vCustomTableView;
- @property(nonatomic,strong) NSMutableArray *dataList;
- @property (nonatomic,strong) ASIDownManager *downManager;
- @property (strong, nonatomic) SideSlipFilterController *filterController;
- @property(nonatomic,strong)NSString *outStorageNo;
- @property(nonatomic,strong)NSString *supplierId;
- @property(nonatomic,strong)NSString *startDate;
- @property(nonatomic,strong)NSString *endDate;
- @property(nonatomic,strong)NSString *departmentCode;
- @property(nonatomic,strong)NSString *customerCode;
- @property(nonatomic,strong)NSString *staffId;
- @property(nonatomic,strong)NSString *invoiceStatus;
- @property(nonatomic,strong) OtherOutStorageListModel *outStorageListModel;
- @end
|