// GoodsDetailViewController // IOBSS 2.0 // // Created by on 2017.7.24 // Copyright 2017 沈阳东科云信软件有限公司. All rights reserved. // // 系统名称: // 功能描述:商品详细界面 #import "BaseViewController.h" @interface GoodsDetailViewController : BaseViewController /** 库存ID */ @property (nonatomic,strong) NSString* inventoryId; /** 商品编码 */ @property (strong) UILabel *lblCode; /** 唯一编码 */ @property (strong) UILabel *lblOnlyCode; /** 品牌 */ @property (strong) UILabel *lblBrandName; /** 种类 */ @property (strong) UILabel *lblKindName; /** 品种 */ @property (strong) UILabel *lblVarietyName; /** 系列 */ @property (strong) UILabel *lblSeriesName; /** 色号 */ @property (strong) UILabel *lblColorNumber; /** 等级 */ @property (strong) UILabel *lblGradeName; /** 库区 */ @property (strong) UILabel *lblWarehouseName; /** 仓位号 */ @property (strong) UILabel *lblPositionNumber; /** 规格 */ @property (strong) UILabel *lblSpecification; /** 重量 */ @property (strong) UILabel *lblWeight; /** 面积 */ @property (strong) UILabel *lblAcreage; /** 包装 */ @property (strong) UILabel *lblPackage; /** 库存量 */ @property (strong) UILabel *lblInventoryQuantity; /** 占库量 */ @property (strong) UILabel *lblOccupyQuantity; /** 冻结量 */ @property (strong) UILabel *lblFreezeQuantity; /** 未提量 */ @property (strong) UILabel *lblNoDeliveryQuantity; /** 未入量 */ @property (strong) UILabel *lblNoEnterQuantity; /** 可售量 */ @property (strong) UILabel *lblBalanceQuantity; /** 产品明细数组 */ @property (strong) NSMutableArray * detailArr; /** 下载管理器 */ @property (nonatomic,strong) ASIDownManager *mDownManager; /** 图片 */ @property (nonatomic,strong) UIImageView *imageView; /** UIScrollView */ @property (nonatomic,strong) UIScrollView *scroll; /** 子布局 */ @property (nonatomic,strong) UIView *contentView; @end