NewSalesOutStorageListVC.h 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. //
  2. // NewSalesOutStorageListVC.h
  3. // IBOSSmini
  4. //
  5. // Created by guan hong hou on 2018/4/12.
  6. // Copyright © 2018年 elongtian. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. #import "ScanViewController.h"
  10. #import "SalesSlipSearchModel.h"
  11. #import "SalesSlipListModel.h"
  12. #import "CustomerReportTextVC.h"
  13. #import "SalesSlipSearchListVC.h"
  14. #import "NewSalesOutStorageGoodsDetailVC.h"
  15. #define SALES_SLIP_SEARCH_RANGE_MODEL @"SALES_SLIP_SEARCH_RANGE_MODEL"
  16. @interface NewSalesOutStorageListVC : BaseViewController<DKScanDelegate,SalesOutStorageDelegate,UITextFieldDelegate>
  17. @property(nonatomic,strong) UIButton *btnSearch;
  18. @property(nonatomic,strong) NSString *salesNo;
  19. @property(nonatomic,strong) NSString *goodsCode;
  20. @property(nonatomic,strong) NSString *customerName;
  21. @property(nonatomic,strong) NSString *customerCode;
  22. @property(nonatomic,strong) NSString *startDate;
  23. @property(nonatomic,strong) NSString *endDate;
  24. @property(nonatomic,strong) NSString *address;
  25. @property(nonatomic,strong) NSString *invoiceStatus;
  26. @property(nonatomic,strong) UILabel *lblOutStorageNo;
  27. @property(nonatomic,strong) UILabel *lblCustomerCode;
  28. @property(nonatomic,strong) UILabel *lblCustomerName;
  29. @property(nonatomic,strong) UILabel *lblTelephone;
  30. @property(nonatomic,strong) UILabel *lblDriver;
  31. @property(nonatomic,strong) UILabel *lblDocker;
  32. @property(nonatomic,strong) UILabel *lblCustomerAddress;
  33. @property(nonatomic,strong) UITextField *txtRemarks;
  34. @property(nonatomic,strong) UIView *middleSeparatorView;
  35. @property(nonatomic,strong) NSMutableArray *dataList;
  36. @property(nonatomic,strong) NSMutableArray *goodsList;
  37. @property(nonatomic,strong) NSString* driverId;
  38. @property(nonatomic,strong) NSString* driverName;
  39. @property(nonatomic,strong) NSString* dockerId;
  40. @property(nonatomic,strong) NSString* dockerName;
  41. @property(nonatomic,strong) NSString* remarks;
  42. @property (strong, nonatomic) SideSlipFilterController *filterController;
  43. @property(nonatomic,strong) UINavigationController *listNavVc;
  44. @property (nonatomic,strong) SalesOutStorageSalesSlipModel *salesSlipListModel;
  45. @property (nonatomic,strong) ASIDownManager *downManager;
  46. @property (nonatomic)BOOL keyboardShow;
  47. @property(nonatomic,strong)NewSalesOutStorageGoodsDetailVC *goodsDetailVc;
  48. @end