CreateOrderViewController.h 856 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // CreateOrderViewController.h
  3. // RedAnt ERP Mobile
  4. //
  5. // 不支持backorder 时的下单界面
  6. // Created by Ray on 8/24/15.
  7. // Copyright (c) 2015 United Software Applications, Inc. All rights reserved.
  8. //
  9. #import <UIKit/UIKit.h>
  10. #import "CommonEditorViewController.h"
  11. @interface CreateOrderViewController : CommonEditorViewController
  12. @property bool have_tail;
  13. @property (strong,nonatomic) NSMutableDictionary* upparams;
  14. @property (strong,nonatomic) UIBarButtonItem *btnSubmitOrder;
  15. @property (nonatomic,assign) BOOL resumeOrder;///<恢复订单
  16. ///
  17. @property (nonatomic,strong) NSString* origincontent;
  18. #ifdef SCANNER_ORDER
  19. @property bool fail_submit;
  20. @property (nonatomic,strong) NSString* realuser;
  21. @property (nonatomic,strong) NSString* realpassword;
  22. #endif
  23. //@property (nonatomic , copy) void (^printPdfCallback)(NSString* url);
  24. @end