ReceiptDetailModel.h 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265
  1. // ReceiptDetailModel
  2. // IOBSS 2.0
  3. //
  4. // Created by 刘瀚璘 on 2017.7.18
  5. // Copyright 2017 沈阳东科云信软件有限公司. All rights reserved.
  6. //
  7. // 系统名称:
  8. // 功能描述:定制品详细Model
  9. #import <Foundation/Foundation.h>
  10. @interface ReceiptDetailModel : NSObject
  11. /**
  12. * 配送日期
  13. */
  14. @property (nonatomic,strong) NSString *deliveryDate;
  15. /**
  16. * 金额
  17. */
  18. @property (nonatomic,assign) int receivables;
  19. /**
  20. * 完成金额
  21. */
  22. @property (nonatomic,assign) int completeReceivables;
  23. /**
  24. * 回执数量
  25. */
  26. @property (nonatomic,assign) int receiptAmount;
  27. /**
  28. * 金额类型
  29. */
  30. @property (nonatomic,assign) int receivablesType;
  31. /**
  32. * 回执标示
  33. */
  34. @property (nonatomic,assign) BOOL *receiptFlag;
  35. /**
  36. * 回执类型
  37. */
  38. @property (nonatomic,assign) int receiptType;
  39. /**
  40. * 延迟日期
  41. */
  42. @property (nonatomic,strong) NSString *nextDeliveryDate;
  43. /**
  44. * 回收标示
  45. */
  46. @property (nonatomic,assign) int recoverFlag;
  47. /**
  48. * 账务日期
  49. */
  50. @property (nonatomic,strong) NSString *accountDate;
  51. /**
  52. * 明细ID
  53. */
  54. @property (nonatomic,assign) int detailID;
  55. /**
  56. * 送货单ID
  57. */
  58. @property (nonatomic,assign) int deliveryID;
  59. /**
  60. * 来源类型
  61. */
  62. @property (nonatomic,assign) int sourceFromName;
  63. /**
  64. * 数据来源ID
  65. */
  66. @property (nonatomic,assign) int sourceFrom;
  67. /**
  68. * 来源单号
  69. */
  70. @property (nonatomic,strong) NSString *invoiceNo;
  71. /**
  72. * 单据ID
  73. */
  74. @property (nonatomic,assign) int invoiceID;
  75. /**
  76. * 单据明细ID
  77. */
  78. @property (nonatomic,assign) int invoiceDetailID;
  79. /**
  80. * 送货单的送货数量
  81. */
  82. @property (nonatomic,strong) NSString *deliveryQuantity;
  83. /**
  84. * 出库数量
  85. */
  86. @property (nonatomic,strong) NSString *outQuantity;
  87. /**
  88. * 送货单回执类型
  89. */
  90. @property (nonatomic,strong) NSString *deliveryReceiptType;
  91. /**
  92. * 明细回执类型
  93. */
  94. @property (nonatomic,strong) NSString *detailReceiptTypeName;
  95. /**
  96. * 回执数量
  97. */
  98. @property (nonatomic,strong) NSString *receiptQuantity;
  99. /**
  100. * 回执备注
  101. */
  102. @property (nonatomic,strong) NSString *receiptRemarks;
  103. /**
  104. * 客户名称
  105. */
  106. @property (nonatomic,strong) NSString *customerName;
  107. /**
  108. * 联系人
  109. */
  110. @property (nonatomic,strong) NSString *contacts;
  111. /**
  112. * 联系电话--
  113. */
  114. @property (nonatomic,strong) NSString *telephone;
  115. /**
  116. * 送货地址
  117. */
  118. @property (nonatomic,strong) NSString *deliveryAddress;
  119. /**
  120. * 商品编码
  121. */
  122. @property (nonatomic,strong) NSString *code;
  123. /**
  124. * 唯一编码
  125. */
  126. @property (nonatomic,strong) NSString *onlyCode;
  127. /**
  128. * 商品名称
  129. */
  130. @property (nonatomic,strong) NSString *goodsName;
  131. /**
  132. * 商品属性1
  133. */
  134. @property (nonatomic,strong) NSString *expandAttribute;
  135. /**
  136. * 商品属性2
  137. */
  138. @property (nonatomic,strong) NSString *expandAttribute2;
  139. /**
  140. * 商品品牌
  141. */
  142. @property (nonatomic,strong) NSString *brandName;
  143. /**
  144. * 商品种类
  145. */
  146. @property (nonatomic,strong) NSString *kindName;
  147. /**
  148. * 商品品种
  149. */
  150. @property (nonatomic,strong) NSString *varietyName;
  151. /**
  152. * 商品系列
  153. */
  154. @property (nonatomic,strong) NSString *seriesName;
  155. /**
  156. * 单位
  157. */
  158. @property (nonatomic,strong) NSString *unitName;
  159. /**
  160. * 包装
  161. */
  162. @property (nonatomic,strong) NSNumber *mPackage;
  163. /**
  164. * 重量
  165. */
  166. @property (nonatomic,strong) NSNumber *weight;
  167. /**
  168. * 面积
  169. */
  170. @property (nonatomic,strong) NSNumber *acreage;
  171. /**
  172. * 商品等级
  173. */
  174. @property (nonatomic,strong) NSString *gradeName;
  175. /**
  176. * 规格
  177. */
  178. @property (nonatomic,strong) NSString *specification;
  179. /**
  180. * 色号
  181. */
  182. @property (nonatomic,strong) NSString *colorNumber;
  183. /**
  184. * 库区名称
  185. */
  186. @property (nonatomic,strong) NSString *warehouseName;
  187. /**
  188. * 仓位号
  189. */
  190. @property (nonatomic,strong) NSString *positionNumber;
  191. /**
  192. * 回库数量
  193. */
  194. @property (nonatomic,assign) int recoverQuantity;
  195. /**
  196. * 退货数量
  197. */
  198. @property (nonatomic,assign) int returnQuantity;
  199. /**
  200. * 备注
  201. */
  202. @property (nonatomic,strong) NSString *remarks;
  203. /**
  204. * 外协也要送货,区分是不是外协单子
  205. */
  206. @property (nonatomic,strong) NSString *salesDetailType;
  207. /**
  208. * 配送no
  209. */
  210. @property (nonatomic,strong) NSString *deliveryNo;
  211. @end