DispatchReceiptCell.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. //
  2. // RequirementReceiptCell.h
  3. // IBOSSHSH
  4. //
  5. // Created by ssl on 2018/1/12.
  6. // Copyright © 2018年 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "DispatchReceiptModel.h"
  10. #import "DispatchReceiptFrame.h"
  11. @protocol DispatchReceiptCellDelegate <NSObject>
  12. @optional
  13. - (void)showReturnReceipt:(DispatchReceiptModel*) model;
  14. @end
  15. @interface DispatchReceiptCell : UITableViewCell
  16. /**
  17. 回执单号
  18. */
  19. @property (strong,nonatomic) UILabel *receiptNo;
  20. /**
  21. 安排单号
  22. */
  23. @property (strong,nonatomic) UILabel *arrangementNo;
  24. /**
  25. 配送单号
  26. */
  27. @property (strong,nonatomic) UILabel *lblDispatchNo;
  28. /**
  29. 客户名称
  30. */
  31. @property (strong,nonatomic) UILabel *customerName;
  32. @property (strong,nonatomic) UILabel *telephone;
  33. @property(nonatomic,strong)UIButton *btnDialTelephone;
  34. @property (strong,nonatomic) UILabel *serviceStaffName;
  35. /**
  36. 回执日期
  37. */
  38. @property (strong,nonatomic) UILabel *receiptDate;
  39. @property (strong,nonatomic) UILabel *lblReceiptType;
  40. @property(nonatomic,strong)NSString *telephoneStr;
  41. @property (strong,nonatomic) id<DispatchReceiptCellDelegate> delegate ;
  42. @property(nonatomic,weak) id<DialTelephoneDelegate> telephoneDelegate;
  43. /**
  44. 配送已回执model
  45. */
  46. @property (strong,nonatomic) DispatchReceiptModel *deliveryListModel;
  47. /**
  48. 加载已回执列表ui
  49. @param frame <#frame description#>
  50. */
  51. - (void)setReceiptedListFrame:(DispatchReceiptFrame *) frame;
  52. @end