SettlementViewController.h 2.29 KB
Newer Older
1 2 3 4 5 6 7 8 9
//
//  SettlementViewController.h
//  Lighting
//
//  Created by 曹云霄 on 16/5/11.
//  Copyright © 2016年 上海勾芒科技有限公司. All rights reserved.
//

#import "BaseViewController.h"
10
#import "PromotionLuckDrawResultModel.h"
11
#import "PromotionWeChatCardModel.h"
12 13 14 15 16 17
@interface SettlementViewController : BaseViewController




/**
勾芒's avatar
勾芒 committed
18
 *  商品信息
19
 */
勾芒's avatar
勾芒 committed
20 21
@property (nonatomic,strong) NSArray *goodsArray;

22
/**
23
 *  促销信息
24
 */
25 26
@property (nonatomic,strong) NSArray *promotionalArray;

勾芒's avatar
勾芒 committed
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
/**
 *  商品总数量
 */
@property (weak, nonatomic) IBOutlet UITextField *goodsAllNumber;

/**
 *  商品总数量背景View
 */
@property (weak, nonatomic) IBOutlet UIView *goodsAllNumberBackvie;

/**
 *  商品总金额
 */
@property (weak, nonatomic) IBOutlet UITextField *goodsAllPrice;

/**
 *  商品总金额背景View
 */
@property (weak, nonatomic) IBOutlet UIView *goodsAllpriceBackView;

/**
 *  支付方式
 */
@property (weak, nonatomic) IBOutlet UIButton *payTypeButton;

/**
 *  微信支付
 */
@property (weak, nonatomic) IBOutlet UIButton *WeixiPayButton;

/**
 *  支付宝支付
 */
@property (weak, nonatomic) IBOutlet UIButton *payTreasureButton;

/**
 *  显示支付二维码
 */
@property (weak, nonatomic) IBOutlet UIImageView *showPayQrCodeImageView;

/**
 *  是否开票
 */
@property (weak, nonatomic) IBOutlet UIButton *ISinvoiceButton;

/**
 *  发票类型
 */
@property (weak, nonatomic) IBOutlet UIButton *invoiceType;

/**
 *  发票抬头
 */
@property (weak, nonatomic) IBOutlet UITextField *invoiceHeader;

/**
 *  发票抬头背景
 */
@property (weak, nonatomic) IBOutlet UIView *invoiceBackView;

/**
 *  取消
 */
@property (weak, nonatomic) IBOutlet UIButton *cancelButton;

/**
 *  确认
 */
@property (weak, nonatomic) IBOutlet UIButton *sureButton;

勾芒's avatar
勾芒 committed
97 98 99 100
/**
 *  订单编号
 */
@property (nonatomic,copy) NSString *orderCode;
勾芒's avatar
勾芒 committed
101

102 103 104 105 106
/**
 *  京东E卡总额度
 */
@property (nonatomic,assign) NSInteger jdCardDenomation;

勾芒's avatar
勾芒 committed
107 108 109 110
/**
 *  支付成功回调
 */
@property (nonatomic,copy) void(^PaySuccessReturnBlock)();
勾芒's avatar
勾芒 committed
111

勾芒's avatar
勾芒 committed
112 113 114 115
/**
 * 背景Scrollview 
 */
@property (weak, nonatomic) IBOutlet UIScrollView *myScrollView;
116

117 118 119
/**
 *  客户抽奖结果
 */
120
@property (nonatomic,strong) PromotionLuckDrawResultModel *resultModel;
121

122 123 124 125 126
/**
 微信卡劵
 */
@property (nonatomic,strong) WeChatCardModel *weChatModel;

127 128

@end