OrderDetailViewController.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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 <WebKit/WebKit.h>
  10. #import "ActiveViewController.h"
  11. @interface OrderDetailViewController : ActiveViewController<UITableViewDataSource,UITableViewDelegate/*,UIAlertViewDelegate*/,WKNavigationDelegate>
  12. @property (strong, nonatomic) IBOutlet UITableView *detailTable;
  13. @property (strong,nonatomic) NSMutableDictionary* content_data;
  14. @property (strong,nonatomic) NSString* orderid;
  15. @property (strong,nonatomic) NSString* order_code;
  16. @property int order_status;
  17. @property bool is_shoporder;
  18. @property (strong,nonatomic) NSString* orderstatus;
  19. //@property bool isTempOrder;
  20. @property (strong, nonatomic) IBOutlet UIBarButtonItem *btnOpen;
  21. @property (strong, nonatomic) IBOutlet UIBarButtonItem *btnRelease;
  22. //@property (strong, nonatomic) IBOutlet UIBarButtonItem *btnCommit;
  23. @property (strong, nonatomic) IBOutlet UIBarButtonItem *btnSign;
  24. @property (strong, nonatomic) IBOutlet UIBarButtonItem *btnCopy;
  25. //@property (strong, nonatomic) IBOutlet UIBarButtonItem *btnSend;
  26. @property (strong, nonatomic) IBOutlet UIBarButtonItem *btnPDF;
  27. @property (nonatomic , copy) void (^selectOrder)(NSMutableDictionary* order_detail);
  28. @property bool showMore;
  29. @property float web_info_height;
  30. @property float web_moreinfo_height;
  31. @property (nonatomic,copy) NSString *erpSerialNo;
  32. @property (strong, nonatomic) IBOutlet UIActivityIndicatorView *mum;
  33. @property (strong, nonatomic) IBOutlet UILabel *label_net_err;
  34. @end