// // SalesSlipListCell.h // IBOSSmini // // Created by ssl on 2018/1/26. // Copyright © 2018年 elongtian. All rights reserved. // #import #import "SalesSlipListModel.h" @class SalesSlipListCell; @protocol SalesSlipListCellDelegate @optional -(void) goCorrect:(SalesSlipListModel *)model; -(void)goDetail:(SalesSlipListModel*)model; -(void)goEdit:(SalesSlipListModel*)model; -(void)goElectronicInvoice:(NSInteger)position; -(void)goReceivables:(SalesSlipListModel*)model; @end @interface SalesSlipListCell : UITableViewCell @property (nonatomic, strong) UILabel *orderNoLbl; @property (nonatomic, strong) UILabel *orderStatusLbl; @property (nonatomic, strong) UIView *topSeparatorView; @property (nonatomic, strong) UILabel *customerNameLbl; @property (nonatomic, strong) UILabel *customerTelephoneLbl; @property (nonatomic, strong) UILabel *customerCodeLbl; @property (nonatomic, strong) UILabel *channelLbl; @property (nonatomic, strong) UILabel *departmentLbl; @property (nonatomic, strong) UILabel *staffLbl; @property (nonatomic, strong) UILabel *creatorLbl; @property (nonatomic, strong) UILabel *accountDateLbl; @property (nonatomic, strong) UILabel *customerAddressLbl; @property (nonatomic, strong) UIView *middleSeparatorView; @property (nonatomic, strong) UILabel *goodsCountLbl; @property (nonatomic, strong) UILabel *earnestAmountLbl; @property (nonatomic, strong) UILabel *goodsAmountLbl; @property (nonatomic, strong) UIButton *goodsDetailBtn; @property (nonatomic, strong) UIButton *correctBtn; @property (nonatomic, strong) UIButton *editBtn; @property(nonatomic,strong) UIButton *receivablesBtn; @property (nonatomic, strong) UIButton *digitalInvoiceBtn; @property(nonatomic,assign)NSInteger cellIndex; @property (nonatomic, strong) UIView *bottomSeparatorView; @property (strong,nonatomic) iddelegate; @property(strong,nonatomic ) SalesSlipListModel* salesOrder; - (void)setSalesOrder:(SalesSlipListModel *)salesOrder; @end