SalesOrderInfoVC.h 783 B

123456789101112131415161718192021222324
  1. //
  2. // SalesOrderGoodsDetailVC.h
  3. // IBOSSmini
  4. //
  5. // Created by guan hong hou on 2018/2/26.
  6. // Copyright © 2018年 elongtian. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. #import "SalesOrderModel.h"
  10. #import "NSString+Tools.h"
  11. #import "OrderGoodsListVC.h"
  12. #import "OrderListDelegate.h"
  13. #import "NewSalesOrderHomeVC.h"
  14. #define orderTextFont [UIFont systemFontOfSize:13]
  15. @interface SalesOrderInfoVC : BaseViewController<OrderListDelegate>
  16. @property(nonatomic,strong)SalesOrderModel *salesOrderModel;
  17. @property(nonatomic,strong)UIButton *editBtn;
  18. @property(nonatomic,strong)UIButton *correctBtn;
  19. @property(nonatomic,strong)UIButton *detailBtn;
  20. @property (nonatomic,strong) ASIDownManager *downManager;
  21. @property(nonatomic,weak) id<OrderListDelegate> refreshDelegate;
  22. @end