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

#import "ICRBaseViewController.h"

typedef void(^GetPurchaseProduct)(NSArray *products);

@interface TransportPurchaseViewController : ICRBaseViewController
@property (nonatomic,copy)GetPurchaseProduct getProchaseProduct;

16
@property (nonatomic,copy)GetPurchaseProduct blockFirstWarehouse;
Sandy's avatar
Sandy committed
17 18 19 20
/**
 *  如果是发运单界面进入,则只显示已收货的。否的话则是转运单进入,则不限时
 */
@property (nonatomic, assign) BOOL isTransportIn;
Sandy's avatar
Sandy committed
21 22

@property (weak, nonatomic) NSMutableDictionary *dicProduct;
Sandy's avatar
Sandy committed
23 24 25 26
/**
 *  采购单的收货仓库(即转运单、发运单的发货仓库)
 */
@property (strong, nonatomic) NSString *receiveWrhUuid;
Sandy's avatar
Sandy committed
27

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