| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- //
- // CustomerCurrentAccountSummarySearchCell.h
- // IBOSS
- //
- // Created by 关宏厚 on 2021/2/24.
- // Copyright © 2021 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "SideSlipBaseTableViewCell.h"
- #import "UIColor+hexColor.h"
- #import "SideSlipConfig.h"
- #import "CustomerAchievementTextVC.h"
- #import "BRDatePickerView.h"
- #import "CustomerCurrentSummarySearchModel.h"
- @interface CustomerCurrentAccountSummarySearchCell : SideSlipBaseTableViewCell<UITextFieldDelegate,CustomerReportTextProtocol>
- @property (strong, nonatomic) IBOutlet UIButton *btnDepartment;
- @property (strong, nonatomic) IBOutlet UIButton *btnChannel;
- @property (strong, nonatomic) IBOutlet UIButton *btnStartDate;
- @property (strong, nonatomic) IBOutlet UIButton *btnEndDate;
- @property (strong, nonatomic) IBOutlet UITextField *txtCustomerCode;
- @property (strong, nonatomic) IBOutlet UITextField *txtCustomerName;
- @property (strong, nonatomic) IBOutlet UITextField *txtTelephone;
- @property (strong, nonatomic) IBOutlet UITextField *txtCustomerAddress;
- @property (strong, nonatomic) IBOutlet UILabel *lblFilterZeroAmount;
- @property (strong, nonatomic) NSString *organizationCode;
- @property (strong, nonatomic) NSString *sChannelId;
- @property (strong,nonatomic) SideSlipModel *regionModel;
- @property(nonatomic,assign) Boolean isFilterZeroAmount;
- @property (copy, nonatomic) NSString *sAccountStartDate;
- @property (copy, nonatomic) NSString *sAccountEndDate;
- /**
- 开始日期
- */
- @property (copy, nonatomic) NSString *tempAccountStartDate;
- /**
- 结束日期
- */
- @property (copy, nonatomic) NSString *tempAccountEndDate;
- @property (strong,nonatomic) BRDatePickerView *dealDatePicker;
- @end
|