GoodsDetailViewController.h 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. // GoodsDetailViewController
  2. // IOBSS 2.0
  3. //
  4. // Created by on 2017.7.24
  5. // Copyright 2017 沈阳东科云信软件有限公司. All rights reserved.
  6. //
  7. // 系统名称:
  8. // 功能描述:商品详细界面
  9. #import "BaseViewController.h"
  10. @interface GoodsDetailViewController : BaseViewController
  11. /**
  12. 库存ID
  13. */
  14. @property (nonatomic,strong) NSString* inventoryId;
  15. /**
  16. 商品编码
  17. */
  18. @property (strong) UILabel *lblCode;
  19. /**
  20. 唯一编码
  21. */
  22. @property (strong) UILabel *lblOnlyCode;
  23. /**
  24. 品牌
  25. */
  26. @property (strong) UILabel *lblBrandName;
  27. /**
  28. 种类
  29. */
  30. @property (strong) UILabel *lblKindName;
  31. /**
  32. 品种
  33. */
  34. @property (strong) UILabel *lblVarietyName;
  35. /**
  36. 系列
  37. */
  38. @property (strong) UILabel *lblSeriesName;
  39. /**
  40. 色号
  41. */
  42. @property (strong) UILabel *lblColorNumber;
  43. /**
  44. 等级
  45. */
  46. @property (strong) UILabel *lblGradeName;
  47. /**
  48. 库区
  49. */
  50. @property (strong) UILabel *lblWarehouseName;
  51. /**
  52. 仓位号
  53. */
  54. @property (strong) UILabel *lblPositionNumber;
  55. /**
  56. 规格
  57. */
  58. @property (strong) UILabel *lblSpecification;
  59. /**
  60. 重量
  61. */
  62. @property (strong) UILabel *lblWeight;
  63. /**
  64. 面积
  65. */
  66. @property (strong) UILabel *lblAcreage;
  67. /**
  68. 包装
  69. */
  70. @property (strong) UILabel *lblPackage;
  71. /**
  72. 库存量
  73. */
  74. @property (strong) UILabel *lblInventoryQuantity;
  75. /**
  76. 占库量
  77. */
  78. @property (strong) UILabel *lblOccupyQuantity;
  79. /**
  80. 冻结量
  81. */
  82. @property (strong) UILabel *lblFreezeQuantity;
  83. /**
  84. 未提量
  85. */
  86. @property (strong) UILabel *lblNoDeliveryQuantity;
  87. /**
  88. 未入量
  89. */
  90. @property (strong) UILabel *lblNoEnterQuantity;
  91. /**
  92. 可售量
  93. */
  94. @property (strong) UILabel *lblBalanceQuantity;
  95. /**
  96. 产品明细数组
  97. */
  98. @property (strong) NSMutableArray * detailArr;
  99. /**
  100. 下载管理器
  101. */
  102. @property (nonatomic,strong) ASIDownManager *mDownManager;
  103. /**
  104. 图片
  105. */
  106. @property (nonatomic,strong) UIImageView *imageView;
  107. /**
  108. UIScrollView
  109. */
  110. @property (nonatomic,strong) UIScrollView *scroll;
  111. /**
  112. 子布局
  113. */
  114. @property (nonatomic,strong) UIView *contentView;
  115. @end