SalesOutStorageListVC.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. //
  2. // SalesOutStorageListVC.h
  3. // IBOSSmini
  4. //
  5. // Created by guan hong hou on 2018/4/10.
  6. // Copyright © 2018年 elongtian. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. #import "RefreshTableView.h"
  10. #import "SalesOutStorageListModel.h"
  11. #import "SalesOutStorageListCell.h"
  12. #import "SideSlipModel.h"
  13. #import "SalesOutStorageSearchModel.h"
  14. #import "SalesOutStorageListDetailVC.h"
  15. #import "SalesOutStorageDetailVC.h"
  16. #import "NewSalesOutStorageHomeVC.h"
  17. #define OUT_STORAGE_SEARCH_RANGE_MODEL @"OUT_STORAGE_SEARCH_RANGE_MODEL"
  18. @interface SalesOutStorageListVC : BaseViewController<UITableViewDataSource,
  19. UITableViewDelegate,SalesOutStorageListCellDelegate,SalesOutStorageDelegate,RefreshTableViewDelegate>
  20. /**
  21. 刷新tableview
  22. */
  23. @property (nonatomic,strong) RefreshTableView *vCustomTableView;
  24. @property(nonatomic,strong) NSMutableArray *dataList;
  25. @property(nonatomic,strong) UIView *topSeparatorView;
  26. @property(nonatomic,strong) SalesOutStorageListModel *outStorageListModel;
  27. /**
  28. 抽屉控制器
  29. */
  30. @property (strong, nonatomic) SideSlipFilterController *filterController;
  31. @property(nonatomic,strong)NSString *outStorageNo;
  32. @property(nonatomic,strong)NSString *customerName;
  33. @property(nonatomic,strong)NSString *startDate;
  34. @property(nonatomic,strong)NSString *endDate;
  35. @property(nonatomic,strong)NSString *salesNo;
  36. @property(nonatomic,strong)NSString *customerCode;
  37. @property(nonatomic,strong)NSString *customerAddress;
  38. @property(nonatomic,strong) NSString *invoiceStatus;
  39. @property (nonatomic,strong) ASIDownManager *downManager;
  40. @end