OtherInStorageListVC.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. //
  2. // OtherInStorageListVC.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 "SideSlipFilterController.h"
  10. #import "OtherInStorageSearchModel.h"
  11. #import "OtherInStorageListModel.h"
  12. #import "SalesInStorageListCell.h"
  13. #import "OtherInStorageGoodsDetailListVC.h"
  14. #import "OtherInStorageDetailVC.h"
  15. #import "NewOtherInStorageHomeVC.h"
  16. #define SALES_IN_STORAGE_SEARCH_RANGE_MODEL @"SALES_IN_STORAGE_SEARCH_RANGE_MODEL"
  17. @interface OtherInStorageListVC : BaseViewController<UITableViewDataSource,
  18. UITableViewDelegate,RefreshTableViewDelegate,SalesInStorageDelegate>
  19. @property (nonatomic,strong) RefreshTableView *vCustomTableView;
  20. @property(nonatomic,strong) NSMutableArray *dataList;
  21. @property(nonatomic,strong) UIView *topSeparatorView;
  22. @property (nonatomic,strong) ASIDownManager *downManager;
  23. @property(nonatomic,strong) NSString *enterNo;
  24. @property(nonatomic,strong) NSString *supplierId;
  25. @property(nonatomic,strong) NSString *customerCode;
  26. @property(nonatomic,strong) NSString *startDate;
  27. @property(nonatomic,strong) NSString *endDate;
  28. @property(nonatomic,strong) NSString *organizationCode;
  29. @property(nonatomic,strong) NSString *staffId;
  30. @property(nonatomic,strong) NSString *invoiceStatus;
  31. @property(nonatomic,strong) NSString *enterType;
  32. @property(nonatomic,strong) UIView *searchView;
  33. @property(nonatomic,strong) OtherInStorageListModel *otherInStorageListModel;
  34. @property (strong, nonatomic) SideSlipFilterController *filterController;
  35. @end