| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- //
- // InventoryCostDetailVC.h
- // IBOSS
- //
- // Created by 关宏厚 on 2020/11/17.
- // Copyright © 2020 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- #import "InventoryCostModel.h"
- @interface InventoryCostDetailVC : BaseViewController
- @property (nonatomic,strong) UIScrollView *scroll;
- @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 *lblLastInventoryQuantity;
- @property(nonatomic,strong) UILabel *lblLastInventoryAmount;
- @property(nonatomic,strong) UILabel *lblThisInventoryQuantity;
- @property(nonatomic,strong) UILabel *lblThisInventoryAmount;
- @property(nonatomic,strong) UILabel *lblOccupyQuantity;
- @property(nonatomic,strong) UILabel *lblOccupyQuantityAmount;
- @property(nonatomic,strong) UILabel *lblNoBookOccupyQuantity;
- @property(nonatomic,strong) UILabel *lblNoBookOccupyQuantityAmount;
- @property(nonatomic,strong) UILabel *lblStockQuantity;
- @property(nonatomic,strong) UILabel *lblTimelyCost;
- @property(nonatomic,strong) UILabel *lblStandardPrice;
- @property(nonatomic,strong) UILabel *lblInventoryTimelyAmount;
- @property(nonatomic,strong) UILabel *lblCanSalesAmount;
- @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 *lblKindName;
- @property(nonatomic,strong) UILabel *lblVarietyName;
- @property(nonatomic,strong) UILabel *lblPackage;
- @property(nonatomic,strong) UILabel *lblUnit;
- @property(nonatomic,strong) UILabel *lblExpandAttribute;
- @property(nonatomic,strong) UILabel *lblExpandAttribute2;
- @property(nonatomic,strong) UILabel *lblRemarks;
- @property(nonatomic,strong) InventoryCostModel *costModel;
- /**
- 销售未提量
- */
- @property(nonatomic, strong) UILabel *lblNoDeliveryQuantity;
- @property(nonatomic, strong) UILabel *lblNoDeliveryQuantityAmount;
- @end
|