| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- //
- // OrderDetailViewController.h
- // RedAnt ERP Mobile
- //
- // Created by Ray on 8/28/15.
- // Copyright (c) 2015 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "ActiveViewController.h"
- @interface OrderDetailViewController : ActiveViewController<UITableViewDataSource,UITableViewDelegate,UIAlertViewDelegate,UIWebViewDelegate>
- @property (strong, nonatomic) IBOutlet UITableView *detailTable;
- @property (strong,nonatomic) NSMutableDictionary* content_data;
- @property (strong,nonatomic) NSString* orderid;
- @property (strong,nonatomic) NSString* order_code;
- @property int order_status;
- @property (strong,nonatomic) NSString* orderstatus;
- //@property bool isTempOrder;
- @property (strong, nonatomic) IBOutlet UIBarButtonItem *btnOpen;
- @property (strong, nonatomic) IBOutlet UIBarButtonItem *btnRelease;
- //@property (strong, nonatomic) IBOutlet UIBarButtonItem *btnCommit;
- @property (strong, nonatomic) IBOutlet UIBarButtonItem *btnSign;
- @property (strong, nonatomic) IBOutlet UIBarButtonItem *btnCopy;
- //@property (strong, nonatomic) IBOutlet UIBarButtonItem *btnSend;
- @property (strong, nonatomic) IBOutlet UIBarButtonItem *btnPDF;
- @property (nonatomic , copy) void (^selectOrder)(NSMutableDictionary* order_detail);
- @property bool showMore;
- @property float web_info_height;
- @property float web_moreinfo_height;
- @property (strong, nonatomic) IBOutlet UIActivityIndicatorView *mum;
- @property (strong, nonatomic) IBOutlet UILabel *label_net_err;
- @end
|