InventoryDetailViewController.h 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. //
  2. // InventoryDetailViewController.h
  3. // IBOSS
  4. //
  5. // Created by apple on 2017/5/16.
  6. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
  7. //
  8. // 功能描述:库存明细表详细控制器
  9. //
  10. #import "BaseViewController.h"
  11. #import "InventoryDetailModel.h"
  12. @interface InventoryDetailViewController : BaseViewController<UICollectionViewDataSource,UICollectionViewDelegate,UICollectionViewDelegateFlowLayout>
  13. @property(nonatomic, strong) NSString *inventoryId;
  14. /**
  15. code
  16. */
  17. @property (nonatomic, strong) NSString *code;
  18. /**
  19. onlyCode
  20. */
  21. @property (nonatomic, strong) NSString *onlyCode;
  22. /**
  23. 商品名称
  24. */
  25. @property (nonatomic, strong) NSString *goodName;
  26. /**
  27. 库房
  28. */
  29. @property (nonatomic, strong) NSString *wareHouseName;
  30. /**
  31. 规格
  32. */
  33. @property (nonatomic, strong) NSString *specification;
  34. /**
  35. 品牌
  36. */
  37. @property (nonatomic, strong) NSString *brandName;
  38. /**
  39. 等级
  40. */
  41. @property (nonatomic, strong) NSString *gradeName;
  42. /**
  43. 色号
  44. */
  45. @property (nonatomic, strong) NSString *colorNumber;
  46. /**
  47. 结存量
  48. */
  49. @property (nonatomic, strong) NSString *inventoryQuantity;
  50. /**
  51. 可售量
  52. */
  53. @property (nonatomic, strong) NSString *canSaleQuantity;
  54. @property (nonatomic,strong) UIScrollView *scroll;
  55. /**
  56. 仓位
  57. */
  58. @property (nonatomic, strong) NSString *positionNumber;
  59. /**
  60. 标价
  61. */
  62. @property (nonatomic, strong) NSString *price;
  63. /**
  64. 标示
  65. */
  66. @property (nonatomic, assign) BOOL boxPieceFlag;
  67. @property (nonatomic, strong) NSString *box;
  68. @property (nonatomic, strong) NSString *piece;
  69. @property (nonatomic, strong) NSString *occupyQuantity;
  70. @property (nonatomic, strong) NSString *noOccupyQuantity;
  71. @property (nonatomic, strong) NSString *estimatedShortageQuantity;
  72. @property(nonatomic,strong) NSString *ceaseFlag;
  73. @property(nonatomic,strong) NSString *freezerQuantity;
  74. @property(nonatomic,strong) NSString *deliveryQuantity;
  75. @property(nonatomic,strong) NSString *seriesName;
  76. @property(nonatomic,strong) NSString *varietyName;
  77. @property(nonatomic,strong) NSString *settingValues;
  78. @property(nonatomic,strong) NSString *costPrice;
  79. @property(nonatomic,strong) NSString *package;
  80. @property(nonatomic,strong) NSString *unitName;
  81. @property(nonatomic,strong) NSString *photo;
  82. @property(nonatomic,strong) NSString *weight;
  83. @property(nonatomic,strong) NSString *expandAttribute;
  84. @property(nonatomic,strong) NSString *expandAttribute2;
  85. /**
  86. 销售未提数量
  87. */
  88. @property (nonatomic, strong) NSString *noDeliveryQuantity;
  89. @property(nonatomic,strong)UILabel *lblCode;
  90. @property(nonatomic,strong)UILabel *lblOnlyCode;
  91. @property(nonatomic,strong)UILabel *lblGoodsName;
  92. @property(nonatomic,strong)UILabel *lblBrandName;
  93. @property(nonatomic,strong)UILabel *lblColorNumber;
  94. @property(nonatomic,strong)UILabel *lblSpecification;
  95. @property(nonatomic,strong)UILabel *lblGrade;
  96. @property(nonatomic,strong)UILabel *lblWarehouseName;
  97. @property(nonatomic,strong)UILabel *lblPositionNumber;
  98. @property(nonatomic,strong) UILabel *lBox;
  99. @property(nonatomic,strong) UILabel *lPiece;
  100. @property(nonatomic,strong) UILabel *lblCanSaleQuantity;
  101. @property(nonatomic,strong) UILabel *lblInventoryQuantity;
  102. @property(nonatomic,strong) UILabel *lblOccupyQuantity;
  103. @property(nonatomic,strong) UILabel *lblPrice;
  104. @property(nonatomic,strong) UILabel *lblCostPrice;
  105. @property(nonatomic,strong) UILabel *lblNoOccupyQuantity;
  106. @property(nonatomic,strong) UILabel *lblEstimatedShortageQuantity;
  107. @property(nonatomic,strong) UILabel *lblCeaseFlag;
  108. @property(nonatomic,strong) UILabel *lblFreezerQuantity;
  109. @property(nonatomic,strong) UILabel *lblDeliveryQuantity;
  110. @property(nonatomic,strong) UILabel *lblSeriesName;
  111. @property(nonatomic,strong) UILabel *lblVarietyName;
  112. @property(nonatomic,strong) UILabel *lblPackage;
  113. @property(nonatomic,strong) UILabel *lblUnit;
  114. @property(nonatomic,strong) UILabel *lblWeight;
  115. @property(nonatomic,strong) UILabel *lblExpandAttribute;
  116. @property(nonatomic,strong) UILabel *lblExpandAttribute2;
  117. @property(nonatomic,assign) bool displayStandardPrice;
  118. @property(nonatomic,assign) bool displayInventoryQuantity;
  119. @property(nonatomic,assign) bool displayCanSalesQuantity;
  120. @property (strong, nonatomic) UICollectionView *collectionView;
  121. /**
  122. 图片数组
  123. */
  124. @property (strong, nonatomic) NSMutableArray *detailImgList;
  125. /**
  126. 销售未提量
  127. */
  128. @property(nonatomic, strong) UILabel *lblNoDeliveryQuantity;
  129. @property(nonatomic,strong) InventoryDetailModel *detailModel;
  130. @property (nonatomic,strong) ASIDownManager *downManager;
  131. @end