PurchaseDetailViewController.h 911 Bytes
Newer Older
陈俊俊's avatar
陈俊俊 committed
1 2 3 4 5 6 7 8 9 10
//
//  PurchaseDetailViewController.h
//  XFFruit
//
//  Created by 陈俊俊 on 15/8/23.
//  Copyright (c) 2015年 Xummer. All rights reserved.
//

#import "ICRBaseViewController.h"
#import "PurchaseBill.h"
Sandy's avatar
Sandy committed
11 12 13 14 15 16 17 18 19 20 21 22 23
/**
 *  采购单状态
 */
typedef NS_ENUM(NSInteger, PurchaseType) {
    /**
     *  审核之前的状态(已保存、已提交)
     */
    PurchaseTypeBeforeVerify = 1,
    /**
     *  审核之后的状态(待收货、发运中等。。)
     */
    PurchaseTypeAfterVerify,
};
陈俊俊's avatar
陈俊俊 committed
24 25 26
@interface PurchaseDetailViewController : ICRBaseViewController

@property (nonatomic,strong)PurchaseBill *bill;
陈俊俊's avatar
陈俊俊 committed
27 28 29

//显示样式
@property (nonatomic,assign)NSInteger indexStyle;//0.1.2
陈俊俊's avatar
陈俊俊 committed
30

Sandy's avatar
Sandy committed
31
@property (nonatomic, assign) PurchaseType type;
Sandy's avatar
Sandy committed
32 33 34 35 36 37 38 39
/**
 *  收货仓库是否wms
 */
@property (nonatomic, assign) BOOL isWms;
/**
 *  收货仓库是否产品中心仓
 */
@property (nonatomic, assign) BOOL isCenter;
Sandy's avatar
Sandy committed
40 41 42



陈俊俊's avatar
陈俊俊 committed
43
@end