DeliveryListDetailCell.h 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. //
  2. // DeliveryListDetailCell.h
  3. // IBOSS
  4. //
  5. // Created by Dongke on 16/1/12.
  6. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
  7. //
  8. // 功能描述:回执明细列表单元格
  9. #import <UIKit/UIKit.h>
  10. #import "DeliveryListDetailModel.h"
  11. @interface DeliveryListDetailCell : UITableViewCell
  12. /**
  13. 明细id
  14. */
  15. @property (strong,nonatomic) IBOutlet UILabel *detailId;
  16. /**
  17. 配送id
  18. */
  19. @property (strong,nonatomic) IBOutlet UILabel *deliveryId;
  20. /**
  21. 来源类型
  22. */
  23. @property (strong,nonatomic) IBOutlet UILabel *sourceFromName;
  24. /**
  25. 单据号
  26. */
  27. @property (strong,nonatomic) IBOutlet UILabel *invoiceNo;
  28. /**
  29. 单据id
  30. */
  31. @property (strong,nonatomic) IBOutlet UILabel *invoiceId;
  32. /**
  33. 单据细节id
  34. */
  35. @property (strong,nonatomic) IBOutlet UILabel *invoiceDetailId;
  36. /**
  37. 送货数量
  38. */
  39. @property (strong,nonatomic) IBOutlet UILabel *deliveryQuantity;
  40. /**
  41. 出库数量
  42. */
  43. @property (strong,nonatomic) IBOutlet UILabel *outQuantity;
  44. /**
  45. 回执数量
  46. */
  47. @property (strong,nonatomic) IBOutlet UILabel *receiptQuantity;
  48. /**
  49. 回执备注
  50. */
  51. @property (strong,nonatomic) IBOutlet UILabel *receiptRemarks;
  52. /**
  53. 回执类型
  54. */
  55. @property (strong,nonatomic) IBOutlet UILabel *receiptType;
  56. /**
  57. 产品编码
  58. */
  59. @property (strong,nonatomic) IBOutlet UILabel *code;
  60. /**
  61. 唯一编码
  62. */
  63. @property (strong,nonatomic) IBOutlet UILabel *onlyCode;
  64. /**
  65. 商品名称
  66. */
  67. @property (strong,nonatomic) IBOutlet UILabel *goodsName;
  68. /**
  69. 扩展属性
  70. */
  71. @property (strong,nonatomic) IBOutlet UILabel *expandAttribute;
  72. /**
  73. 品牌
  74. */
  75. @property (strong,nonatomic) IBOutlet UILabel *brandName;
  76. /**
  77. 种类
  78. */
  79. @property (strong,nonatomic) IBOutlet UILabel *kindName;
  80. /**
  81. 品种
  82. */
  83. @property (strong,nonatomic) IBOutlet UILabel *varietyName;
  84. /**
  85. 系列
  86. */
  87. @property (strong,nonatomic) IBOutlet UILabel *seriesName;
  88. /**
  89. 单位
  90. */
  91. @property (strong,nonatomic) IBOutlet UILabel *unitName;
  92. /**
  93. */
  94. @property (strong,nonatomic) IBOutlet UILabel *package;
  95. /**
  96. 重量
  97. */
  98. @property (strong,nonatomic) IBOutlet UILabel *weight;
  99. /**
  100. 面积
  101. */
  102. @property (strong,nonatomic) IBOutlet UILabel *acreage;
  103. /**
  104. 等级
  105. */
  106. @property (strong,nonatomic) IBOutlet UILabel *gradeName;
  107. /**
  108. 规格
  109. */
  110. @property (strong,nonatomic) IBOutlet UILabel *specification;
  111. /**
  112. 色号
  113. */
  114. @property (strong,nonatomic) IBOutlet UILabel *colorNumber;
  115. /**
  116. 库区
  117. */
  118. @property (strong,nonatomic) IBOutlet UILabel *warehouseName;
  119. /**
  120. 仓位号
  121. */
  122. @property (strong,nonatomic) IBOutlet UILabel *positionNumber;
  123. /**
  124. 是否委外
  125. */
  126. @property (strong,nonatomic) IBOutlet UILabel *salesDetailType;
  127. @end