OrderDetailViewController.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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 int order_status;
  16. @property (strong,nonatomic) NSString* orderstatus;
  17. //@property bool isTempOrder;
  18. @property (strong, nonatomic) IBOutlet UIBarButtonItem *btnOpen;
  19. @property (strong, nonatomic) IBOutlet UIBarButtonItem *btnRelease;
  20. //@property (strong, nonatomic) IBOutlet UIBarButtonItem *btnCommit;
  21. @property (strong, nonatomic) IBOutlet UIBarButtonItem *btnSign;
  22. @property (strong, nonatomic) IBOutlet UIBarButtonItem *btnCopy;
  23. //@property (strong, nonatomic) IBOutlet UIBarButtonItem *btnSend;
  24. @property (strong, nonatomic) IBOutlet UIBarButtonItem *btnPDF;
  25. @property (nonatomic , copy) void (^selectOrder)(NSMutableDictionary* order_detail);
  26. @property bool showMore;
  27. @property float web_info_height;
  28. @property float web_moreinfo_height;
  29. @property (strong, nonatomic) IBOutlet UIActivityIndicatorView *mum;
  30. @property (strong, nonatomic) IBOutlet UILabel *label_net_err;
  31. @end