OtherOutStorageListVC.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // OtherOutStorageListVC.h
  3. // IBOSSmini
  4. //
  5. // Created by guan hong hou on 2018/4/20.
  6. // Copyright © 2018年 elongtian. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. #import "OtherOutStorageListSearchModel.h"
  10. #import "OtherOutStorageListModel.h"
  11. #import "OtherOutStorageListCell.h"
  12. #import "OtherOutStorageListModel.h"
  13. #import "OtherOutStorageListDetailVC.h"
  14. #import "OtherOutStorageDetailVC.h"
  15. #import "NewOtherOutStorageHomeVC.h"
  16. #define OTHER_OUT_STORAGE_SEARCH_RANGE_MODEL @"OTHER_OUT_STORAGE_SEARCH_RANGE_MODEL"
  17. @interface OtherOutStorageListVC : BaseViewController<UITableViewDataSource,UITableViewDelegate,RefreshTableViewDelegate,OtherOutStorageDelegate,SalesInStorageDelegate>
  18. @property(nonatomic,strong) UIView *searchView;
  19. @property(nonatomic,strong) UIView *topSeparatorView;
  20. @property (nonatomic,strong) RefreshTableView *vCustomTableView;
  21. @property(nonatomic,strong) NSMutableArray *dataList;
  22. @property (nonatomic,strong) ASIDownManager *downManager;
  23. @property (strong, nonatomic) SideSlipFilterController *filterController;
  24. @property(nonatomic,strong)NSString *outStorageNo;
  25. @property(nonatomic,strong)NSString *supplierId;
  26. @property(nonatomic,strong)NSString *startDate;
  27. @property(nonatomic,strong)NSString *endDate;
  28. @property(nonatomic,strong)NSString *departmentCode;
  29. @property(nonatomic,strong)NSString *customerCode;
  30. @property(nonatomic,strong)NSString *staffId;
  31. @property(nonatomic,strong)NSString *invoiceStatus;
  32. @property(nonatomic,strong) OtherOutStorageListModel *outStorageListModel;
  33. @end