| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- //
- // RequirementNoReceiptCell.h
- // IBOSSHSH
- //
- // Created by ssl on 2018/1/12.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "UnReceiptListModel.h"
- #import "DispatchNoReceiptFrame.h"
- #import "DialTelephoneDelegate.h"
- #import "RadioBtn.h"
- #import "SignDelegate.h"
- @interface DispatchNoReceiptCell : UITableViewCell<UITextFieldDelegate,FollowUpBrowseProtocol,SignDelegate>
- /**
- 配送单号
- */
- @property (strong,nonatomic) UILabel *deliveryNo;
- /**
- 客户名称
- */
- @property (strong,nonatomic) UILabel *customerName;
- /**
- 电话
- */
- @property (strong,nonatomic) UILabel *telephone;
- /**
- 客户地址
- */
- @property (strong,nonatomic) UILabel *customerAddress;
- /**
- 安排单号
- */
- @property (strong,nonatomic) UILabel *arrangementNo;
- /**
- 配送日期
- */
- @property (strong,nonatomic) UILabel *deliveryDate;
- /**
- 车牌号码
- */
- @property (strong,nonatomic) UITextField *truckName;
- @property (strong,nonatomic) UILabel *installDate;
- @property (strong,nonatomic) UILabel *serviceStaff;
- @property (strong,nonatomic) UILabel *deliveryFlag;
- @property (strong,nonatomic) UILabel *installFlag;
- @property(strong,nonatomic) NSString *telephoneNumber;
- @property(strong,nonatomic) NSString *receiptFlag;
- @property(nonatomic,strong)UIButton *btnDialTelephone;
- @property(nonatomic,strong) RadioBtn *btnDeliveryType;
- @property(nonatomic,strong) RadioBtn *btnInstallType;
- @property(nonatomic,strong) RadioBtn *btnDeliveryInstallType;
- @property(nonatomic,weak) id<DialTelephoneDelegate> telephoneDelegate;
- @property(nonatomic,strong) DispatchNoReceiptFrame *noReceiptFrame;
- @property(nonatomic,assign) NSUInteger position;
- @property(nonatomic,weak) id<SignDelegate> receiptFlagDelegate;
- @property(nonatomic,strong) NSMutableArray* buttons;
- /**
- 设置配送未回执frame
- @param datas <#datas description#>
- */
- - (void)setUnReceiptListFrame:(DispatchNoReceiptFrame *)datas;
- @end
|