| 1234567891011121314151617181920212223242526272829303132 |
- //
- // CreateOrderViewController.h
- // RedAnt ERP Mobile
- //
- // 不支持backorder 时的下单界面
- // Created by Ray on 8/24/15.
- // Copyright (c) 2015 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "CommonEditorViewController.h"
- @interface CreateOrderViewController : CommonEditorViewController
- @property bool have_tail;
- @property (strong,nonatomic) NSMutableDictionary* upparams;
- @property (strong,nonatomic) UIBarButtonItem *btnSubmitOrder;
- @property (nonatomic,assign) BOOL resumeOrder;///<恢复订单
- ///
- @property (nonatomic,strong) NSString* origincontent;
- #ifdef SCANNER_ORDER
- @property bool fail_submit;
- @property (nonatomic,strong) NSString* realuser;
- @property (nonatomic,strong) NSString* realpassword;
- #endif
- //@property (nonatomic , copy) void (^printPdfCallback)(NSString* url);
- @end
|