CardOrderInformationReusableView.h 1.3 KB
Newer Older
曹云霄's avatar
曹云霄 committed
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 44 45 46 47 48
//
//  CardOrderInformationReusableView.h
//  
//
//  Created by 曹云霄 on 2016/10/20.
//
//

#import <UIKit/UIKit.h>

@protocol UploadReceiptsDelegate <NSObject>

/**
 上传小票
 */
- (void)startUploadReceipts:(NSInteger)sectionIndex;

@end

@interface CardOrderInformationReusableView : UICollectionReusableView

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

/**
 section 下标
 */
@property (nonatomic,assign) NSInteger sectionIndex;

/**
 *  上传小票
 */
@property (weak, nonatomic) IBOutlet UIButton *uploadReceiptsButton;

/**
 拒绝原因
 */
@property (weak, nonatomic) IBOutlet UILabel *rejectNoteLabel;

/**
 *  订单号
 */
@property (weak, nonatomic) IBOutlet UILabel *orderNumberLabel;

/**
 *  订单时间
 */
@property (weak, nonatomic) IBOutlet UILabel *orderTimelabel;

49 50 51 52 53 54 55 56 57 58
/**
 客户姓名
 */
@property (weak, nonatomic) IBOutlet UILabel *customerNameLabel;

/**
 订单总额
 */
@property (weak, nonatomic) IBOutlet UILabel *orderTotalPriceLabel;

曹云霄's avatar
曹云霄 committed
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
/**
 *  京东E卡订单数据
 */
@property (nonatomic,strong) GroupByOrderNumber *model;

/**
 状态
 */
@property (nonatomic,copy) NSString *stateString;

/**
 刷新数据
 */
- (void)refreshHeaderView:(id<UploadReceiptsDelegate>)delegate withEntity:(RedPackageGroupbyOrderNumber *)model withSectionIndex:(NSInteger)section;
@end