| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- //
- // SingleProfitSearchCell.h
- // IBOSS
- //
- // Created by apple on 2017/5/19.
- // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
- //
- // 功能描述:每单利润表查询单元格
- //
- #import <UIKit/UIKit.h>
- #import "SideSlipBaseTableViewCell.h"
- #import "DateFormat.h"
- @interface SingleProfitSearchCell : SideSlipBaseTableViewCell
- /**
- 业务部门
- */
- @property (strong,nonatomic) IBOutlet UIButton *btnOrg;
- /**
- 业务员
- */
- @property (strong,nonatomic) IBOutlet UIButton *btnStaff;
- /**
- 开始日期
- */
- @property (strong,nonatomic) IBOutlet UIButton *btnStartDate;
- /**
- 结束日期
- */
- @property (strong,nonatomic) IBOutlet UIButton *btnEndDate;
- /**
- 开始日期
- */
- @property (copy, nonatomic) NSString *sStartDate;
- /**
- 结束日期
- */
- @property (copy, nonatomic) NSString *sEndDate;
- /**
- 业务部门
- */
- @property (copy, nonatomic) NSString *sOrg;
- /**
- 业务员
- */
- @property (copy, nonatomic) NSString *sStaff;
- /**
- 客户名称
- */
- @property (strong,nonatomic) IBOutlet UITextField *txtCustomerName;
- @property (strong, nonatomic) IBOutlet UITextField *txtCustomerAddress;
- @property (strong, nonatomic) IBOutlet UITextField *txtCustomerCode;
- @property (strong, nonatomic) IBOutlet UIButton *btnSalesSlip;
- @property(strong,nonatomic) NSString *mBusinessType;
- @property (strong, nonatomic) IBOutlet UIButton *btnSalesOrder;
- @end
|