DeliveryListDetailVC.h 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. //
  2. // DeliveryListDetail.h
  3. // IBOSS
  4. //
  5. // Created by Dongke on 16/1/12.
  6. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
  7. // 功能描述:回执明细控制器
  8. #import <UIKit/UIKit.h>
  9. #import "DeliveryListDetailModel.h"
  10. #import "DeliveryListDetailCell.h"
  11. @interface DeliveryListDetailVC : 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 *receiptTime;
  56. /**
  57. 送货日期控件
  58. */
  59. @property (strong,nonatomic) UILabel *deliveryDate;
  60. /**
  61. 送货单号
  62. */
  63. @property (strong,nonatomic) UILabel *deliveryNo;
  64. /**
  65. 送货地址
  66. */
  67. @property (strong,nonatomic) UILabel *deliveryAddress;
  68. /**
  69. 应收金额
  70. */
  71. @property (strong,nonatomic) UILabel *receivables;
  72. /**
  73. 已回执金额
  74. */
  75. @property (strong,nonatomic) UILabel *completeReceivables;
  76. /**
  77. 回执金额
  78. */
  79. @property (strong,nonatomic) UILabel *receiptAmount;
  80. /**
  81. 应收方式
  82. */
  83. @property (strong,nonatomic) UILabel *receivablesType;
  84. /**
  85. 回执标识
  86. */
  87. @property (strong,nonatomic) UILabel *receiptFlag;
  88. /**
  89. 回执类型
  90. */
  91. @property (strong,nonatomic) UILabel *receiptType;
  92. /**
  93. 推迟送货日期
  94. */
  95. @property (strong,nonatomic)UILabel *nextDeliveryDate;
  96. /**
  97. 单据回收标识
  98. */
  99. @property (strong,nonatomic) UILabel *recoverFlag;
  100. /**
  101. 位置
  102. */
  103. @property (strong,nonatomic) UILabel *location;
  104. @property (strong,nonatomic) UILabel *lblSign;
  105. @property (strong,nonatomic) UILabel *lblDeliveryAttribute;
  106. @property (strong,nonatomic) UILabel *lblGoodsAttribute;
  107. /**
  108. 下载类
  109. */
  110. @property (nonatomic,strong) ASIDownManager *mDownManager;
  111. /**
  112. 下载数组
  113. */
  114. @property (strong,nonatomic) NSDictionary *dataList;
  115. /**
  116. 下载tableview
  117. */
  118. @property (strong,nonatomic) UITableView *tableView;
  119. /**
  120. 图片下载collection view
  121. */
  122. @property (strong,nonatomic) UICollectionView *collectionView;
  123. /**
  124. 配送明细model
  125. */
  126. @property (strong,nonatomic) DeliveryListDetailModel *model;
  127. /**
  128. 配送信息数组
  129. */
  130. @property (strong,nonatomic) NSMutableArray *infoList;
  131. /**
  132. 照片列表
  133. */
  134. @property (strong,nonatomic) NSMutableArray *photoList;
  135. /**
  136. scroll view
  137. */
  138. @property (strong,nonatomic) UIScrollView *scroll;
  139. /**
  140. content view
  141. */
  142. @property (strong,nonatomic) UIView * contentView;
  143. /**
  144. header view
  145. */
  146. @property (nonatomic,strong) UIView *headerView;
  147. @end