InventoryDetailViewController.h 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. //
  2. // InventoryDetailViewController.h
  3. // IBOSSmini
  4. //
  5. // Created by apple on 2017/5/16.
  6. // Copyright © 2017年 elongtian. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. #import "RequestResultModel.h"
  10. #import "InventoryDetailModel.h"
  11. #import "XHImageViewer.h"
  12. @interface InventoryDetailViewController : BaseViewController<UICollectionViewDataSource,UICollectionViewDelegate,UICollectionViewDelegateFlowLayout>
  13. /**
  14. code
  15. */
  16. @property (nonatomic, strong) NSString *code;
  17. /**
  18. onlyCode
  19. */
  20. @property (nonatomic, strong) NSString *onlyCode;
  21. /**
  22. 商品名称
  23. */
  24. @property (nonatomic, strong) NSString *goodName;
  25. /**
  26. 库房
  27. */
  28. @property (nonatomic, strong) NSString *wareHouseName;
  29. /**
  30. 规格
  31. */
  32. @property (nonatomic, strong) NSString *specification;
  33. /**
  34. 品牌
  35. */
  36. @property (nonatomic, strong) NSString *brandName;
  37. /**
  38. 等级
  39. */
  40. @property (nonatomic, strong) NSString *gradeName;
  41. /**
  42. 色号
  43. */
  44. @property (nonatomic, strong) NSString *colorNumber;
  45. /**
  46. 结存量
  47. */
  48. @property (nonatomic, strong) NSString *inventoryQuantity;
  49. /**
  50. 可售量
  51. */
  52. @property (nonatomic, strong) NSString *canSaleQuantity;
  53. /**
  54. 仓位
  55. */
  56. @property (nonatomic, strong) NSString *positionNumber;
  57. /**
  58. 标价
  59. */
  60. @property (nonatomic, strong) NSString *price;
  61. @property (nonatomic, assign) BOOL boxPieceFlag;
  62. @property (nonatomic, strong) NSString *package;
  63. @property (nonatomic, strong) NSString *box;
  64. @property (nonatomic, strong) NSString *piece;
  65. @property (nonatomic, strong) NSString *varietyName;
  66. @property (nonatomic, strong) NSString *inventoryId;
  67. @property(nonatomic,strong) InventoryDetailModel *detailModel;
  68. @property (strong, nonatomic) UICollectionView *collectionView;
  69. /**
  70. 图片数组
  71. */
  72. @property (strong, nonatomic) NSMutableArray *detailImgList;
  73. @property (nonatomic,strong) ASIDownManager *downManager;
  74. @end