| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- //
- // SalesSlipListCell.h
- // IBOSSmini
- //
- // Created by ssl on 2018/1/26.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "SalesSlipListModel.h"
- @class SalesSlipListCell;
- @protocol SalesSlipListCellDelegate <NSObject>
- @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) id<SalesSlipListCellDelegate>delegate;
- @property(strong,nonatomic ) SalesSlipListModel* salesOrder;
- - (void)setSalesOrder:(SalesSlipListModel *)salesOrder;
- @end
|