// // PurchaseDetailViewController.h // XFFruit // // Created by 陈俊俊 on 15/8/23. // Copyright (c) 2015年 Xummer. All rights reserved. // #import "ICRBaseViewController.h" #import "PurchaseBill.h" /** * 采购单状态 */ typedef NS_ENUM(NSInteger, PurchaseType) { /** * 审核之前的状态(已保存、已提交) */ PurchaseTypeBeforeVerify = 1, /** * 审核之后的状态(待收货、发运中等。。) */ PurchaseTypeAfterVerify, }; @interface PurchaseDetailViewController : ICRBaseViewController @property (nonatomic,strong)PurchaseBill *bill; //显示样式 @property (nonatomic,assign)NSInteger indexStyle;//0.1.2 @property (nonatomic, assign) PurchaseType type; /** * 收货仓库是否wms */ @property (nonatomic, assign) BOOL isWms; /** * 收货仓库是否产品中心仓 */ @property (nonatomic, assign) BOOL isCenter; @end