| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- //
- // NewStockingViewController.h
- // IBOSSmini
- //
- // Created by apple on 2017/5/17.
- // Copyright © 2017年 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- #import "StockRefreshDataProtocol.h"
- @interface NewStockingViewController : BaseViewController
- /**
- inventoryid
- */
- @property (nonatomic, strong) NSString *inventoryId;
- /**
- codeid
- */
- @property (nonatomic, strong) NSString *codeId;
- /**
- code
- */
- @property (nonatomic, strong) NSString *sCode;
- /**
- onlyCode
- */
- @property (nonatomic, strong) UITextField *txtOnlyCode;
- /**
- onlyCode
- */
- @property (nonatomic, strong) UILabel *onlyCode;
- /**
- 库房
- */
- @property (nonatomic, strong) UILabel *warehouseName;
- /**
- 规格
- */
- @property (nonatomic, strong) UILabel *specification;
- /**
- 责任人
- */
- @property (nonatomic, strong) UIButton *responseiblePerson;
- @property (nonatomic, strong) NSString *sResponseiblePerson;
- /**
- 等级
- */
- @property (nonatomic, strong) UILabel *gradeName;
- /**
- 色号
- */
- @property (nonatomic, strong) UILabel *colorNumber;
- /**
- 仓位
- */
- @property (nonatomic, strong) UILabel *positionNumber;
- /**
- 责任原因
- */
- @property (nonatomic, strong) UIButton *responseibleReason;
- @property (nonatomic, strong) NSString *sResponseibleReason;
- /**
- 库存数量
- */
- @property (nonatomic, strong) UILabel *quantity;
- /**
- 盘点数量
- */
- @property (nonatomic, strong) UITextField *txtStockingQuantity;
- /**
- 可售量
- */
- @property (nonatomic, strong) UILabel *canSaleQuantity;
- /**
- 新增盘点回调
- */
- @property(nonatomic,weak) id<StockRefreshDataProtocol> stockDelegate;
- @end
|