OrderSalesSearchTableViewCell.h 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. //
  2. // OrderSalesSearchTableViewCell.h
  3. // IBOSS
  4. //
  5. // Created by guan hong hou on 2017/5/26.
  6. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
  7. //
  8. // 功能描述:订单销售单查询单元格
  9. //
  10. #import <UIKit/UIKit.h>
  11. #import "SideSlipBaseTableViewCell.h"
  12. #import "SideSlipModel.h"
  13. #import "BRDatePickerView.h"
  14. #import "OrderSalesSearchModel.h"
  15. #import "StatusInfoTextVC.h"
  16. #import "DateFormat.h"
  17. #import "CustomerAchievementTextVC.h"
  18. @interface OrderSalesSearchTableViewCell : SideSlipBaseTableViewCell<UITextFieldDelegate,StatusInfoTextDelegate,CustomerReportTextProtocol>
  19. /**
  20. 日期
  21. */
  22. @property (copy, nonatomic) NSString *startDate;
  23. /**
  24. 结束日期
  25. */
  26. @property (copy, nonatomic) NSString *endDate;
  27. /**
  28. 业务员
  29. */
  30. @property (copy, nonatomic) NSString *staffId;
  31. /**
  32. 客户名称
  33. */
  34. @property (strong,nonatomic) IBOutlet UITextField *txtCustomerName;
  35. @property (strong, nonatomic) IBOutlet UITextField *txtCustomerAddress;
  36. /**
  37. 电话
  38. */
  39. @property (strong,nonatomic) IBOutlet UITextField *txtContactTelephone;
  40. /**
  41. 开始日期
  42. */
  43. @property (strong,nonatomic) IBOutlet UIButton *btnStartDate;
  44. /**
  45. 结束日期
  46. */
  47. @property (strong,nonatomic) IBOutlet UIButton *btnEndDate;
  48. /**
  49. 未过滤一过滤
  50. */
  51. @property (strong,nonatomic) IBOutlet UIButton *btnFilter;
  52. /**
  53. 类型
  54. */
  55. @property (strong,nonatomic) IBOutlet UIButton *btnInvoiceType;
  56. @property (strong, nonatomic) IBOutlet UIButton *btnOrganization;
  57. /**
  58. 业务员
  59. */
  60. @property (weak, nonatomic) IBOutlet UIButton *btnSalesman;
  61. /**
  62. 抽屉model
  63. */
  64. @property (strong,nonatomic) SideSlipModel *slideModel;
  65. /**
  66. 日期对象
  67. */
  68. @property (strong,nonatomic) BRDatePickerView *brdatePicker;
  69. /**
  70. 查询model
  71. */
  72. @property (strong,nonatomic) OrderSalesSearchModel *searchModel;
  73. /**
  74. 单据类型数据源
  75. */
  76. @property (strong,nonatomic) NSMutableArray *arrayStatus;
  77. /**
  78. 过滤已过滤数据源
  79. */
  80. @property (strong,nonatomic) NSMutableDictionary *mutDict;
  81. /**
  82. 业务部门Code
  83. */
  84. @property (strong,nonatomic) NSString *businessDepartmentCode;
  85. @end