OrderSalesDetailTableViewCell.h 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. //
  2. // OrderSalesDetailTableViewCell.h
  3. // IBOSS
  4. //
  5. // Created by guan hong hou on 2017/5/26.
  6. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
  7. //
  8. // 功能描述:订单销售单详细单元格
  9. //
  10. #import <UIKit/UIKit.h>
  11. #import "OrderSaleListDetailModel.h"
  12. #define orderTextFont [UIFont systemFontOfSize:13]
  13. @interface OrderSalesDetailTableViewCell : UITableViewCell
  14. /**
  15. 单 号
  16. */
  17. @property (strong,nonatomic) UILabel *lblDetailInvoiceNo;
  18. /**
  19. 单据类型
  20. */
  21. @property (strong,nonatomic) UILabel *lblInvoicesTypeName;
  22. /**
  23. 业务类型
  24. */
  25. @property (strong,nonatomic) UILabel *lblOrderSalesTypeName;
  26. /**
  27. 明细类型
  28. */
  29. @property (strong,nonatomic) UILabel *lblSalesDetailTypeName;
  30. /**
  31. 唯一编码
  32. */
  33. @property (strong,nonatomic) UILabel *lblOnlyCode;
  34. /**
  35. 商品编码
  36. */
  37. @property (strong,nonatomic) UILabel *lblCode;
  38. /**
  39. 品牌
  40. */
  41. @property (strong,nonatomic) UILabel *lblBrandName;
  42. /**
  43. 种类
  44. */
  45. @property (strong,nonatomic) UILabel *lblKindName;
  46. /**
  47. 商品品种
  48. */
  49. @property (strong,nonatomic) UILabel *lblVarietyName;
  50. /**
  51. 商品系列
  52. */
  53. @property (strong,nonatomic) UILabel *lblSeriesName;
  54. /**
  55. 单位
  56. */
  57. @property (strong,nonatomic) UILabel *lblUnitName;
  58. /**
  59. 规格
  60. */
  61. @property (strong,nonatomic) UILabel *lblSpecification;
  62. /**
  63. 等级
  64. */
  65. @property (strong,nonatomic) UILabel *lblGradeName;
  66. /**
  67. 色号
  68. */
  69. @property (strong,nonatomic) UILabel *lblColorNumber;
  70. /**
  71. 订单数量
  72. */
  73. @property (strong,nonatomic) UILabel *lblOrderQuantity;
  74. /**
  75. 销售数量
  76. */
  77. @property (strong,nonatomic) UILabel *lblSalesQuantity;
  78. /**
  79. 价格
  80. */
  81. @property (strong,nonatomic) UILabel *lblSalesPrice;
  82. /**
  83. 商品结算价
  84. */
  85. @property (strong,nonatomic) UILabel *lblGoodsSettlementPrice;
  86. /**
  87. 结算价金额
  88. */
  89. @property (strong,nonatomic) UILabel *lblGoodsSettlementAmount;
  90. /**
  91. 金 额
  92. */
  93. @property (strong,nonatomic) UILabel *lblAmount;
  94. /**
  95. 标 价
  96. */
  97. @property (strong,nonatomic) UILabel *lblMarkedPrice;
  98. /**
  99. 折扣
  100. */
  101. @property (strong,nonatomic) UILabel *lblDiscount;
  102. @property (strong,nonatomic) UILabel *lblOutQuantity;
  103. @property (strong,nonatomic) UILabel *lblOutAmount;
  104. @property (strong,nonatomic) UILabel *lblTelephone;
  105. @property (strong,nonatomic) UILabel *lblPromotionOrderSalesPrice;
  106. @property (strong,nonatomic) UILabel *lblPromotionRate;
  107. @property(nonatomic,assign) CGFloat height;
  108. /**
  109. cell的初始化ui
  110. */
  111. - (void)parseOrderSalesDetailInfo:(OrderSaleListDetailModel *)orderItem;
  112. @end