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

#import <UIKit/UIKit.h>
陈俊俊's avatar
陈俊俊 committed
10
#import "PurchaseBillProduct.h"
zhu's avatar
zhu committed
11

陈俊俊's avatar
陈俊俊 committed
12
@interface ProductBillCell : UITableViewCell
n22's avatar
n22 committed
13 14 15 16 17 18 19 20 21
@property (nonatomic,strong)UIImageView *smallImageView;
@property (nonatomic,strong)UIButton *editBtn;
@property (nonatomic,strong)UILabel *seqLabel;
@property (nonatomic,strong)UILabel *titleLabel;
@property (nonatomic,strong)UILabel *priceLabel;
@property (nonatomic,strong)UILabel *countLabel;
@property (nonatomic,strong)UILabel *lineLabel;

@property (nonatomic,strong)UIView *showView;
陈俊俊's avatar
陈俊俊 committed
22 23
@property (nonatomic,strong)UILabel *showStandLabel;
@property (nonatomic,strong)UILabel *showCountLabel;
n22's avatar
n22 committed
24
@property (nonatomic,strong)UILabel *showBaseCountLabel;
陈俊俊's avatar
陈俊俊 committed
25 26 27 28
@property (nonatomic,strong)UILabel *showPriceLabel;
@property (nonatomic,strong)UILabel *showBasePriceLabel;
@property (nonatomic,strong)UILabel *showTotalLabel;
@property (nonatomic,strong)UILabel *showNoteLabel;
陈俊俊's avatar
陈俊俊 committed
29 30 31 32 33
@property (nonatomic,strong)UILabel *showShippedFlag;//发运标志
@property (nonatomic,strong)UILabel *showShippedQty;//发运包装数量
@property (nonatomic,strong)UILabel *showShippedBaseQty;//发运基础数量

@property (nonatomic,assign)BOOL isShowShipping;//是否发运
陈俊俊's avatar
陈俊俊 committed
34 35 36

- (void)setBillProduct:(PurchaseBillProduct *)billProduct row:(NSInteger)row;

n22's avatar
n22 committed
37
@end