| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159 |
- //
- // InventoryDetailViewController.h
- // IBOSS
- //
- // Created by apple on 2017/5/16.
- // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
- //
- // 功能描述:库存明细表详细控制器
- //
- #import "BaseViewController.h"
- #import "InventoryDetailModel.h"
- @interface InventoryDetailViewController : BaseViewController<UICollectionViewDataSource,UICollectionViewDelegate,UICollectionViewDelegateFlowLayout>
- @property(nonatomic, strong) NSString *inventoryId;
- /**
- code
- */
- @property (nonatomic, strong) NSString *code;
- /**
- onlyCode
- */
- @property (nonatomic, strong) NSString *onlyCode;
- /**
- 商品名称
- */
- @property (nonatomic, strong) NSString *goodName;
- /**
- 库房
- */
- @property (nonatomic, strong) NSString *wareHouseName;
- /**
- 规格
- */
- @property (nonatomic, strong) NSString *specification;
- /**
- 品牌
- */
- @property (nonatomic, strong) NSString *brandName;
- /**
- 等级
- */
- @property (nonatomic, strong) NSString *gradeName;
- /**
- 色号
- */
- @property (nonatomic, strong) NSString *colorNumber;
- /**
- 结存量
- */
- @property (nonatomic, strong) NSString *inventoryQuantity;
- /**
- 可售量
- */
- @property (nonatomic, strong) NSString *canSaleQuantity;
- @property (nonatomic,strong) UIScrollView *scroll;
- /**
- 仓位
- */
- @property (nonatomic, strong) NSString *positionNumber;
- /**
- 标价
- */
- @property (nonatomic, strong) NSString *price;
- /**
- 标示
- */
- @property (nonatomic, assign) BOOL boxPieceFlag;
- @property (nonatomic, strong) NSString *box;
- @property (nonatomic, strong) NSString *piece;
- @property (nonatomic, strong) NSString *occupyQuantity;
- @property (nonatomic, strong) NSString *noOccupyQuantity;
- @property (nonatomic, strong) NSString *estimatedShortageQuantity;
- @property(nonatomic,strong) NSString *ceaseFlag;
- @property(nonatomic,strong) NSString *freezerQuantity;
- @property(nonatomic,strong) NSString *deliveryQuantity;
- @property(nonatomic,strong) NSString *seriesName;
- @property(nonatomic,strong) NSString *varietyName;
- @property(nonatomic,strong) NSString *settingValues;
- @property(nonatomic,strong) NSString *costPrice;
- @property(nonatomic,strong) NSString *package;
- @property(nonatomic,strong) NSString *unitName;
- @property(nonatomic,strong) NSString *photo;
- @property(nonatomic,strong) NSString *weight;
- @property(nonatomic,strong) NSString *expandAttribute;
- @property(nonatomic,strong) NSString *expandAttribute2;
- /**
- 销售未提数量
- */
- @property (nonatomic, strong) NSString *noDeliveryQuantity;
- @property(nonatomic,strong)UILabel *lblCode;
- @property(nonatomic,strong)UILabel *lblOnlyCode;
- @property(nonatomic,strong)UILabel *lblGoodsName;
- @property(nonatomic,strong)UILabel *lblBrandName;
- @property(nonatomic,strong)UILabel *lblColorNumber;
- @property(nonatomic,strong)UILabel *lblSpecification;
- @property(nonatomic,strong)UILabel *lblGrade;
- @property(nonatomic,strong)UILabel *lblWarehouseName;
- @property(nonatomic,strong)UILabel *lblPositionNumber;
- @property(nonatomic,strong) UILabel *lBox;
- @property(nonatomic,strong) UILabel *lPiece;
- @property(nonatomic,strong) UILabel *lblCanSaleQuantity;
- @property(nonatomic,strong) UILabel *lblInventoryQuantity;
- @property(nonatomic,strong) UILabel *lblOccupyQuantity;
- @property(nonatomic,strong) UILabel *lblPrice;
- @property(nonatomic,strong) UILabel *lblCostPrice;
- @property(nonatomic,strong) UILabel *lblNoOccupyQuantity;
- @property(nonatomic,strong) UILabel *lblEstimatedShortageQuantity;
- @property(nonatomic,strong) UILabel *lblCeaseFlag;
- @property(nonatomic,strong) UILabel *lblFreezerQuantity;
- @property(nonatomic,strong) UILabel *lblDeliveryQuantity;
- @property(nonatomic,strong) UILabel *lblSeriesName;
- @property(nonatomic,strong) UILabel *lblVarietyName;
- @property(nonatomic,strong) UILabel *lblPackage;
- @property(nonatomic,strong) UILabel *lblUnit;
- @property(nonatomic,strong) UILabel *lblWeight;
- @property(nonatomic,strong) UILabel *lblExpandAttribute;
- @property(nonatomic,strong) UILabel *lblExpandAttribute2;
- @property(nonatomic,assign) bool displayStandardPrice;
- @property(nonatomic,assign) bool displayInventoryQuantity;
- @property(nonatomic,assign) bool displayCanSalesQuantity;
- @property (strong, nonatomic) UICollectionView *collectionView;
- /**
- 图片数组
- */
- @property (strong, nonatomic) NSMutableArray *detailImgList;
- /**
- 销售未提量
- */
- @property(nonatomic, strong) UILabel *lblNoDeliveryQuantity;
- @property(nonatomic,strong) InventoryDetailModel *detailModel;
- @property (nonatomic,strong) ASIDownManager *downManager;
- @end
|