| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- //
- // 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 bool is_shoporder;
- @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 (nonatomic,copy) NSString *erpSerialNo;
- @property (strong, nonatomic) IBOutlet UIActivityIndicatorView *mum;
- @property (strong, nonatomic) IBOutlet UILabel *label_net_err;
- @end
|