NewStockingViewController.h 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. //
  2. // NewStockingViewController.h
  3. // IBOSS
  4. //
  5. // Created by apple on 2017/5/17.
  6. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
  7. //
  8. // 功能描述:新增盘点控制器
  9. //
  10. #import "BaseViewController.h"
  11. #import "StockRefreshDataProtocol.h"
  12. @interface NewStockingViewController : BaseViewController
  13. /**
  14. inventoryid
  15. */
  16. @property (nonatomic, strong) NSString *inventoryId;
  17. /**
  18. codeid
  19. */
  20. @property (nonatomic, strong) NSString *codeId;
  21. /**
  22. code
  23. */
  24. @property (nonatomic, strong) NSString *sCode;
  25. /**
  26. onlyCode
  27. */
  28. @property (nonatomic, strong) UITextField *txtOnlyCode;
  29. /**
  30. onlyCode
  31. */
  32. @property (nonatomic, strong) UILabel *lblOnlyCode;
  33. /**
  34. 库房
  35. */
  36. @property (nonatomic, strong) UILabel *lblWarehouseName;
  37. /**
  38. 规格
  39. */
  40. @property (nonatomic, strong) UILabel *lblSpecification;
  41. /**
  42. 责任人
  43. */
  44. @property (nonatomic, strong) UIButton *btnResponseiblePerson;
  45. @property (nonatomic, strong) NSString *sResponseiblePerson;
  46. /**
  47. 等级
  48. */
  49. @property (nonatomic, strong) UILabel *lblGradeName;
  50. /**
  51. 色号
  52. */
  53. @property (nonatomic, strong) UILabel *lblColorNumber;
  54. /**
  55. 仓位
  56. */
  57. @property (nonatomic, strong) UILabel *lblPositionNumber;
  58. /**
  59. 责任原因
  60. */
  61. @property (nonatomic, strong) UIButton *btnResponseibleReason;
  62. @property (nonatomic, strong) NSString *sResponseibleReason;
  63. /**
  64. 库存数量
  65. */
  66. @property (nonatomic, strong) UILabel *lblQuantity;
  67. /**
  68. 盘点数量
  69. */
  70. @property (nonatomic, strong) UITextField *txtStockingQuantity;
  71. /**
  72. 可售量
  73. */
  74. @property (nonatomic, strong) UILabel *lblCanSaleQuantity;
  75. /**
  76. 新增盘点回调
  77. */
  78. @property (nonatomic,weak) id<StockRefreshDataProtocol> stockDelegate;
  79. @property(nonatomic,strong) UIButton *btnSave;
  80. @end