//
//  PurchaseReceiveProductCell.h
//  XFFruit
//
//  Created by Javen on 2017/7/21.
//  Copyright © 2017年 Xummer. All rights reserved.
//

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

@interface PurchaseReceiveProductCell : 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 *dscountLabel;
@property (nonatomic,strong)UILabel *yscountLabel;
@property (nonatomic,strong)UILabel *lineLabel;
/** 已运包装数 */
@property (nonatomic,strong)UILabel *labelShipPkgCount;
@property (nonatomic,strong)UIView *showView;
@property (nonatomic,strong)UILabel *showStandLabel;
@property (nonatomic,strong)UILabel *showbzdwLabel;
@property (nonatomic,strong)UILabel *showbzCountLabel;
@property (nonatomic,strong)UILabel *showshCountLabel;
@property (nonatomic,strong)UILabel *showjcCountLabel;
@property (nonatomic,strong)UILabel *showshjcCountLabel;
@property (nonatomic,strong)UILabel *showjcPriceLabel;
@property (nonatomic,strong)UILabel *showbzPriceLabel;
@property (nonatomic,strong)UILabel *showTotalLabel;
@property (nonatomic,strong)UILabel *showshTotalLabel;

@property (strong, nonatomic) UILabel *showPkgQty;
@property (strong, nonatomic) UILabel *showBaseQty;
@property (strong, nonatomic) UILabel *showTotal;


@property (nonatomic,strong)UILabel *showNoteLabel;
@property (strong, nonatomic) UILabel *showCounterNum;

@property (nonatomic,assign)BOOL isShowShipping;//是否发运

- (void)setBillProduct:(TransferPdtDetail *)billProduct row:(NSInteger)row defaultState:(NSString *)state;
@end