1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
//
// 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