| 1234567891011121314151617181920212223242526272829303132 |
- //
- // OrderSalesSearchTableViewCell.h
- // IBOSSmini
- //
- // Created by guan hong hou on 2017/5/26.
- // Copyright © 2017年 elongtian. 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"
- @interface OrderSalesSearchTableViewCell : SideSlipBaseTableViewCell<UITextFieldDelegate,StatusInfoTextDelegate>
- @property (strong, nonatomic) IBOutlet UITextField *txtCustomerName;
- @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 (nonatomic,strong) SideSlipModel * slideModel;
- @property (nonatomic,strong) NSMutableDictionary *mutDict;
- @property (strong, nonatomic) BRDatePickerView *brdatePicker;
- @property (copy, nonatomic) NSString *startDate;
- @property (copy, nonatomic) NSString *endDate;
- @property (nonatomic,strong) OrderSalesSearchModel *searchModel;
- @property (nonatomic,strong) NSMutableArray* arrayStatus;
- @property (strong, nonatomic) IBOutlet UIButton *btnInvoiceType;
- @property Boolean mIsFiltration;
- @end
|