| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- //
- // OrderListCellTableViewCell.h
- // IBOSSmini
- //
- // Created by guan hong hou on 2018/1/20.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "SalesOrderModel.h"
- @class OrderListCell;
- @protocol OrderListTableViewCellDelegate <NSObject>
- @optional
- -(void) goCorrect:(SalesOrderModel *)model;
- -(void)goDetail:(SalesOrderModel*)model;
- -(void)goEdit:(SalesOrderModel*)model;
- -(void)goElectronicInvoice:(NSInteger)position;
- -(void)goCustomerCode:(SalesOrderModel*)model;
- @end
- @interface OrderListCell : 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 *digitalInvoiceBtn;
- @property (nonatomic, strong) UIButton *customerCodeBtn;
- @property(nonatomic,assign)NSInteger cellIndex;
- @property (nonatomic, strong) UIView *bottomSeparatorView;
- @property (strong,nonatomic) id<OrderListTableViewCellDelegate>delegate;
- @property(strong,nonatomic ) SalesOrderModel* salesOrder;
- - (void)setSalesOrder:(SalesOrderModel *)salesOrder;
- @end
|