DeliveryRequirementDetailController.h 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. //
  2. // DeliveryRequirementDetailControllerViewController.h
  3. // IBOSSHSH
  4. //
  5. // Created by ssl on 2018/1/16.
  6. // Copyright © 2018年 elongtian. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. #import "DeliveryListDetailModel.h"
  10. #import "DeliveryListDetailCell.h"
  11. @interface DeliveryRequirementDetailController : BaseViewController <UITextFieldDelegate,UICollectionViewDataSource,UICollectionViewDelegate,UICollectionViewDelegateFlowLayout, UITableViewDataSource,UITableViewDelegate>
  12. /**
  13. 高度
  14. */
  15. @property (assign,nonatomic) int mHeight;
  16. /**
  17. 配送单id
  18. */
  19. @property (strong,nonatomic) NSString *deliveryId;
  20. /**
  21. 安排单id
  22. */
  23. @property (strong,nonatomic) NSString *arrangementId;
  24. /**
  25. 回执单号
  26. */
  27. @property (strong,nonatomic) NSString *recReceiptNo;
  28. /**
  29. 回执单号控件
  30. */
  31. @property (strong,nonatomic) UILabel * receiptNo;
  32. /**
  33. 安排单号控件
  34. */
  35. @property (strong,nonatomic) UILabel *arrangementNo;
  36. /**
  37. 回执类型控件
  38. */
  39. @property (strong,nonatomic) UILabel *recReceiptType;
  40. /**
  41. 客户名称控件
  42. */
  43. @property (strong,nonatomic) UILabel *customerName;
  44. /**
  45. 联系人控件
  46. */
  47. @property (strong,nonatomic) UILabel *contacts;
  48. /**
  49. 电话控件
  50. */
  51. @property (strong,nonatomic) UILabel *telephone;
  52. /**
  53. 送货单号
  54. */
  55. @property (strong,nonatomic) UILabel *deliveryNo;
  56. /**
  57. 送货地址
  58. */
  59. @property (strong,nonatomic) UILabel *deliveryAddress;
  60. /**
  61. 应收金额
  62. */
  63. @property (strong,nonatomic) UILabel *receivables;
  64. /**
  65. 已回执金额
  66. */
  67. @property (strong,nonatomic) UILabel *completeReceivables;
  68. /**
  69. 回执金额
  70. */
  71. @property (strong,nonatomic) UILabel *receiptAmount;
  72. /**
  73. 应收方式
  74. */
  75. @property (strong,nonatomic) UILabel *receivablesType;
  76. /**
  77. 回执类型
  78. */
  79. @property (strong,nonatomic) UILabel *receiptType;
  80. /**
  81. 推迟送货日期
  82. */
  83. @property (strong,nonatomic)UILabel *nextDeliveryDate;
  84. /**
  85. 位置
  86. */
  87. @property (strong,nonatomic) UILabel *location;
  88. /**
  89. 账务日期
  90. */
  91. @property (strong,nonatomic) UILabel *lbAccountDate;
  92. /**
  93. 配送人员
  94. */
  95. @property (strong,nonatomic) UILabel *lbServiceStaffName;
  96. /**
  97. 创建日期
  98. */
  99. @property (strong,nonatomic) UILabel *lbCreatetime;
  100. /**
  101. 备注
  102. */
  103. @property (strong,nonatomic) UILabel *lbRemarks;
  104. /**
  105. 下载类
  106. */
  107. @property (nonatomic,strong) ASIDownManager *mDownManager;
  108. /**
  109. 下载数组
  110. */
  111. @property (strong,nonatomic) NSDictionary *dataList;
  112. /**
  113. 下载tableview
  114. */
  115. @property (strong,nonatomic) UITableView *tableView;
  116. /**
  117. 图片下载collection view
  118. */
  119. @property (strong,nonatomic) UICollectionView *collectionView;
  120. /**
  121. 配送明细model
  122. */
  123. @property (strong,nonatomic) DeliveryListDetailModel *model;
  124. /**
  125. 配送信息数组
  126. */
  127. @property (strong,nonatomic) NSMutableArray *infoList;
  128. /**
  129. 照片列表
  130. */
  131. @property (strong,nonatomic) NSMutableArray *photoList;
  132. /**
  133. scroll view
  134. */
  135. @property (strong,nonatomic) UIScrollView *scroll;
  136. /**
  137. content view
  138. */
  139. @property (strong,nonatomic) UIView * contentView;
  140. /**
  141. header view
  142. */
  143. @property (nonatomic,strong) UIView *headerView;
  144. /**
  145. 回执ID
  146. */
  147. @property (nonatomic,strong) NSString *receiptID;
  148. @end