TopPurchaseView.h 1.68 KB
Newer Older
n22's avatar
n22 committed
1 2 3 4 5 6 7 8 9 10
//
//  TopPurchaseView.h
//  XFFruit
//
//  Created by n22 on 15/8/21.
//  Copyright (c) 2015年 Xummer. All rights reserved.
//

#import <UIKit/UIKit.h>
#import "HPGrowingTextView.h"
陈俊俊's avatar
陈俊俊 committed
11
#import "PurchaseBill.h"
12
#import "SurveyUser.h"
n22's avatar
n22 committed
13 14 15
@protocol TopPurchaseViewDelegate <NSObject>

- (void)hiddenKeyBoard;
陈俊俊's avatar
陈俊俊 committed
16
- (void)pushNextViewController:(id)vc;
n22's avatar
n22 committed
17 18 19 20 21 22 23
@end

@interface TopPurchaseView : UIView
@property (nonatomic,strong)UILabel *purchaseNoticeLabel;//采购通知单号
@property (nonatomic,strong)UILabel *purchaseTypeLabel;//类型
@property (nonatomic,strong)UILabel *purchaseSupplierLabel;//供应商
@property (nonatomic,strong)UILabel *purchaseStoreLabel;//收货仓库
n22's avatar
n22 committed
24 25
@property (nonatomic,strong)UITextField *otherPriceFiled;//其他费用
@property (nonatomic,strong)UILabel *purchasePriceLabel;//总金额
n22's avatar
n22 committed
26
@property (nonatomic,strong)HPGrowingTextView *remarkTextView;//备注
n22's avatar
n22 committed
27 28 29 30 31 32 33 34 35 36 37
//数据
@property (nonatomic,strong)NSString *noticeUuid;
@property (nonatomic,strong)NSString *noticeNumber;
@property (nonatomic,strong)NSString *billNumber;
@property (nonatomic,strong)NSString *type;
@property (nonatomic,strong)NSString *vendor_uuid;
@property (nonatomic,strong)NSString *vendor_code;
@property (nonatomic,strong)NSString *vendor_name;
@property (nonatomic,strong)NSString *receiveWrh_uuid;
@property (nonatomic,strong)NSString *receiveWrh_code;
@property (nonatomic,strong)NSString *receiveWrh_name;
陈俊俊's avatar
陈俊俊 committed
38 39 40
@property (nonatomic,strong)NSNumber *total;
@property (nonatomic,strong)NSNumber *chargePurchase;
@property (nonatomic,strong)NSString *remark;
陈俊俊's avatar
陈俊俊 committed
41
@property (nonatomic,strong)PurchaseBill *bill;
42
@property (nonatomic,strong)SurveyUser *selectPerson;
n22's avatar
n22 committed
43

n22's avatar
n22 committed
44 45 46 47 48

@property (nonatomic,weak)id <TopPurchaseViewDelegate>delegate;


@end