| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- //
- // RequirementReceiptCell.h
- // IBOSSHSH
- //
- // Created by ssl on 2018/1/12.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "DispatchReceiptModel.h"
- #import "DispatchReceiptFrame.h"
- @protocol DispatchReceiptCellDelegate <NSObject>
- @optional
- - (void)showReturnReceipt:(DispatchReceiptModel*) model;
- @end
- @interface DispatchReceiptCell : UITableViewCell
- /**
- 回执单号
- */
- @property (strong,nonatomic) UILabel *receiptNo;
- /**
- 安排单号
- */
- @property (strong,nonatomic) UILabel *arrangementNo;
- /**
- 配送单号
- */
- @property (strong,nonatomic) UILabel *lblDispatchNo;
- /**
- 客户名称
- */
- @property (strong,nonatomic) UILabel *customerName;
- @property (strong,nonatomic) UILabel *telephone;
- @property(nonatomic,strong)UIButton *btnDialTelephone;
- @property (strong,nonatomic) UILabel *serviceStaffName;
- /**
- 回执日期
- */
- @property (strong,nonatomic) UILabel *receiptDate;
- @property (strong,nonatomic) UILabel *lblReceiptType;
- @property(nonatomic,strong)NSString *telephoneStr;
- @property (strong,nonatomic) id<DispatchReceiptCellDelegate> delegate ;
- @property(nonatomic,weak) id<DialTelephoneDelegate> telephoneDelegate;
- /**
- 配送已回执model
- */
- @property (strong,nonatomic) DispatchReceiptModel *deliveryListModel;
- /**
- 加载已回执列表ui
- @param frame <#frame description#>
- */
- - (void)setReceiptedListFrame:(DispatchReceiptFrame *) frame;
- @end
|