NewStockingViewController.h 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. //
  2. // NewStockingViewController.h
  3. // IBOSSmini
  4. //
  5. // Created by apple on 2017/5/17.
  6. // Copyright © 2017年 elongtian. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. #import "StockRefreshDataProtocol.h"
  10. @interface NewStockingViewController : BaseViewController
  11. /**
  12. inventoryid
  13. */
  14. @property (nonatomic, strong) NSString *inventoryId;
  15. /**
  16. codeid
  17. */
  18. @property (nonatomic, strong) NSString *codeId;
  19. /**
  20. code
  21. */
  22. @property (nonatomic, strong) NSString *sCode;
  23. /**
  24. onlyCode
  25. */
  26. @property (nonatomic, strong) UITextField *txtOnlyCode;
  27. /**
  28. onlyCode
  29. */
  30. @property (nonatomic, strong) UILabel *onlyCode;
  31. /**
  32. 库房
  33. */
  34. @property (nonatomic, strong) UILabel *warehouseName;
  35. /**
  36. 规格
  37. */
  38. @property (nonatomic, strong) UILabel *specification;
  39. /**
  40. 责任人
  41. */
  42. @property (nonatomic, strong) UIButton *responseiblePerson;
  43. @property (nonatomic, strong) NSString *sResponseiblePerson;
  44. /**
  45. 等级
  46. */
  47. @property (nonatomic, strong) UILabel *gradeName;
  48. /**
  49. 色号
  50. */
  51. @property (nonatomic, strong) UILabel *colorNumber;
  52. /**
  53. 仓位
  54. */
  55. @property (nonatomic, strong) UILabel *positionNumber;
  56. /**
  57. 责任原因
  58. */
  59. @property (nonatomic, strong) UIButton *responseibleReason;
  60. @property (nonatomic, strong) NSString *sResponseibleReason;
  61. /**
  62. 库存数量
  63. */
  64. @property (nonatomic, strong) UILabel *quantity;
  65. /**
  66. 盘点数量
  67. */
  68. @property (nonatomic, strong) UITextField *txtStockingQuantity;
  69. /**
  70. 可售量
  71. */
  72. @property (nonatomic, strong) UILabel *canSaleQuantity;
  73. /**
  74. 新增盘点回调
  75. */
  76. @property(nonatomic,weak) id<StockRefreshDataProtocol> stockDelegate;
  77. @end