CustomerCurrentAccountSummarySearchCell.h 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. //
  2. // CustomerCurrentAccountSummarySearchCell.h
  3. // IBOSS
  4. //
  5. // Created by 关宏厚 on 2021/2/24.
  6. // Copyright © 2021 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "SideSlipBaseTableViewCell.h"
  10. #import "UIColor+hexColor.h"
  11. #import "SideSlipConfig.h"
  12. #import "CustomerAchievementTextVC.h"
  13. #import "BRDatePickerView.h"
  14. #import "CustomerCurrentSummarySearchModel.h"
  15. @interface CustomerCurrentAccountSummarySearchCell : SideSlipBaseTableViewCell<UITextFieldDelegate,CustomerReportTextProtocol>
  16. @property (strong, nonatomic) IBOutlet UIButton *btnDepartment;
  17. @property (strong, nonatomic) IBOutlet UIButton *btnChannel;
  18. @property (strong, nonatomic) IBOutlet UIButton *btnStartDate;
  19. @property (strong, nonatomic) IBOutlet UIButton *btnEndDate;
  20. @property (strong, nonatomic) IBOutlet UITextField *txtCustomerCode;
  21. @property (strong, nonatomic) IBOutlet UITextField *txtCustomerName;
  22. @property (strong, nonatomic) IBOutlet UITextField *txtTelephone;
  23. @property (strong, nonatomic) IBOutlet UITextField *txtCustomerAddress;
  24. @property (strong, nonatomic) IBOutlet UILabel *lblFilterZeroAmount;
  25. @property (strong, nonatomic) NSString *organizationCode;
  26. @property (strong, nonatomic) NSString *sChannelId;
  27. @property (strong,nonatomic) SideSlipModel *regionModel;
  28. @property(nonatomic,assign) Boolean isFilterZeroAmount;
  29. @property (copy, nonatomic) NSString *sAccountStartDate;
  30. @property (copy, nonatomic) NSString *sAccountEndDate;
  31. /**
  32. 开始日期
  33. */
  34. @property (copy, nonatomic) NSString *tempAccountStartDate;
  35. /**
  36. 结束日期
  37. */
  38. @property (copy, nonatomic) NSString *tempAccountEndDate;
  39. @property (strong,nonatomic) BRDatePickerView *dealDatePicker;
  40. @end