| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503 |
- //
- // RAOrderEditorViewController.m
- // iSales-NPD
- //
- // Created by Jack on 2017/11/7.
- // Copyright © 2017年 United Software Applications, Inc. All rights reserved.
- //
- #import "RAOrderEditorViewController.h"
- #import "AppDelegate.h"
- #import "MainViewController.h"
- #import "AddressEditorViewController.h"
- #import "CreditCardEditorViewController.h"
- #import "JKTimerManager.h"
- #import "RAOrderPreviewController.h"
- #import "CommonEditorCellModel.h"
- #define CLOSE_ACTION 567
- static const int totalPage = 3;
- @interface RAOrderEditorViewController ()
- @property (nonatomic,assign) BOOL isResume;///<恢复
- @property (nonatomic,assign) NSInteger userType;///<恢复使用
- @property (nonatomic,assign) NSInteger pageIndex;///<当前页码
- /**
- * 保存不同页码上行参数,最新的在最后。
- * 点击下一页时将当前页面上行参数写入数组尾
- * 退回到前一页后删除最后一个元素
- */
- @property (nonatomic,strong) NSMutableArray *pageUpParams;
- @property (nonatomic,strong) NSMutableArray *pageContentDownloadArray;///<保存不同页码content_data_download
- @property (nonatomic,strong) NSMutableArray *pageContentControlArray;///<保存不同页码content_data_control
- @property (nonatomic,strong) NSMutableArray *pageChangeDataArray;///<保存不同页码change_data
- @property (strong, nonatomic) IBOutlet UIToolbar *pageControlToolBar;
- @property (strong, nonatomic) IBOutlet UIBarButtonItem *frontBarItem;
- @property (strong, nonatomic) IBOutlet UIBarButtonItem *nextBarItem;
- @end
- @implementation RAOrderEditorViewController
- - (void)viewDidLoad {
- [super viewDidLoad];
- // Do any additional setup after loading the view.
-
- self.editable = YES;
-
- self.navigationController.navigationBarHidden = NO;
-
- UIBarButtonItem *closeButton = [[UIBarButtonItem alloc] initWithImage:[[UIImage imageNamed:@"close"] imageWithRenderingMode:UIImageRenderingModeAutomatic]
- style:UIBarButtonItemStylePlain
- target:self
- action:@selector(onCloseClick:)];
-
- self.navigationItem.leftBarButtonItem = closeButton;
-
-
- // UIBarButtonItem *savebtn = [[UIBarButtonItem alloc] initWithImage:[[UIImage imageNamed:@"save"] imageWithRenderingMode:UIImageRenderingModeAutomatic]
- // style:UIBarButtonItemStylePlain
- // target:self
- // action:@selector(onSaveClick:)];
- //
- // self.navigationItem.rightBarButtonItem = savebtn;
-
-
- [self setupPageControlBar];
- }
- -(void) viewWillAppear:(BOOL)animated
- {
- [super viewWillAppear:animated];
-
- [self start_urgency_timer];
-
- self.isResume = [[[NSUserDefaults standardUserDefaults] objectForKey:@"urgency_resume"] boolValue];
- self.userType = [[[NSUserDefaults standardUserDefaults] objectForKey:@"urgency_userType"] integerValue];
-
- if (!self.isResume) {
- // 正常情况
-
- } else {
- // 恢复
- [[NSUserDefaults standardUserDefaults] removeObjectForKey:@"urgency_resume"];
- [[NSUserDefaults standardUserDefaults] removeObjectForKey:@"urgency_userType"];
- }
- self.navigationController.navigationBarHidden=false;
-
- }
- - (void)didReceiveMemoryWarning {
- [super didReceiveMemoryWarning];
- // Dispose of any resources that can be recreated.
- }
- - (void)dealloc {
-
- AppDelegate *appDelegate = (AppDelegate *)[UIApplication sharedApplication].delegate;
-
- [appDelegate.urgencyDic removeObjectForKey:[NSString stringWithFormat:@"level_%d",self.level]];
- [appDelegate.urgencyDic setValue:[NSNumber numberWithInteger:self.level] forKey:@"count"];
-
- if (self.isResume && self.userType == USER_ROLE_CUSTOMER) {
- [self releaseOrderAfterSave];
- }
-
- }
- - (void)awakeFromNib {
- [super awakeFromNib];
- self.navigationItem.rightBarButtonItem = nil;
- }
- #pragma mark - Lazy Load
- - (NSMutableArray *)pageUpParams {
- if (!_pageUpParams) {
- _pageUpParams = [NSMutableArray array];
- }
- return _pageUpParams;
- }
- - (NSMutableArray *)pageContentDownloadArray {
- if (!_pageContentDownloadArray) {
- _pageContentDownloadArray = [NSMutableArray array];
- }
- return _pageContentDownloadArray;
- }
- - (NSMutableArray *)pageContentControlArray {
- if (!_pageContentControlArray) {
- _pageContentControlArray = [NSMutableArray array];
- }
- return _pageContentControlArray;
- }
- - (NSMutableArray *)pageChangeDataArray {
- if (!_pageChangeDataArray) {
- _pageChangeDataArray = [NSMutableArray array];
- }
- return _pageChangeDataArray;
- }
- #pragma mark - Private
- - (void)onCloseClick:(UIButton *)sender {
-
- AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
- if (self.resumeOrder) {
- [appDelegate.main_vc.navigationController popViewControllerAnimated:YES];
- return;
- }
-
-
- UIAlertView * alert = nil;
- if(appDelegate.order_status==0)
- {
- alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Choose your action", nil) message:NSLocalizedString(@"", nil) delegate:self cancelButtonTitle:NSLocalizedString(@"Cancel", nil) otherButtonTitles:NSLocalizedString(@"Switch to cart", nil),@"Switch to order history",NSLocalizedString(@"Close and cancel order", nil), nil];
-
- }
- else
- {
- alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Choose your action", nil) message:NSLocalizedString(@"", nil) delegate:self cancelButtonTitle:NSLocalizedString(@"Cancel", nil) otherButtonTitles:NSLocalizedString(@"Switch to cart", nil),@"Switch to order history",NSLocalizedString(@"Close and release order", nil), nil];
-
- }
-
- alert.tag = CLOSE_ACTION;
- [alert show];
- }
- - (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {
-
- if(alertView.tag == CLOSE_ACTION)
- {
- if(buttonIndex==1)
- {
-
- [self.navigationController popViewControllerAnimated:true];
- }
- if(buttonIndex==2)
- {
-
- [self.navigationController popViewControllerAnimated:false];
-
-
- AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
- //#ifdef RA_NOTIFICATION
- // [ActiveViewController Notify:@"OrderListViewController" Message:RA_NOTIFICATION_RELOAD_DATA];
- //#else
- // [((MainViewController*)appDelegate.main_vc) reloadOrder:true immediately:false];
- //#endif
- [((MainViewController*)appDelegate.main_vc) switchToOrder];
- }
- else if(buttonIndex==3)
- {
- // close order;
-
- AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
- UIAlertView * waitalert = [RAUtils waiting_alert:@"Please wait" title:@"Release Order"];
- dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
-
- NSDictionary* order_json = [RANetwork release_Order:appDelegate.order_code withScreen:nil];
-
- dispatch_async(dispatch_get_main_queue(), ^{
- [waitalert dismissWithClickedButtonIndex:0 animated:FALSE];
- if([[order_json valueForKey:@"result"] intValue]==2)
- {
- AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
-
- [appDelegate closeOrder];
-
- //#ifdef RA_NOTIFICATION
- // [ActiveViewController Notify:@"CartViewController" Message:RA_NOTIFICATION_RELOAD_DATA];
- //#else
- // [((MainViewController*)appDelegate.main_vc) reloadCart:true immediately:false];
- //#endif
- [((MainViewController*)appDelegate.main_vc) switchToHome];
-
- if([appDelegate.mode isEqualToString:@"TM"]&& appDelegate.submit_order_logout)
- {
- [((MainViewController*)appDelegate.main_vc) Loginout:false];
- }
-
- [self prepareReturn:nil];
-
-
- [self.navigationController popViewControllerAnimated:true];
-
- }
- else
- {
- [RAUtils message_alert:[order_json valueForKey:@"err_msg"] title:@"Open Order"controller:self] ;
- }
-
-
-
- });
- });
-
-
- }
- }
-
- }
- - (void)setupPageControlBar {
-
- // 1. 控制ToolBar Item显隐
- NSMutableArray *items = [self.pageControlToolBar.items mutableCopy];
- if (self.pageIndex == 0) {
- // 首页不需要前一页
- if ([items containsObject:self.frontBarItem]) {
- [items removeObject:self.frontBarItem];
- }
-
- } else if (self.pageIndex == totalPage - 1) {
- // // 尾页不需要后一页
- // if ([items containsObject:self.nextBarItem]) {
- // [items removeObject:self.nextBarItem];
- // }
-
- // 尾页点击Next进入Preview
- if (![items containsObject:self.nextBarItem]) {
- [items addObject:self.nextBarItem];
- }
-
- } else {
- // 中间显示前一页、后一页按钮
- if (![items containsObject:self.frontBarItem]) {
- [items insertObject:self.frontBarItem atIndex:0];
- }
- if (![items containsObject:self.nextBarItem]) {
- [items addObject:self.nextBarItem];
- }
-
-
- }
- self.pageControlToolBar.items = items;
- }
- - (NSString *)getValue:(NSString *)key from:(NSArray *)control {
- NSString *ret = nil;
- for(int i = 0; i < control.count; i++)
- {
- NSMutableArray* items=(NSMutableArray*)control[i];
- for(int j=0;j<items.count;j++)
- {
- NSDictionary* item=items[j];
- NSString* item_name=[item valueForKey:@"name"];
- if([item_name isEqualToString:key])
- {
- NSString* control = [item valueForKey:@"control"];
-
- if([control isEqualToString:@"enum"])
- {
- NSDictionary* cadedate = [item objectForKey:@"cadedate"];
- int cc = [[cadedate valueForKey:@"count"] intValue];
- for(int l=0;l<cc;l++)
- {
- NSDictionary* val_json=[cadedate objectForKey:[NSString stringWithFormat:@"val_%d",l]];
- if([[val_json valueForKey:@"check"]intValue]==1)
- return [val_json valueForKey:@"value_id"];
- }
-
- }
- else
-
- return [item valueForKey:@"value"];
- }
- }
- }
- return ret;
- }
- #pragma mark - BarItem Action
- - (IBAction)frontBarItemClick:(UIBarButtonItem *)sender {
- if (self.pageIndex == 0) {
- return;
- }
- // 结束编辑防止TextFiled在编辑中时返回,Table会Reload,此时TextFiled会结束编辑,但是Data已经改变。
- [[[UIApplication sharedApplication] keyWindow] endEditing:YES];
-
- self.pageIndex--;
-
- // 1.恢复当前页面数据
- NSMutableDictionary* upparams = [self.pageUpParams lastObject]; // 前页上行参数
- __weak typeof(self) weakSelf = self;
- [upparams enumerateKeysAndObjectsUsingBlock:^(id _Nonnull key, id _Nonnull obj, BOOL * _Nonnull stop) {
-
- [weakSelf.params removeObjectForKey:key];
-
- }];
- [self.pageUpParams removeLastObject];
- [self.params setObject:@(self.pageIndex) forKey:@"step"];
-
- self.content_data_control = [self.pageContentControlArray lastObject];
- [self.pageContentControlArray removeLastObject];
-
- self.content_data_download = [self.pageContentDownloadArray lastObject];
- [self.pageContentDownloadArray removeLastObject];
-
- self.changed_data = [self.pageChangeDataArray lastObject];
- [self.pageChangeDataArray removeLastObject];
-
- // 2.刷新页面
- [self.editorTable reloadData];
- self.navigationItem.title = [self.content_data_download valueForKey:@"title"] ;
-
- [self setupPageControlBar];
- }
- - (IBAction)nextBarItemClick:(UIBarButtonItem *)sender {
- if (self.pageIndex == totalPage) {
- return;
- }
- // 结束编辑防止TextFiled在编辑中时下一页,Table会Reload,此时TextFiled会结束编辑,但是Data已经改变。
- [[[UIApplication sharedApplication] keyWindow] endEditing:YES];
-
- NSMutableDictionary* upparams = [self check_cancommit:true]; // 当前页上行参数
- if(self.cancommit==false)
- return;
- __weak typeof(self) weakSelf = self;
- if (self.pageIndex == totalPage - 1) {
-
- // 在此设置Step 避免返回后index不正确。
- [upparams setObject:@(self.pageIndex + 1) forKey:@"step"];
- // 尾页 进入Preview
- [upparams enumerateKeysAndObjectsUsingBlock:^(id _Nonnull key, id _Nonnull obj, BOOL * _Nonnull stop) {
-
- [weakSelf.params setObject:obj forKey:key];
-
- }];
-
- RAOrderPreviewController * orderinfoVC =[ self.storyboard instantiateViewControllerWithIdentifier:@"RAOrderPreviewController"];
-
- orderinfoVC.disable_dropdown_refresh=true;
- orderinfoVC.url_type = URL_REMOTE;
- orderinfoVC.request_url=URL_BACK_ORDER_PREVIEW;
-
- orderinfoVC.params = self.params;
-
- orderinfoVC.delegate=self.delegate;
- [self.navigationController pushViewController:orderinfoVC animated:true];
-
- return;
- }
- self.pageIndex++;
- // 请求页码
- [upparams setObject:@(self.pageIndex) forKey:@"step"];
-
- // 1.保存当前页面数据
- if (upparams == nil) {
- upparams = [NSMutableDictionary dictionary];
- }
- [self.pageUpParams addObject:upparams];
- if (self.content_data_control == nil) {
- self.content_data_control = [NSMutableArray array];
- }
- [self.pageContentControlArray addObject:self.content_data_control];
- if (self.content_data_download == nil) {
- self.content_data_download = [NSMutableDictionary dictionary];
- }
- [self.pageContentDownloadArray addObject:self.content_data_download];
-
- if (self.changed_data == nil) {
- self.changed_data = [NSMutableDictionary dictionary];
- }
- [self.pageChangeDataArray addObject:self.changed_data];
-
- // 2.请求下一页数据
- // 当前页及之前所有页参数均上传
- [upparams enumerateKeysAndObjectsUsingBlock:^(id _Nonnull key, id _Nonnull obj, BOOL * _Nonnull stop) {
-
- [weakSelf.params setObject:obj forKey:key];
-
- }];
-
- [self setupPageControlBar];
- self.content_data_download = [NSMutableDictionary dictionary];
- [self refresh:nil];
- }
- #pragma mark - Override
- - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
-
- UITableViewCell *cell = [super tableView:tableView cellForRowAtIndexPath:indexPath];
-
- NSDictionary* item_json =((NSMutableArray*)self.content_data_control[indexPath.section])[indexPath.row];
- NSString* control = [item_json valueForKey:@"control"];
-
- if([control isEqualToString:@"model"]) {
- ((CommonEditorCellModel *)cell).avalibilityLabel.hidden = YES;
- }
-
- return cell;
-
- }
- - (void)download_success {
-
- NSString *title = [self.content_data_download objectForKey:@"title"];
- self.title = title;
-
- [self setupPageControlBar];
-
- // 用于处理不同child,在成功去的数据后,需要附加的操作。
-
- self.have_tail=[[self.content_data_download valueForKey:@"has_reItem"] boolValue];
-
- NSString* order_customerid=[self getValue:@"customer_cid"];
-
-
- AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
- appDelegate.order_customer_id = order_customerid;
-
- }
- - (void)download_failed {
-
- // 恢复为前一页
- [self frontBarItemClick:nil];
-
- }
- -(NSString*) getValue:(NSString*)name
- {
-
- if (self.pageContentControlArray.count) {
- NSString* ret=nil;
- for (NSInteger i = self.pageContentControlArray.count - 1; i >= 0 ; i--) {
- NSArray *control = [self.pageContentControlArray objectAtIndex:i];
- ret = [self getValue:name from:control];
- if (ret != nil) {
- return ret;
- }
- }
- return ret;
- } else {
- return [self getValue:name from:self.content_data_control];
- }
-
-
- }
- #pragma mark - Place Order
- - (void)alertMessage:(NSString *)msg {
- if (notifyMe_switch) {
-
- if ([self.class_name isEqualToString:@"RAOrderEditorViewController"]) {
-
- NSString *err_msg = msg;
- UIAlertController *alertVC = [UIAlertController alertControllerWithTitle:@"Attention!!" message:err_msg preferredStyle:UIAlertControllerStyleAlert];
- __weak typeof(self) weakself = self;
- UIAlertAction *action = [UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
-
- [weakself.navigationController popViewControllerAnimated:YES];
-
- }];
- [alertVC addAction:action];
-
- [self presentViewController:alertVC animated:YES completion:nil];
-
- } else {
-
- [RAUtils message_alert:msg title:nil controller:self] ;
- }
-
- } else {
-
- [RAUtils message_alert:msg title:nil controller:self] ;
- }
- }
- -(void) commonAction:(NSString *)value index:(NSIndexPath*) indexPath data:(NSMutableDictionary*) item_json
- {
- AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
- if([value isEqualToString:@"new_addr"])
- {
- AddressEditorViewController * addressVC =[ self.storyboard instantiateViewControllerWithIdentifier:@"AddressEditorViewController"];
-
- addressVC.url_type = URL_REMOTE;
-
- addressVC.request_url=URL_ADDRESS_EDOTOR;
-
- NSMutableDictionary * params= [[NSMutableDictionary alloc] init];
-
- addressVC.params = params;
-
-
- addressVC.delegate = self;
-
- addressVC.from = indexPath;
- // orderinfoVC.params = params;
-
- [self.navigationController pushViewController:addressVC animated:true];
-
- }else if([value isEqualToString:@"credit_card"])
- {
- CreditCardEditorViewController * cardVC =[ self.storyboard instantiateViewControllerWithIdentifier:@"CreditCardEditorViewController"];
-
-
- NSDictionary *data = [item_json objectForKey:@"data"];
-
- if(data!=nil)
- {
-
- cardVC.content_data_download = [data mutableCopy];
- cardVC.url_type = URL_NONE;
-
- cardVC.request_url=nil;
- }
- else
- {
- cardVC.url_type = URL_REMOTE;
-
- cardVC.request_url=URL_CREDITCARD_EDOTOR;
- }
- NSMutableDictionary * params= [[NSMutableDictionary alloc] init];
-
- params[@"orderCode"]=appDelegate.order_code;
- cardVC.params = params;
-
- cardVC.delegate = self;
-
- cardVC.from = indexPath;
-
-
- [self.navigationController pushViewController:cardVC animated:true];
-
- }
- else if([value isEqualToString:@"Sales_Order_Freight_Bill_To"])
- {
-
-
- ContactListViewController* cvc = [self.storyboard instantiateViewControllerWithIdentifier:@"ContactListViewController" ];
- cvc.showNavibar = true;
- cvc.contact_type = value;
- __weak typeof(self) weakself = self;
- cvc.returnValue = ^(NSMutableDictionary* value,NSIndexPath* source){
-
- [weakself handle_action_return:value indexPath:indexPath action:ACTION_FILL_SECTION];
- };
-
-
-
- [self.navigationController pushViewController:cvc animated:true];
-
- }
- else if([value isEqualToString:@"Sales_Order_Ship_From"])
- {
-
-
- ContactListViewController* cvc = [self.storyboard instantiateViewControllerWithIdentifier:@"ContactListViewController" ];
- cvc.showNavibar = true;
- cvc.contact_type = value;
- __weak typeof(self) weakself = self;
- cvc.returnValue = ^(NSMutableDictionary* value,NSIndexPath* source){
-
- [weakself handle_action_return:value indexPath:indexPath action:ACTION_FILL_SECTION];
- };
-
-
-
- [self.navigationController pushViewController:cvc animated:true];
-
- }
- else if([value isEqualToString:@"Sales_Order_Customer"])
- {
-
-
- ContactListViewController* cvc = [self.storyboard instantiateViewControllerWithIdentifier:@"ContactListViewController" ];
-
- cvc.contact_type = value;
- cvc.showNavibar = true;
- __weak typeof(self) weakself = self;
- cvc.returnValue = ^(NSMutableDictionary* value,NSIndexPath* source){
-
- [weakself handle_action_return:value indexPath:indexPath action:ACTION_FILL_SECTION];
- };
-
-
-
- [self.navigationController pushViewController:cvc animated:true];
-
- }
- else if([value isEqualToString:@"Sales_Order_Merchandise_Bill_To"])
- {
-
-
- ContactListViewController* cvc = [self.storyboard instantiateViewControllerWithIdentifier:@"ContactListViewController" ];
- cvc.showNavibar = true;
- cvc.contact_type = value;
- __weak typeof(self) weakself = self;
- cvc.returnValue = ^(NSMutableDictionary* value,NSIndexPath* source){
-
- [weakself handle_action_return:value indexPath:indexPath action:ACTION_FILL_SECTION];
- };
-
-
-
- [self.navigationController pushViewController:cvc animated:true];
-
- }
- else if([value isEqualToString:@"Contact_Return_To"])
- {
-
-
- ContactListViewController* cvc = [self.storyboard instantiateViewControllerWithIdentifier:@"ContactListViewController" ];
- cvc.showNavibar = true;
- cvc.contact_type = value;
- __weak typeof(self) weakself = self;
- cvc.returnValue = ^(NSMutableDictionary* value,NSIndexPath* source){
-
- [weakself handle_action_return:value indexPath:indexPath action:ACTION_FILL_SECTION];
-
- };
-
-
-
- [self.navigationController pushViewController:cvc animated:true];
-
- }
- else if([value isEqualToString:@"Sales_Order_Ship_To"])
- {
-
-
- ContactListViewController* cvc = [self.storyboard instantiateViewControllerWithIdentifier:@"ContactListViewController" ];
- cvc.showNavibar = true;
- cvc.contact_type = value;
- __weak typeof(self) weakself = self;
- cvc.returnValue = ^(NSMutableDictionary* value,NSIndexPath* source){
-
- [weakself handle_action_return:value indexPath:indexPath action:ACTION_FILL_SECTION];
- };
-
-
-
- [self.navigationController pushViewController:cvc animated:true];
-
- }
-
- }
- - (UIView *)createDemoView:(NSString*) msg
- {
- UIView *demoView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 290, 200)];
-
- // UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(10, 10, 270, 180)];
- // [imageView setImage:[UIImage imageNamed:@"demo"]];
-
- UILabel *titleLabel = [[UILabel alloc] initWithFrame:CGRectMake(10, 10, 270, 10)];
- titleLabel.font = [UIFont boldSystemFontOfSize:20];
- titleLabel.text=@"Order Submission";
- titleLabel.numberOfLines = 0;
- titleLabel.lineBreakMode =NSLineBreakByWordWrapping;
- // titleLabel.textAlignment = NSTextAlignmentRight;
- titleLabel.textAlignment = NSTextAlignmentCenter;
- CGSize constraintkey = CGSizeMake(270, 20000.0f);//key label width is 40% cell width;
- CGSize sizetitle = [titleLabel.text=@"Order Submission" sizeWithFont:[UIFont systemFontOfSize:20.0] constrainedToSize:constraintkey lineBreakMode:NSLineBreakByWordWrapping];
-
- //[titleLabel sizeToFit];
- // titleLabel.center.x = demoView.center.x;
- titleLabel.frame = CGRectMake(10, 10, 270, sizetitle.height);
- [demoView addSubview:titleLabel];
-
- UILabel *lineLabel = [[UILabel alloc] initWithFrame:CGRectMake(15, titleLabel.frame.origin.y+ titleLabel.frame.size.height+20, 260, 10)];
- lineLabel.font = [UIFont systemFontOfSize:17];
- lineLabel.text=msg;
- lineLabel.numberOfLines = 0;
- lineLabel.lineBreakMode =NSLineBreakByWordWrapping;
-
- CGSize sizemsg = [msg sizeWithFont:[UIFont systemFontOfSize:17.0] constrainedToSize:constraintkey lineBreakMode:NSLineBreakByWordWrapping];
-
- lineLabel.frame = CGRectMake(15, titleLabel.frame.origin.y+ titleLabel.frame.size.height+20, 260, sizemsg.height);
- //[lineLabel sizeToFit];
-
- [demoView addSubview:lineLabel];
- demoView.frame = CGRectMake(0, 0, 290, lineLabel.frame.origin.y+lineLabel.frame.size.height+25);
- return demoView;
- }
- -(float) getprice:(NSString*) name section :(long) index
- {
- NSMutableDictionary* section_json=nil;
- section_json = [[self.content_data_download objectForKey:[NSString stringWithFormat:@"section_%ld",index ]] mutableCopy];
- int count=0;
-
- count=[[section_json valueForKey:@"count"] intValue];
-
- for(int i=0;i<count;i++)
- {
- NSDictionary * olditem=[[section_json objectForKey:[NSString stringWithFormat:@"item_%d",i ]] mutableCopy];
- if([[olditem valueForKey:@"name"] isEqualToString:name])
- {
- return [[olditem valueForKey:@"value"] floatValue];
-
- }
-
- }
-
- return 0;
- }
- - (void)textFieldDidEndEditing:(UITextField *)textField
- {
-
- // [super textFieldDidEndEditing:textField];
-
- UITableViewCell *cell = (UITableViewCell *) textField.superview.superview;
- NSIndexPath * indexPath = [self.editorTable indexPathForCell:cell];
-
- // table滑动后,cell可能会滚出table visible范围,此时indexPath为nil
- if (indexPath == nil) {
- indexPath = self.lastedit_from;
- }
-
- // 避免提前将lastedit_from置空
- [super textFieldDidEndEditing:textField];
-
- NSMutableDictionary* section_json=nil;
-
-
- // DebugLog(@"endedit %d_%d",indexPath.section,indexPath.row);
- NSMutableDictionary* item_json =[((NSMutableArray*)self.content_data_control[indexPath.section])[indexPath.row] mutableCopy];
-
-
- NSString* name = [item_json valueForKey:@"name"];
-
- if([name isEqualToString:@"shipping"]|| [name isEqualToString:@"handling_fee_value"]||[name isEqualToString:@"lift_gate_value"]||[name isEqualToString:@"tax_percentage"])
- {
- float shipping = [self getprice:@"shipping" section:indexPath.section];
- float paymentsAndCredits = [self getprice:@"paymentsAndCredits" section:indexPath.section];
- float handling_fee_value = [self getprice:@"handling_fee_value" section:indexPath.section];
- float lift_gate =[self getprice:@"lift_gate_value" section:indexPath.section];
- float tax = [self getprice:@"tax_percentage" section:indexPath.section]/100.0*paymentsAndCredits;
- float totalprice=shipping+paymentsAndCredits+handling_fee_value+lift_gate+tax;
-
- section_json = [[self.content_data_download objectForKey:[NSString stringWithFormat:@"section_%ld",(long)indexPath.section ]] mutableCopy];
- int count=0;
-
- count=[[section_json valueForKey:@"count"] intValue];
-
- int total_row_idx=-1;
-
- for(int i=0;i<count;i++)
- {
- NSDictionary * olditem=[[section_json objectForKey:[NSString stringWithFormat:@"item_%d",i ]] mutableCopy];
- if([[olditem valueForKey:@"name"] isEqualToString:@"totalPrice" ] || [[olditem valueForKey:@"name"] isEqualToString:@"totalPrice_a" ])
- {
- [olditem setValue:[NSString stringWithFormat:@"%.2f",totalprice] forKey:@"value"];
- [olditem setValue:@"true" forKey:@"dirty"];
- [section_json setObject:olditem forKey:[NSString stringWithFormat:@"item_%d",i ]];
-
- total_row_idx=i;
-
- }
-
- }
-
- [self.content_data_download setObject:section_json forKey:[NSString stringWithFormat:@"section_%ld",(long)indexPath.section ]];
-
-
- self.content_data_control = [self translate_json:self.content_data_download changed: self.changed_data];
-
-
- if(total_row_idx>=0)
- {
-
-
-
- NSUInteger newIndex[] = {indexPath.section, total_row_idx};
- NSIndexPath *newPath = [[NSIndexPath alloc] initWithIndexes:newIndex length:2];
- // DebugLog(@"before refresh %@",NSStringFromCGSize(self.editorTable.contentSize));
- [self.editorTable reloadRowsAtIndexPaths:@[newPath]withRowAnimation:UITableViewRowAnimationMiddle];
- }
-
- }
- }
- //
- //- (IBAction)onSaveClick:(id)sender {
- //
- // id a = nil;
- // NSMutableArray *arr = [NSMutableArray array];
- // [arr addObject:a];
- //
- // [self.lastedit endEditing:true];
- // [self.lasttextview endEditing:true];
- //
- // NSMutableDictionary* upparams = [self check_cancommit:false];
- //
- // if([upparams[@"shipping"] isEqualToString:@"Shipping To Be Quoted"]||[upparams[@"shipping"] isEqualToString:@"To Be Quoted"])
- // upparams[@"shipping"] = nil;
- //
- //
- // UIAlertView * waitalert = [RAUtils waiting_alert:@"Please wait" title:@"Saving Order"];
- // dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
- //
- // NSDictionary* editor_json = [RANetwork save_Order:upparams];
- //
- // dispatch_async(dispatch_get_main_queue(), ^{
- // [waitalert dismissWithClickedButtonIndex:0 animated:FALSE];
- //
- //
- // if([[editor_json valueForKey:@"result"] intValue]==2)
- // {
- //
- // AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
- //
- // NSMutableDictionary * customerInfo=[self create_cusromer_info_from_table];
- //
- // if(appDelegate.user_type ==USER_ROLE_EMPLOYEE)
- // {
- // appDelegate.customerInfo = customerInfo;
- // appDelegate.contact_id = [customerInfo valueForKey:@"customer_cid"];
- // }
- // NSString *msg = nil;
- // if ([editor_json objectForKey:@"so#"]) {
- // msg = [@"SO#:" stringByAppendingString:[editor_json objectForKey:@"so#"]];
- // }
- // [RAUtils message_alert:msg title:@"Order Saved" controller:self] ;
- //
- // if([appDelegate.mode isEqualToString:@"TM"]&& appDelegate.save_order_logout && appDelegate.user_type ==USER_ROLE_EMPLOYEE)
- // {
- // [((MainViewController*)appDelegate.main_vc) Loginout:false];
- // [self prepareReturn:nil];
- // [self.navigationController popViewControllerAnimated:true];
- // }
- //
- // if (appDelegate.user_type == USER_ROLE_CUSTOMER && appDelegate.customer_type == CustomerTypeStore) {
- //
- // if (![Singleton sharedInstance].currentOrderIsMerged) {
- // [self releaseOrderAfterSave];
- // }
- //
- //
- // }
- //
- // }
- // else
- // {
- // [RAUtils message_alert:[editor_json valueForKey:@"err_msg"] title:@"Save Order" controller:self] ;
- // }
- //
- // });
- // });
- //
- //}
- - (void)releaseOrderAfterSave {
- AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
-
- [RANetwork release_Order:appDelegate.order_code withScreen:nil];
-
- [appDelegate closeOrder];
- [appDelegate SetSo:nil];
- appDelegate.cart_count=0;
- [appDelegate update_count_mark];
- [((MainViewController*)appDelegate.main_vc) switchToOrder];
-
- [self prepareReturn:nil];
- [self.navigationController popToRootViewControllerAnimated:false];
-
- }
- -(NSString* )create_customer_ext:(NSDictionary*)customerinfo
- {
- NSString* ret=nil;
- NSString* customer_address1= [customerinfo valueForKey:@"customer_address1"];
- NSString* customer_address2= [customerinfo valueForKey:@"customer_address2"];
- NSString* customer_address3= [customerinfo valueForKey:@"customer_address3"];
- NSString* customer_address4= [customerinfo valueForKey:@"customer_address4"];
-
- NSMutableArray* arraddr = [[NSMutableArray alloc] init];
- if(customer_address1.length>0)
- [arraddr addObject:customer_address1];
- if(customer_address2.length>0)
- [arraddr addObject:customer_address2];
- if(customer_address3.length>0)
- [arraddr addObject:customer_address3];
- if(customer_address4.length>0)
- [arraddr addObject:customer_address4];
- NSString *addr_string = [arraddr componentsJoinedByString:@"\r\n"];
-
-
- NSString* customer_city= [customerinfo valueForKey:@"customer_city"];
- NSString* customer_country= [customerinfo valueForKey:@"customer_country"];
- NSString* customer_zipcode= [customerinfo valueForKey:@"customer_zipcode"];
- NSString* customer_state= [customerinfo valueForKey:@"customer_state"];
-
- NSMutableArray* arrcty = [[NSMutableArray alloc] init];
- if(customer_city.length>0)
- [arrcty addObject:customer_city];
- if(customer_state.length>0)
- [arrcty addObject:customer_state];
- if(customer_zipcode.length>0)
- [arrcty addObject:customer_zipcode];
- if(customer_country.length>0)
- [arrcty addObject:customer_country];
- NSString *cty_string = [arrcty componentsJoinedByString:@", "];
-
-
- NSMutableArray* arrext = [[NSMutableArray alloc] init];
- if(addr_string.length>0)
- [arrext addObject:addr_string];
- if(cty_string.length>0)
- [arrext addObject:cty_string];
-
- ret = [arrext componentsJoinedByString:@"\r\n"];
-
-
- return ret;
- }
- -(NSMutableDictionary*)create_cusromer_info_from_table
- {
-
- AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
-
- NSMutableDictionary* ret= [appDelegate.customerInfo mutableCopy] ;
-
- [ret setValue:[self getValue:@"customer_country"] forKey:@"customer_country"];
- [ret setValue:[self getValue:@"customer_phone"] forKey:@"customer_phone"];
- [ret setValue:[self getValue:@"customer_email"] forKey:@"customer_email"];
- [ret setValue:[self getValue:@"customer_name"] forKey:@"customer_name"];
- [ret setValue:[self getValue:@"customer_address4"] forKey:@"customer_address4"];
- [ret setValue:[self getValue:@"customer_address3"] forKey:@"customer_address3"];
- [ret setValue:[self getValue:@"customer_address2"] forKey:@"customer_address2"];
- [ret setValue:[self getValue:@"customer_address1"] forKey:@"customer_address1"];
- [ret setValue:[self getValue:@"customer_zipcode"] forKey:@"customer_zipcode"];
- [ret setValue:[self getValue:@"customer_city"] forKey:@"customer_city"];
- [ret setValue:[self getValue:@"customer_state"] forKey:@"customer_state"];
- [ret setValue:[self getValue:@"customer_cid"] forKey:@"customer_cid"];
- [ret setValue:[self getValue:@"customer_state"] forKey:@"customer_state"];
- [ret setValue:[self getValue:@"customer_contact"] forKey:@"customer_contact"];
- [ret setValue:[self getValue:@"customer_fax"] forKey:@"customer_fax"];
-
- NSString * firstname =nil;
-
- NSString* lastname = nil;
- NSString* contact_name = [self getValue:@"customer_contact"];
- if(contact_name!=nil)
- {
- NSArray *_arr = [contact_name componentsSeparatedByString:NSLocalizedString(@" ", nil)];
-
-
-
- if(_arr.count>=1)
- {
- firstname =_arr[0];
- if(_arr.count>1)
- {
-
- lastname=[[_arr subarrayWithRange:NSMakeRange(1, _arr.count-1)] componentsJoinedByString:@" "];
- }
- }
- }
- [ret setValue:firstname forKey:@"customer_first_name"];
- [ret setValue:lastname forKey:@"customer_last_name"];
-
- // [ret setValue:[self create_customer_ext:ret] forKey:@"customer_contact_ext"];
-
- return ret;
- }
- -(NSMutableDictionary*)create_value_map:(NSDictionary*)key_map
- {
- NSMutableDictionary* ret= [[NSMutableDictionary alloc] init];
- NSArray *keys= [key_map allKeys];
- //遍历keys
- for(int i=0;i<[keys count];i++)
- {
- //得到当前key
- NSString *key=[keys objectAtIndex:i];
- //如果key不是pic,说明value是字符类型,比如name:Boris
- NSString* valuefrom = [key_map valueForKey:key];
-
- if(valuefrom.length==0)
- continue;
- NSString* value=[self getValue:valuefrom];
-
- [ret setValue:value forKey:valuefrom];
- }
- NSDictionary * customerinfo =[self create_cusromer_info_from_table];
- [ret setValue:[self create_customer_ext:customerinfo] forKey:@"customer_contact_ext"];
- [ret setValue:customerinfo[@"customer_first_name"] forKey:@"customer_first_name"];
- [ret setValue:customerinfo[@"customer_last_name"] forKey:@"customer_last_name"];
- return ret;
- }
- #pragma mark - multi_action sub action clicked
- - (void)MActionClicked:(UIButton *)sender {
-
- UITableViewCell *cell = (UITableViewCell *) sender.superview.superview;
- NSIndexPath * indexPath = [self.editorTable indexPathForCell:cell];
- int refresh =0;
- NSMutableDictionary* section_json=nil;
-
- NSMutableDictionary* item_json =[((NSMutableArray*)self.content_data_control[indexPath.section])[indexPath.row] mutableCopy];
- NSString* subid=[item_json valueForKey:@"subid"];
- NSString* refresh_trigger = [item_json valueForKey:@"name"];
- NSDictionary* sub_action = [item_json objectForKey:[NSString stringWithFormat:@"item_%ld",(long)sender.tag]];
- NSString* type = [sub_action valueForKey:@"type"];
- if([type isEqualToString:@"pull"])
- {
-
- [self.lastedit endEditing:true];
-
- refresh = [[sub_action valueForKey:@"refresh"] intValue];
- NSDictionary* keymap= [sub_action objectForKey:@"key_map"];
-
- NSMutableDictionary* value=[self create_value_map:keymap];
-
- if(subid==nil)
- {
- NSDictionary* jsonmap=[sub_action valueForKey:@"key_map"];
- section_json = [[self.content_data_download objectForKey:[NSString stringWithFormat:@"section_%ld",(long)indexPath.section ]] mutableCopy];
- int icount=[[section_json valueForKey:@"count"] intValue];
- for (int ic=0;ic<icount;ic++)
- {
- NSMutableDictionary* modify_item= [[section_json objectForKey:[NSString stringWithFormat:@"item_%d",ic ]] mutableCopy];
-
-
- NSString* mapto = [modify_item valueForKey:@"name"];
- if(mapto.length==0)
- continue;
- NSString* valuefrom= [jsonmap valueForKey:[modify_item valueForKey:@"name"]];
- if(valuefrom==nil)
- continue;
- NSString* valuestr=[value valueForKey:valuefrom];
-
-
-
-
-
- // valuestr = [self getValue:valuefrom];
- if(true)
- {
- if(valuestr.length>0)
- [modify_item setValue:valuestr forKey:@"value"];
- else
- [modify_item setValue:@"" forKey:@"value"];
- [modify_item setValue:@"true" forKey:@"dirty"];
- [section_json setObject:modify_item forKey:[NSString stringWithFormat:@"item_%d",ic ]];
- }
- }
- }
- else
- {
-
- NSArray* idarr=[subid componentsSeparatedByString:@"_"];
- int section = [(NSString*)idarr[0] intValue];
- int item=[(NSString*)idarr[1] intValue];
- NSDictionary* jsonmap=[sub_action valueForKey:@"key_map"];
-
- section_json = [[self.content_data_download objectForKey:[NSString stringWithFormat:@"section_%d", section]] mutableCopy];
- NSMutableDictionary * olditem=[[section_json objectForKey:[NSString stringWithFormat:@"item_%d",item ]] mutableCopy];
-
- NSString* control_type = [olditem valueForKey:@"control"];
- if([control_type isEqualToString:@"switch"])
- olditem= [self fill_switch_subitem:olditem subid:nil source:value mapping:jsonmap ];
- else if([control_type isEqualToString:@"enum"])
- {
- olditem= [self fill_enum_subitem:olditem subid:nil source:value mapping:jsonmap ];
-
- }
- else
- {
- [RAUtils alert_view:@"" title:@"not impl"];
- }
-
- [olditem setValue:@"true" forKey:@"dirty"];
- [section_json setObject:olditem forKey:[NSString stringWithFormat:@"item_%d",item ]];
-
- }
- [self.content_data_download setObject:section_json forKey:[NSString stringWithFormat:@"section_%ld",(long)indexPath.section ]];
- self.content_data_control = [self translate_json:self.content_data_download changed:self.changed_data];
-
-
- if(refresh==1)
- {
-
- // if(restore_json!=nil)
- // {
- // int rc=[[restore_json valueForKey:@"count"] intValue];
- // for(int ir=0;ir<rc;ir++)
- // {
- // NSString* name = [restore_json valueForKey:[NSString stringWithFormat:@"item_%d",ir]];
- //
- //
- // int section_count=[[self.content_data_download valueForKey:@"section_count"] intValue];
- // for(int i=0;i<section_count;i++)
- // {
- // NSMutableDictionary * sectionjson = [[self.content_data_download objectForKey:[NSString stringWithFormat:@"section_%d",i ]] mutableCopy];
- // // NSMutableDictionary * to_sectionjson = [[to objectForKey:[NSString stringWithFormat:@"section_%d",i ]] mutableCopy];
- // int item_count = [[sectionjson valueForKey:@"count"] intValue];
- // for(int j=0;j<item_count;j++)
- // {
- // NSMutableDictionary * itemjson=[[sectionjson objectForKey:[NSString stringWithFormat:@"item_%d",j ]] mutableCopy];
- // // NSMutableDictionary * to_itemjson=[[to_sectionjson objectForKey:[NSString stringWithFormat:@"item_%d",j ]] mutableCopy];
- //
- // if([[itemjson valueForKey:@"name"] isEqualToString:name])
- // {
- // [itemjson removeObjectForKey:@"dirty"];
- // [sectionjson setObject:itemjson forKey:[NSString stringWithFormat:@"item_%d",j ]];
- // }
- //
- // }
- // [self.content_data_download setObject:sectionjson forKey:[NSString stringWithFormat:@"section_%d",i ]];
- // }
- //
- //
- // }
- //
- // }
- [self refresh:refresh_trigger] ;
- return ;
- }
-
- // DebugLog(@"CONTENT translate:%@",[iSalesNetwork DataTOjsonString:self.content_data]);
- [self.editorTable reloadData ];
-
-
- }
- else
- {
- AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
- NSDictionary * item_json = sub_action;
- NSString* value = [item_json valueForKey:@"value"];
- if([value isEqualToString:@"new_addr"])
- {
- AddressEditorViewController * addressVC =[ self.storyboard instantiateViewControllerWithIdentifier:@"AddressEditorViewController"];
-
- addressVC.url_type = URL_REMOTE;
-
- addressVC.request_url=URL_ADDRESS_EDOTOR;
-
-
-
-
- NSMutableDictionary * params= [[NSMutableDictionary alloc] init];
- // NSString * string = [checked componentsJoinedByString:@","];
- // [params setValue:string forKey:@"cart2Checkbox"];
-
-
- params[@"is_subaction"]=@"true";
- params[@"subaction_tag"]= [NSString stringWithFormat:@"%ld",(long)sender.tag];
- addressVC.params = params;
-
-
- addressVC.delegate = self;
-
- addressVC.from = indexPath;
- // orderinfoVC.params = params;
-
- [self.navigationController pushViewController:addressVC animated:true];
-
- }else if([value isEqualToString:@"credit_card"])
- {
- CreditCardEditorViewController * cardVC =[ self.storyboard instantiateViewControllerWithIdentifier:@"CreditCardEditorViewController"];
-
-
- NSDictionary *data = [item_json objectForKey:@"data"];
-
- if(data!=nil)
- {
-
- cardVC.content_data_download = [data mutableCopy];
- cardVC.url_type = URL_NONE;
-
- cardVC.request_url=nil;
- }
- else
- {
- cardVC.url_type = URL_REMOTE;
-
- cardVC.request_url=URL_CREDITCARD_EDOTOR;
- }
- NSMutableDictionary * params= [[NSMutableDictionary alloc] init];
-
- params[@"orderCode"]=appDelegate.order_code;
-
- params[@"is_subaction"]=@"true";
- params[@"subaction_tag"]= [NSString stringWithFormat:@"%ld",(long)sender.tag];
- cardVC.params = params;
-
- cardVC.delegate = self;
-
- cardVC.from = indexPath;
-
-
- // orderinfoVC.params = params;
-
- [self.navigationController pushViewController:cardVC animated:true];
-
- }
- else if([value isEqualToString:@"Sales_Order_Freight_Bill_To"])
- {
-
-
- ContactListViewController* cvc = [self.storyboard instantiateViewControllerWithIdentifier:@"ContactListViewController" ];
- cvc.showNavibar = true;
- cvc.contact_type = value;
- cvc.is_subaction = @"true";
- cvc.subaction_tag =[NSString stringWithFormat:@"%ld",(long)sender.tag];
-
-
- cvc.returnValue = ^(NSMutableDictionary* value,NSIndexPath* source){
-
- [self handle_action_return:value indexPath:indexPath action:ACTION_FILL_SECTION];
-
- //
- // if(self.returnValue)
- // self.returnValue(value);
- };
-
-
-
- [self.navigationController pushViewController:cvc animated:true];
-
- }
- else if([value isEqualToString:@"Sales_Order_Ship_From"])
- {
-
-
- ContactListViewController* cvc = [self.storyboard instantiateViewControllerWithIdentifier:@"ContactListViewController" ];
- cvc.showNavibar = true;
- cvc.contact_type = value;
- cvc.is_subaction = @"true";
- cvc.subaction_tag =[NSString stringWithFormat:@"%ld",(long)sender.tag];
-
- cvc.returnValue = ^(NSMutableDictionary* value,NSIndexPath* source){
-
- [self handle_action_return:value indexPath:indexPath action:ACTION_FILL_SECTION];
-
- //
- // if(self.returnValue)
- // self.returnValue(value);
- };
-
-
-
- [self.navigationController pushViewController:cvc animated:true];
-
- }
- else if([value isEqualToString:@"Sales_Order_Customer"])
- {
-
-
- ContactListViewController* cvc = [self.storyboard instantiateViewControllerWithIdentifier:@"ContactListViewController" ];
- cvc.is_subaction = @"true";
- cvc.subaction_tag =[NSString stringWithFormat:@"%ld",(long)sender.tag];
- cvc.showNavibar = true;
- cvc.contact_type = value;
- __weak typeof(self) weakself = self;
- cvc.returnValue = ^(NSMutableDictionary* value,NSIndexPath* source){
-
- [weakself handle_action_return:value indexPath:indexPath action:ACTION_FILL_SECTION];
-
- //
- // if(self.returnValue)
- // self.returnValue(value);
- };
-
-
-
- [self.navigationController pushViewController:cvc animated:true];
-
- }
- else if([value isEqualToString:@"Sales_Order_Merchandise_Bill_To"])
- {
-
-
- ContactListViewController* cvc = [self.storyboard instantiateViewControllerWithIdentifier:@"ContactListViewController" ];
- cvc.showNavibar = true;
- cvc.contact_type = value;
- cvc.is_subaction = @"true";
- cvc.subaction_tag =[NSString stringWithFormat:@"%ld",(long)sender.tag];
- __weak typeof(self) weakself = self;
- cvc.returnValue = ^(NSMutableDictionary* value,NSIndexPath* source){
-
- [weakself handle_action_return:value indexPath:indexPath action:ACTION_FILL_SECTION];
-
- //
- // if(self.returnValue)
- // self.returnValue(value);
- };
-
-
-
- [self.navigationController pushViewController:cvc animated:true];
-
- }
- else if([value isEqualToString:@"Contact_Return_To"])
- {
-
-
- ContactListViewController* cvc = [self.storyboard instantiateViewControllerWithIdentifier:@"ContactListViewController" ];
- cvc.is_subaction = @"true";
- cvc.subaction_tag =[NSString stringWithFormat:@"%ld",(long)sender.tag];
- cvc.showNavibar = true;
- cvc.contact_type = value;
- __weak typeof(self) weakself = self;
- cvc.returnValue = ^(NSMutableDictionary* value,NSIndexPath* source){
-
- [weakself handle_action_return:value indexPath:indexPath action:ACTION_FILL_SECTION];
-
- //
- // if(self.returnValue)
- // self.returnValue(value);
- };
-
-
-
- [self.navigationController pushViewController:cvc animated:true];
-
- }
- else if([value isEqualToString:@"Sales_Order_Ship_To"])
- {
-
-
- ContactListViewController* cvc = [self.storyboard instantiateViewControllerWithIdentifier:@"ContactListViewController" ];
- cvc.is_subaction = @"true";
- cvc.subaction_tag =[NSString stringWithFormat:@"%ld",(long)sender.tag];
- cvc.showNavibar = true;
- cvc.contact_type = value;
- __weak typeof(self) weakself = self;
- cvc.returnValue = ^(NSMutableDictionary* value,NSIndexPath* source){
-
- [weakself handle_action_return:value indexPath:indexPath action:ACTION_FILL_SECTION];
-
- //
- // if(self.returnValue)
- // self.returnValue(value);
- };
-
-
-
- [self.navigationController pushViewController:cvc animated:true];
-
- }
-
-
- }
- }
- #pragma mark - Urgency
- -(void) viewWillDisappear:(BOOL)animated
- {
- [super viewWillDisappear:animated];
- [self cancel_urgency_timer];
- }
- - (void)start_urgency_timer {
-
- if (!self.editable) {
- return;
- }
-
- __weak typeof(self) weakSelf = self;
-
- AppDelegate *appDelegate = (AppDelegate *)[UIApplication sharedApplication].delegate;
-
- [appDelegate.urgencyDic setValue:appDelegate.user forKey:@"user"];
- #ifdef OFFLINE_MODE
- [appDelegate.urgencyDic setValue:[NSNumber numberWithBool:appDelegate.offline_mode] forKey:@"offline_mode"];
- #endif
- [[JKTimerManager sharedTimerManager] scheduledDispatchTimerWithName:self.urgency_timer_name timeInterval:1 queue:nil repeats:YES action:^{
-
- NSMutableDictionary *urgencyDic = [NSMutableDictionary dictionary];
-
- // DebugLog(@"timer start....");
-
- [urgencyDic setValue:weakSelf.content_data_download forKey:[NSString stringWithFormat:@"%@_restored_data",self.class_name]];
-
- [urgencyDic setValue:weakSelf.class_name forKey:@"class_name"];
-
-
-
- if ([weakSelf.class_name isEqualToString:@"RAOrderEditorViewController"]) {
-
-
- [urgencyDic setValue:appDelegate.order_code forKey:@"order_code"];
- MainViewController *mainVC = (MainViewController *)appDelegate.main_vc;
- NSString *so = [mainVC.labelSo.text substringFromIndex:5];
- [urgencyDic setValue:so forKey:@"order_so"];
- [urgencyDic setValue:[NSNumber numberWithInt:appDelegate.order_status ] forKey:@"order_status"];
-
- [urgencyDic setValue:appDelegate.order_customer_id forKey:@"order_customer_id"];
-
- // page
- [urgencyDic setObject:@(weakSelf.pageIndex) forKey:@"page_index"];
- [urgencyDic setObject:weakSelf.pageContentDownloadArray forKey:@"download_content_array"];
- [urgencyDic setObject:weakSelf.pageContentControlArray forKey:@"control_content_array"];
- [urgencyDic setObject:weakSelf.pageChangeDataArray forKey:@"changed_data_array"];
- [urgencyDic setObject:weakSelf.pageUpParams forKey:@"up_param_array"];
- [urgencyDic setObject:weakSelf.request_url forKey:@"request_url"];
- [urgencyDic setObject:weakSelf.params forKey:@"params"];
- }
-
- [appDelegate.urgencyDic setValue:urgencyDic forKey:[NSString stringWithFormat:@"level_%d",weakSelf.level]];
- [appDelegate.urgencyDic setValue:[NSNumber numberWithInteger:weakSelf.level + 1] forKey:@"count"];
-
- }];
- }
- - (void)cancel_urgency_timer {
- [[JKTimerManager sharedTimerManager] cancelTimerWithName:self.urgency_timer_name];
- }
- - (void)recoveryFromUrgencyDic:(NSDictionary *)urgencyDic {
-
-
- self.disable_dropdown_refresh=true;
- self.url_type = URL_RESTORE;
- self.params = [NSMutableDictionary dictionary];
- self.content_data_download = [urgencyDic objectForKey:[NSString stringWithFormat:@"%@_restored_data",self.class_name]];
- self.resumeOrder = YES;
-
- self.pageIndex = [[urgencyDic objectForKey:@"page_index"] integerValue];
- self.pageContentDownloadArray = [urgencyDic objectForKey:@"download_content_array"];
- self.pageContentControlArray = [urgencyDic objectForKey:@"control_content_array"];
- self.pageChangeDataArray = [urgencyDic objectForKey:@"changed_data_array"];
- self.pageUpParams = [urgencyDic objectForKey:@"up_param_array"];
- self.request_url = [urgencyDic objectForKey:@"request_url"];
- self.params = [urgencyDic objectForKey:@"params"];
- }
- @end
|