TransportCreateProductCell.h 1.63 KB
Newer Older
Sandy's avatar
Sandy 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
//
//  TransportCreateProductCell.h
//  XFFruit
//
//  Created by Javen on 2017/7/7.
//  Copyright © 2017年 Xummer. All rights reserved.
//

#import <UIKit/UIKit.h>
#import "TransportPdtDetail.h"

@interface TransportCreateProductCell : UITableViewCell
@property (nonatomic,strong)UIImageView *smallImageView;
@property (nonatomic,strong)UIButton *editBtn;
@property (nonatomic,strong)UILabel *seqLabel;
@property (nonatomic,strong)UILabel *titleLabel;
/**
 *  待收包装数
 */
@property (nonatomic,strong)UILabel *waitRecieveQtyLabel;
/**
 *  已收包装数
 */
@property (nonatomic,strong)UILabel *recievedQtyLabel;
25
@property (nonatomic,strong)UILabel *qpcLabel;
Sandy's avatar
Sandy committed
26
@property (nonatomic,strong)UILabel *lineLabel;
27
@property (strong, nonatomic) UILabel *showBasePrice;
Sandy's avatar
Sandy committed
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
@property (nonatomic,strong)UIView *showView;
@property (nonatomic,strong)UILabel *showNameLabel;
@property (nonatomic,strong)UILabel *showStandLabel;
@property (nonatomic,strong)UILabel *showCountLabel;
@property (nonatomic,strong)UILabel *showBaseCountLabel;
@property (nonatomic,strong)UILabel *showPriceLabel;
@property (nonatomic,strong)UILabel *showTotalLabel;
@property (nonatomic,strong)UILabel *showNoteLabel;
@property (nonatomic,strong)UILabel *showPurchaseLabel;
@property (nonatomic,strong)UILabel *showShippedQty;//转运包装数量
@property (nonatomic,strong)UILabel *showShippedBaseQty;//转运基础数量



@property (nonatomic,strong)NSString *rightImageName;

- (void)setPdtDetail:(TransportPdtDetail *)pdtDetail row:(NSInteger)row;
- (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier withImageName:(NSString *)imageName;

@end