DispatchNoReceiptCell.h 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. //
  2. // RequirementNoReceiptCell.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 "UnReceiptListModel.h"
  10. #import "DispatchNoReceiptFrame.h"
  11. #import "DialTelephoneDelegate.h"
  12. #import "RadioBtn.h"
  13. #import "SignDelegate.h"
  14. @interface DispatchNoReceiptCell : UITableViewCell<UITextFieldDelegate,FollowUpBrowseProtocol,SignDelegate>
  15. /**
  16. 配送单号
  17. */
  18. @property (strong,nonatomic) UILabel *deliveryNo;
  19. /**
  20. 客户名称
  21. */
  22. @property (strong,nonatomic) UILabel *customerName;
  23. /**
  24. 电话
  25. */
  26. @property (strong,nonatomic) UILabel *telephone;
  27. /**
  28. 客户地址
  29. */
  30. @property (strong,nonatomic) UILabel *customerAddress;
  31. /**
  32. 安排单号
  33. */
  34. @property (strong,nonatomic) UILabel *arrangementNo;
  35. /**
  36. 配送日期
  37. */
  38. @property (strong,nonatomic) UILabel *deliveryDate;
  39. /**
  40. 车牌号码
  41. */
  42. @property (strong,nonatomic) UITextField *truckName;
  43. @property (strong,nonatomic) UILabel *installDate;
  44. @property (strong,nonatomic) UILabel *serviceStaff;
  45. @property (strong,nonatomic) UILabel *deliveryFlag;
  46. @property (strong,nonatomic) UILabel *installFlag;
  47. @property(strong,nonatomic) NSString *telephoneNumber;
  48. @property(strong,nonatomic) NSString *receiptFlag;
  49. @property(nonatomic,strong)UIButton *btnDialTelephone;
  50. @property(nonatomic,strong) RadioBtn *btnDeliveryType;
  51. @property(nonatomic,strong) RadioBtn *btnInstallType;
  52. @property(nonatomic,strong) RadioBtn *btnDeliveryInstallType;
  53. @property(nonatomic,weak) id<DialTelephoneDelegate> telephoneDelegate;
  54. @property(nonatomic,strong) DispatchNoReceiptFrame *noReceiptFrame;
  55. @property(nonatomic,assign) NSUInteger position;
  56. @property(nonatomic,weak) id<SignDelegate> receiptFlagDelegate;
  57. @property(nonatomic,strong) NSMutableArray* buttons;
  58. /**
  59. 设置配送未回执frame
  60. @param datas <#datas description#>
  61. */
  62. - (void)setUnReceiptListFrame:(DispatchNoReceiptFrame *)datas;
  63. @end