ProductBillCell.h 1.5 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
@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;
陈俊俊's avatar
陈俊俊 committed
19
@property (nonatomic,strong)UILabel *shippedQtyLabel;
n22's avatar
n22 committed
20 21 22
@property (nonatomic,strong)UILabel *lineLabel;

@property (nonatomic,strong)UIView *showView;
陈俊俊's avatar
陈俊俊 committed
23
@property (nonatomic,strong)UILabel *showNameLabel;
陈俊俊's avatar
陈俊俊 committed
24 25
@property (nonatomic,strong)UILabel *showStandLabel;
@property (nonatomic,strong)UILabel *showCountLabel;
n22's avatar
n22 committed
26
@property (nonatomic,strong)UILabel *showBaseCountLabel;
陈俊俊's avatar
陈俊俊 committed
27 28 29 30
@property (nonatomic,strong)UILabel *showPriceLabel;
@property (nonatomic,strong)UILabel *showBasePriceLabel;
@property (nonatomic,strong)UILabel *showTotalLabel;
@property (nonatomic,strong)UILabel *showNoteLabel;
Sandy's avatar
Sandy committed
31 32


陈俊俊's avatar
陈俊俊 committed
33 34 35
@property (nonatomic,strong)UILabel *showShippedFlag;//发运标志
@property (nonatomic,strong)UILabel *showShippedQty;//发运包装数量
@property (nonatomic,strong)UILabel *showShippedBaseQty;//发运基础数量
Sandy's avatar
Sandy committed
36
@property (strong, nonatomic) UILabel *showCounterNum;//柜号
陈俊俊's avatar
陈俊俊 committed
37 38

@property (nonatomic,assign)BOOL isShowShipping;//是否发运
陈俊俊's avatar
陈俊俊 committed
39 40 41

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

n22's avatar
n22 committed
42
@end