| 123456789101112131415161718192021222324 |
- //
- // SalesOrderGoodsDetailVC.h
- // IBOSSmini
- //
- // Created by guan hong hou on 2018/2/26.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- #import "SalesOrderModel.h"
- #import "NSString+Tools.h"
- #import "OrderGoodsListVC.h"
- #import "OrderListDelegate.h"
- #import "NewSalesOrderHomeVC.h"
- #define orderTextFont [UIFont systemFontOfSize:13]
- @interface SalesOrderInfoVC : BaseViewController<OrderListDelegate>
- @property(nonatomic,strong)SalesOrderModel *salesOrderModel;
- @property(nonatomic,strong)UIButton *editBtn;
- @property(nonatomic,strong)UIButton *correctBtn;
- @property(nonatomic,strong)UIButton *detailBtn;
- @property (nonatomic,strong) ASIDownManager *downManager;
- @property(nonatomic,weak) id<OrderListDelegate> refreshDelegate;
- @end
|