| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- //
- // NewStockingViewController.h
- // IBOSS
- //
- // Created by apple on 2017/5/17.
- // Copyright © 2017年 沈阳东科云信软件有限公司. 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 *lblOnlyCode;
- /**
- 库房
- */
- @property (nonatomic, strong) UILabel *lblWarehouseName;
- /**
- 规格
- */
- @property (nonatomic, strong) UILabel *lblSpecification;
- /**
- 责任人
- */
- @property (nonatomic, strong) UIButton *btnResponseiblePerson;
- @property (nonatomic, strong) NSString *sResponseiblePerson;
- /**
- 等级
- */
- @property (nonatomic, strong) UILabel *lblGradeName;
- /**
- 色号
- */
- @property (nonatomic, strong) UILabel *lblColorNumber;
- /**
- 仓位
- */
- @property (nonatomic, strong) UILabel *lblPositionNumber;
- /**
- 责任原因
- */
- @property (nonatomic, strong) UIButton *btnResponseibleReason;
- @property (nonatomic, strong) NSString *sResponseibleReason;
- /**
- 库存数量
- */
- @property (nonatomic, strong) UILabel *lblQuantity;
- /**
- 盘点数量
- */
- @property (nonatomic, strong) UITextField *txtStockingQuantity;
- /**
- 可售量
- */
- @property (nonatomic, strong) UILabel *lblCanSaleQuantity;
- /**
- 新增盘点回调
- */
- @property (nonatomic,weak) id<StockRefreshDataProtocol> stockDelegate;
- @property(nonatomic,strong) UIButton *btnSave;
- @end
|