SingleProfitSearchCell.h 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. //
  2. // SingleProfitSearchCell.h
  3. // IBOSS
  4. //
  5. // Created by apple on 2017/5/19.
  6. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
  7. //
  8. // 功能描述:每单利润表查询单元格
  9. //
  10. #import <UIKit/UIKit.h>
  11. #import "SideSlipBaseTableViewCell.h"
  12. #import "DateFormat.h"
  13. @interface SingleProfitSearchCell : SideSlipBaseTableViewCell
  14. /**
  15. 业务部门
  16. */
  17. @property (strong,nonatomic) IBOutlet UIButton *btnOrg;
  18. /**
  19. 业务员
  20. */
  21. @property (strong,nonatomic) IBOutlet UIButton *btnStaff;
  22. /**
  23. 开始日期
  24. */
  25. @property (strong,nonatomic) IBOutlet UIButton *btnStartDate;
  26. /**
  27. 结束日期
  28. */
  29. @property (strong,nonatomic) IBOutlet UIButton *btnEndDate;
  30. /**
  31. 开始日期
  32. */
  33. @property (copy, nonatomic) NSString *sStartDate;
  34. /**
  35. 结束日期
  36. */
  37. @property (copy, nonatomic) NSString *sEndDate;
  38. /**
  39. 业务部门
  40. */
  41. @property (copy, nonatomic) NSString *sOrg;
  42. /**
  43. 业务员
  44. */
  45. @property (copy, nonatomic) NSString *sStaff;
  46. /**
  47. 客户名称
  48. */
  49. @property (strong,nonatomic) IBOutlet UITextField *txtCustomerName;
  50. @property (strong, nonatomic) IBOutlet UITextField *txtCustomerAddress;
  51. @property (strong, nonatomic) IBOutlet UITextField *txtCustomerCode;
  52. @property (strong, nonatomic) IBOutlet UIButton *btnSalesSlip;
  53. @property(strong,nonatomic) NSString *mBusinessType;
  54. @property (strong, nonatomic) IBOutlet UIButton *btnSalesOrder;
  55. @end