OrderSalesSearchTableViewCell.h 1.3 KB

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // OrderSalesSearchTableViewCell.h
  3. // IBOSSmini
  4. //
  5. // Created by guan hong hou on 2017/5/26.
  6. // Copyright © 2017年 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "SideSlipBaseTableViewCell.h"
  10. #import "SideSlipModel.h"
  11. #import "BRDatePickerView.h"
  12. #import "OrderSalesSearchModel.h"
  13. #import "StatusInfoTextVC.h"
  14. #import "DateFormat.h"
  15. @interface OrderSalesSearchTableViewCell : SideSlipBaseTableViewCell<UITextFieldDelegate,StatusInfoTextDelegate>
  16. @property (strong, nonatomic) IBOutlet UITextField *txtCustomerName;
  17. @property (strong, nonatomic) IBOutlet UITextField *txtContactTelephone;
  18. @property (strong, nonatomic) IBOutlet UIButton *btnStartDate;
  19. @property (strong, nonatomic) IBOutlet UIButton *btnEndDate;
  20. @property (strong, nonatomic) IBOutlet UIButton *btnFilter;
  21. @property (nonatomic,strong) SideSlipModel * slideModel;
  22. @property (nonatomic,strong) NSMutableDictionary *mutDict;
  23. @property (strong, nonatomic) BRDatePickerView *brdatePicker;
  24. @property (copy, nonatomic) NSString *startDate;
  25. @property (copy, nonatomic) NSString *endDate;
  26. @property (nonatomic,strong) OrderSalesSearchModel *searchModel;
  27. @property (nonatomic,strong) NSMutableArray* arrayStatus;
  28. @property (strong, nonatomic) IBOutlet UIButton *btnInvoiceType;
  29. @property Boolean mIsFiltration;
  30. @end