InventoryCostDetailVC.h 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. //
  2. // InventoryCostDetailVC.h
  3. // IBOSS
  4. //
  5. // Created by 关宏厚 on 2020/11/17.
  6. // Copyright © 2020 elongtian. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. #import "InventoryCostModel.h"
  10. @interface InventoryCostDetailVC : BaseViewController
  11. @property (nonatomic,strong) UIScrollView *scroll;
  12. @property(nonatomic,strong)UILabel *lblCode;
  13. @property(nonatomic,strong)UILabel *lblOnlyCode;
  14. @property(nonatomic,strong)UILabel *lblGoodsName;
  15. @property(nonatomic,strong)UILabel *lblBrandName;
  16. @property(nonatomic,strong)UILabel *lblColorNumber;
  17. @property(nonatomic,strong)UILabel *lblSpecification;
  18. @property(nonatomic,strong)UILabel *lblGrade;
  19. @property(nonatomic,strong)UILabel *lblWarehouseName;
  20. @property(nonatomic,strong)UILabel *lblPositionNumber;
  21. @property(nonatomic,strong) UILabel *lBox;
  22. @property(nonatomic,strong) UILabel *lPiece;
  23. @property(nonatomic,strong) UILabel *lblCanSaleQuantity;
  24. @property(nonatomic,strong) UILabel *lblInventoryQuantity;
  25. @property(nonatomic,strong) UILabel *lblLastInventoryQuantity;
  26. @property(nonatomic,strong) UILabel *lblLastInventoryAmount;
  27. @property(nonatomic,strong) UILabel *lblThisInventoryQuantity;
  28. @property(nonatomic,strong) UILabel *lblThisInventoryAmount;
  29. @property(nonatomic,strong) UILabel *lblOccupyQuantity;
  30. @property(nonatomic,strong) UILabel *lblOccupyQuantityAmount;
  31. @property(nonatomic,strong) UILabel *lblNoBookOccupyQuantity;
  32. @property(nonatomic,strong) UILabel *lblNoBookOccupyQuantityAmount;
  33. @property(nonatomic,strong) UILabel *lblStockQuantity;
  34. @property(nonatomic,strong) UILabel *lblTimelyCost;
  35. @property(nonatomic,strong) UILabel *lblStandardPrice;
  36. @property(nonatomic,strong) UILabel *lblInventoryTimelyAmount;
  37. @property(nonatomic,strong) UILabel *lblCanSalesAmount;
  38. @property(nonatomic,strong) UILabel *lblPrice;
  39. @property(nonatomic,strong) UILabel *lblCostPrice;
  40. @property(nonatomic,strong) UILabel *lblNoOccupyQuantity;
  41. @property(nonatomic,strong) UILabel *lblEstimatedShortageQuantity;
  42. @property(nonatomic,strong) UILabel *lblCeaseFlag;
  43. @property(nonatomic,strong) UILabel *lblFreezerQuantity;
  44. @property(nonatomic,strong) UILabel *lblDeliveryQuantity;
  45. @property(nonatomic,strong) UILabel *lblSeriesName;
  46. @property(nonatomic,strong) UILabel *lblKindName;
  47. @property(nonatomic,strong) UILabel *lblVarietyName;
  48. @property(nonatomic,strong) UILabel *lblPackage;
  49. @property(nonatomic,strong) UILabel *lblUnit;
  50. @property(nonatomic,strong) UILabel *lblExpandAttribute;
  51. @property(nonatomic,strong) UILabel *lblExpandAttribute2;
  52. @property(nonatomic,strong) UILabel *lblRemarks;
  53. @property(nonatomic,strong) InventoryCostModel *costModel;
  54. /**
  55. 销售未提量
  56. */
  57. @property(nonatomic, strong) UILabel *lblNoDeliveryQuantity;
  58. @property(nonatomic, strong) UILabel *lblNoDeliveryQuantityAmount;
  59. @end