OrderDetailViewController.h 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. //
  2. // OrderDetailViewController.h
  3. // RedAnt ERP Mobile
  4. //
  5. // Created by Ray on 8/28/15.
  6. // Copyright (c) 2015 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "ActiveViewController.h"
  10. @interface OrderDetailViewController : ActiveViewController<UITableViewDataSource,UITableViewDelegate,UIAlertViewDelegate,UIWebViewDelegate>
  11. @property (strong, nonatomic) IBOutlet UITableView *detailTable;
  12. @property (strong,nonatomic) NSMutableDictionary* content_data;
  13. @property (strong,nonatomic) NSString* orderid;
  14. @property (strong,nonatomic) NSString* order_code;
  15. @property (strong,nonatomic) NSString* orderstatus;
  16. //@property bool isTempOrder;
  17. @property (strong, nonatomic) IBOutlet UIBarButtonItem *btnOpen;
  18. @property (strong, nonatomic) IBOutlet UIBarButtonItem *btnRelease;
  19. @property (strong, nonatomic) IBOutlet UIBarButtonItem *btnCommit;
  20. @property (strong, nonatomic) IBOutlet UIBarButtonItem *btnSend;
  21. @property (strong, nonatomic) IBOutlet UIBarButtonItem *btnPDF;
  22. @property (nonatomic , copy) void (^selectOrder)(NSMutableDictionary* order_detail);
  23. @property bool showMore;
  24. @property float web_info_height;
  25. @property float web_moreinfo_height;
  26. @property (strong, nonatomic) IBOutlet UIActivityIndicatorView *mum;
  27. @property (strong, nonatomic) IBOutlet UILabel *label_net_err;
  28. @end