| 123456789101112131415161718 |
- //
- // InvoiceStyleDelegate.h
- // IBOSSmini
- //
- // Created by guan hong hou on 2018/3/30.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "InvoiceStyle.h"
- #import "SalesSlipListModel.h"
- @class PrintCell;
- @protocol InvoiceStyleDelegate <NSObject>
- @optional
- -(void)goElectronicInvoice:(InvoiceStyle*)style position:(NSInteger)pos;
- -(void)btnCheckPressed:(PrintCell*)cell;
- @end
|