| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- //
- // OrderSalesSearchTableViewCell.h
- // IBOSS
- //
- // Created by guan hong hou on 2017/5/26.
- // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
- //
- // 功能描述:订单销售单查询单元格
- //
- #import <UIKit/UIKit.h>
- #import "SideSlipBaseTableViewCell.h"
- #import "SideSlipModel.h"
- #import "BRDatePickerView.h"
- #import "OrderSalesSearchModel.h"
- #import "StatusInfoTextVC.h"
- #import "DateFormat.h"
- #import "CustomerAchievementTextVC.h"
- @interface OrderSalesSearchTableViewCell : SideSlipBaseTableViewCell<UITextFieldDelegate,StatusInfoTextDelegate,CustomerReportTextProtocol>
- /**
- 日期
- */
- @property (copy, nonatomic) NSString *startDate;
- /**
- 结束日期
- */
- @property (copy, nonatomic) NSString *endDate;
- /**
- 业务员
- */
- @property (copy, nonatomic) NSString *staffId;
- /**
- 客户名称
- */
- @property (strong,nonatomic) IBOutlet UITextField *txtCustomerName;
- @property (strong, nonatomic) IBOutlet UITextField *txtCustomerAddress;
- /**
- 电话
- */
- @property (strong,nonatomic) IBOutlet UITextField *txtContactTelephone;
- /**
- 开始日期
- */
- @property (strong,nonatomic) IBOutlet UIButton *btnStartDate;
- /**
- 结束日期
- */
- @property (strong,nonatomic) IBOutlet UIButton *btnEndDate;
- /**
- 未过滤一过滤
- */
- @property (strong,nonatomic) IBOutlet UIButton *btnFilter;
- /**
- 类型
- */
- @property (strong,nonatomic) IBOutlet UIButton *btnInvoiceType;
- @property (strong, nonatomic) IBOutlet UIButton *btnOrganization;
- /**
- 业务员
- */
- @property (weak, nonatomic) IBOutlet UIButton *btnSalesman;
- /**
- 抽屉model
- */
- @property (strong,nonatomic) SideSlipModel *slideModel;
- /**
- 日期对象
- */
- @property (strong,nonatomic) BRDatePickerView *brdatePicker;
- /**
- 查询model
- */
- @property (strong,nonatomic) OrderSalesSearchModel *searchModel;
- /**
- 单据类型数据源
- */
- @property (strong,nonatomic) NSMutableArray *arrayStatus;
- /**
- 过滤已过滤数据源
- */
- @property (strong,nonatomic) NSMutableDictionary *mutDict;
- /**
- 业务部门Code
- */
- @property (strong,nonatomic) NSString *businessDepartmentCode;
- @end
|