| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100 |
- //
- // CreateOrderViewController.m
- // RedAnt ERP Mobile
- //
- // Created by Ray on 8/24/15.
- // Copyright (c) 2015 United Software Applications, Inc. All rights reserved.
- //
- #import "CreateOrderViewController.h"
- #import "iSalesNetwork.h"
- #import "MainViewController.h"
- #define SUBMIT_CONFIRM 123
- #define KEEP_TAIL 456
- #define CLOSE_ACTION 567
- @interface CreateOrderViewController ()
- // static const char associatedkey;
- @end
- @implementation CreateOrderViewController
- -(void) viewWillAppear:(BOOL)animated
- {
- [super viewWillAppear:animated];
-
-
-
- AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
-
- if(appDelegate.can_submit_order)
- {
-
-
- [self.btnSubmitOrder setImage:[UIImage imageNamed:@"commit"]];
- self.btnSubmitOrder.enabled = true;
- }
- else
- {
- [self.btnSubmitOrder setImage:nil];
- self.btnSubmitOrder.enabled = false;
- }
-
- self.navigationController.navigationBarHidden=false;
-
- }
- -(void) download_success
- {
- // 用于处理不同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)viewDidLoad {
- [super viewDidLoad];
-
-
-
- UIBarButtonItem *closeButton = [[UIBarButtonItem alloc] initWithImage:[[UIImage imageNamed:@"close"] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal]
- style:UIBarButtonItemStylePlain
- target:self
- action:@selector(onCloseClick:)];
- //[[UIBarButtonItem alloc] initWithTitle:NSLocalizedString(@"Close", nil) style:UIBarButtonItemStylePlain target:self action:@selector(onCloseClick:)];
- // closeButton.title = @"Close";
-
- self.navigationItem.leftBarButtonItem = closeButton;
-
-
-
-
- NSMutableArray * items = [[NSMutableArray alloc]init];
-
-
- UIBarButtonItem *savebtn = nil;//[[UIBarButtonItem alloc] initWithTitle:NSLocalizedString(@"", nil) style:UIBarButtonItemStylePlain target:self action:@selector(onSaveClick:)];
-
- savebtn = [[UIBarButtonItem alloc] initWithImage:[[UIImage imageNamed:@"save"] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal]
- style:UIBarButtonItemStylePlain
- target:self
- action:@selector(onSaveClick:)];
-
-
- self.btnSubmitOrder = nil;
- self.btnSubmitOrder =[[UIBarButtonItem alloc] initWithImage:[[UIImage imageNamed:@"commit"] imageWithRenderingMode:UIImageRenderingModeAutomatic]
- style:UIBarButtonItemStylePlain
- target:self
- action:@selector(onCommitOrderClick:)];
-
- self.btnSubmitOrder.tintColor= UIColorFromRGB(0x996633);
-
-
- //savebtn setBackgroundImage:(nullable UIImage *) forState:<#(UIControlState)#> style:<#(UIBarButtonItemStyle)#> barMetrics:<#(UIBarMetrics)#>
- //[savebtn setImage:[UIImage imageNamed:@"save"] ];
-
-
- /*
- UIBarMetricsDefault,
- UIBarMetricsCompact,
- UIBarMetricsDefaultPrompt = 101, // Applicable only in bars with the prompt property, such as UINavigationBar and UISearchBar
- UIBarMetricsCompactPrompt
-
- */
- // [savebtn setBackgroundImage:[UIImage imageNamed:@"save"] forState:UIControlStateNormal barMetrics:UIBarMetricsDefault];
- // UIBarButtonItem *item1 = [[UIBarButtonItem alloc] init];
- // item1.title = @"item1";
- //// item1.image = [UIImage imageNamed:@"rect_setting"];
- // UIBarButtonItem *item2 = [[UIBarButtonItem alloc] init];
- //// item2.image = [UIImage imageNamed:@"rect_about"];
- // item2.title = @"item2";
-
-
- UIBarButtonItem *fixedItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFixedSpace target:nil action:nil];
- fixedItem.width = 20.0f;
-
- AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
-
- if(appDelegate.user_type ==USER_ROLE_EMPLOYEE)
- {
- [items addObject:savebtn];
-
- [items addObject:fixedItem];
- }
- [items addObject:self.btnSubmitOrder];
- // [items addObject:item2];
- self.navigationItem.rightBarButtonItems=items;
-
- // self.navigationItem.backBarButtonItem = backButton;
-
-
- // Do any additional setup after loading the view.
- }
- - (void)onCommitOrderClick:(id)sender {
- // get customer info
-
-
-
-
-
- UIAlertView * alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Submit Confirm.", nil) message:NSLocalizedString(@"Are you sure to submit order?", nil) delegate:self cancelButtonTitle:NSLocalizedString(@"NO", nil) otherButtonTitles:NSLocalizedString(@"YES", nil), nil];
-
- alert.tag = SUBMIT_CONFIRM;
- [alert show];
-
-
-
-
- }
- - (void)onCloseClick:(UIButton *)sender {
- UIAlertView * 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.
- [alert show];
-
-
- // if ([[upparams valueForKey:@"close_on_save"] boolValue]) {
- // appDelegate.order_code = nil;
- //
- // }
-
-
- }
- - (void)didReceiveMemoryWarning {
- [super didReceiveMemoryWarning];
- // Dispose of any resources that can be recreated.
- }
- - (IBAction)onSaveClick:(id)sender {
-
- // add params check here.
- [self.lastedit endEditing:true];
- [self.lasttextview endEditing:true];
- self.cancommit=true;
- NSMutableDictionary* upparams=[[NSMutableDictionary alloc] init];
- [upparams setValue:[self.params valueForKey:@"cart2Checkbox"] forKey:@"cart2Checkbox"];
- 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];
- 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];
- NSString* key = [itemjson valueForKey:@"name"];
- if(key==nil || key.length==0)
- continue;
- if([[itemjson valueForKey:@"control"] isEqualToString:@"enum"])
- {
- NSString* single_select = [itemjson valueForKey:@"single_select"];
- if([single_select isEqualToString:@"true"])
- {
- NSDictionary* cadejson=[itemjson objectForKey:@"cadedate"];
- int count = [[cadejson valueForKey:@"count"] intValue];
- bool setvalue = false;
- for(int cc=0;cc<count;cc++)
- {
- NSDictionary* valjson=[cadejson objectForKey:[NSString stringWithFormat:@"val_%d",cc]];
- if([[valjson valueForKey:@"check"]intValue]==1)
- {
- [upparams setValue:[valjson valueForKey:@"value_id"] forKey:[itemjson valueForKey:@"name"]];
- setvalue=true;
- break;
- }
- }
- if([[itemjson valueForKey:@"required"] isEqualToString: @"true"] && setvalue==false)
- {
- self.cancommit = false;
- }
- }
- else
- {
- //not support multi select for now;
- }
- /*
- upparams setValue:itemjson forKey:<#(NSString *)#>
-
- */
- }else
- if([[itemjson valueForKey:@"control"] isEqualToString:@"action"])
- {
- if([[itemjson valueForKey:@"required"] isEqualToString: @"true"] && [itemjson objectForKeyedSubscript:@"data"]==nil)
- self.cancommit = false;
- }
- else if([[itemjson valueForKey:@"control"] isEqualToString:@"switch"])
- {
- NSString* valuestr = [itemjson valueForKey:@"value"];
- [upparams setValue:valuestr forKey:[itemjson valueForKey:@"name"]];
-
- NSString* value = [itemjson valueForKey:@"value"];
- NSMutableDictionary* boolitem=nil;
- NSMutableDictionary* subjson=nil;
- if([value isEqualToString:@"true"])
- {
- boolitem =[[itemjson objectForKey:@"true"] mutableCopy];
-
- }
- else
- {
- boolitem =[[itemjson objectForKey:@"false"] mutableCopy];
-
- }
- subjson=[[boolitem objectForKey:@"sub_item"] mutableCopy];
- if( subjson!=nil /*&& !active*/)
- {
- int sub_count = [[subjson valueForKey:@"count"] intValue];
- for(int l=0;l<sub_count;l++)
- {
- NSMutableDictionary * modify_item=[[subjson objectForKey:[NSString stringWithFormat:@"item_%d",l ]] mutableCopy];
-
-
-
-
- if([modify_item valueForKey:@"value"]!=nil && ![[modify_item valueForKey:@"value"]isEqualToString:@""])
- [upparams setValue:[modify_item valueForKey:@"value"] forKey:[modify_item valueForKey:@"name"]];
- else
- {
- if([[modify_item valueForKey:@"required"] isEqualToString: @"true"] )
- self.cancommit = false;
- }
- }
-
-
-
- }
- }
- else
- {
- if([itemjson valueForKey:@"value"]!=nil && ![[itemjson valueForKey:@"value"]isEqualToString:@""])
- [upparams setValue:[itemjson valueForKey:@"value"] forKey:[itemjson valueForKey:@"name"]];
- else
- {
- if([[itemjson valueForKey:@"required"] isEqualToString: @"true"] )
- self.cancommit = false;
- }
- }
- upparams= [self subitem_param:itemjson addto:upparams ];
- }
- }
- // save order 不检查必填项;
- self.cancommit=true;
- if(self.cancommit==false)
- {
- [RAUtils alert_view:@"Fields with * mark cannot be empty." title:@"Some Requried Fields Are Missing."];
- self.content_data_control = [self translate_json:self.content_data_download changed:self.changed_data];
- //NSLog(@"CONTENT translate:%@",[iSalesNetwork DataTOjsonString:self.content_data]);
- //[self.editorTable reloadData ];
- [self.editorTable reloadData];
- return;
- }
- if([upparams[@"shipping"] isEqualToString:@"Shipping 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 = [iSalesNetwork 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];
-
-
-
- appDelegate.customerInfo = customerInfo;
- appDelegate.contact_id = [customerInfo valueForKey:@"customer_cid"];
-
- [RAUtils message_alert:nil title:@"Order Saved" controller:self] ;
-
-
- // if ([[upparams valueForKey:@"close_on_save"] boolValue]) {
- // appDelegate.order_code = nil;
- //
- // }
- // // self.labelContact.text=appDelegate.contact_name;
- //
- // NSDictionary * customerinfo = appDelegate.customerInfo;
- // [self prepareReturn:nil];
- // [self.navigationController dismissViewControllerAnimated:true completion:^{
- //
- //
- // ;
- // }];
-
- }
- else
- {
- [RAUtils message_alert:[editor_json valueForKey:@"err_msg"] title:@"Save Order" controller:self] ;
- }
-
-
-
-
- });
- });
-
- }
- - (void)textFieldDidEndEditing:(UITextField *)textField
- {
-
- [super textFieldDidEndEditing:textField];
-
- UITableViewCell *cell = (UITableViewCell *) textField.superview.superview;
- NSIndexPath * indexPath = [self.editorTable indexPathForCell:cell];
-
-
- NSMutableDictionary* section_json=nil;
-
-
- // NSLog(@"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"])
- {
- 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 totalprice=shipping+paymentsAndCredits+handling_fee_value+lift_gate;
-
- 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 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];
- // NSLog(@"before refresh %@",NSStringFromCGSize(self.editorTable.contentSize));
- [self.editorTable reloadRowsAtIndexPaths:@[newPath]withRowAnimation:UITableViewRowAnimationMiddle];
- // NSLog(@"after refresh %@",NSStringFromCGSize(self.editorTable.contentSize));
-
-
- // CGSize tablecontent =self.editorTable.contentSize;
- // tablecontent.height=tablecontent.height+self.keyboard_h;
- // self.editorTable.contentSize=tablecontent;
- //
- //
- // NSLog(@"resize to %@",NSStringFromCGSize(self.editorTable.contentSize));
- }
-
- // self.content_data = [editor_json mutableCopy];
- // self.content_data = [self translate_json:editor_json];
-
- // NSMutableDictionary* content_data1 = [self translate_json:self.content_data];
-
- // [self.editorTable reloadData];
-
- }
- //
- // [item_json setValue:@"true" forKey:@"dirty"];
- // [item_json setValue:textField.text forKey:@"value"];
- }
- -(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;
- }
- /*
- #pragma mark - Navigation
-
- // In a storyboard-based application, you will often want to do a little preparation before navigation
- - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
- // Get the new view controller using [segue destinationViewController].
- // Pass the selected object to the new view controller.
- }
- */
- #pragma mark - UIAlertViewDelegate
- // Called when a button is clicked. The view will be automatically dismissed after this call returns
- - (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
- {
-
- if(buttonIndex!=alertView.cancelButtonIndex && alertView.tag == SUBMIT_CONFIRM)
- {
- // add params check here.
- [self.lastedit endEditing:true];
- [self.lasttextview endEditing:true];
- self.cancommit=true;
- NSMutableDictionary* upparams=[[NSMutableDictionary alloc] init];
- [upparams setValue:[self.params valueForKey:@"cart2Checkbox"] forKey:@"cart2Checkbox"];
- 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];
- 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];
- NSString* key = [itemjson valueForKey:@"name"];
- if(key==nil || key.length==0)
- continue;
- if([[itemjson valueForKey:@"control"] isEqualToString:@"enum"])
- {
- NSString* single_select = [itemjson valueForKey:@"single_select"];
- if([single_select isEqualToString:@"true"])
- {
- NSDictionary* cadejson=[itemjson objectForKey:@"cadedate"];
- int count = [[cadejson valueForKey:@"count"] intValue];
- bool setvalue = false;
- for(int cc=0;cc<count;cc++)
- {
- NSDictionary* valjson=[cadejson objectForKey:[NSString stringWithFormat:@"val_%d",cc]];
- if([[valjson valueForKey:@"check"]intValue]==1)
- {
- [upparams setValue:[valjson valueForKey:@"value_id"] forKey:[itemjson valueForKey:@"name"]];
- setvalue=true;
- break;
- }
- }
- if([[itemjson valueForKey:@"required"] isEqualToString: @"true"] && setvalue==false)
- {
- self.cancommit = false;
- }
- }
- else
- {
- //not support multi select for now;
- }
- /*
- upparams setValue:itemjson forKey:<#(NSString *)#>
-
- */
- }else
- if([[itemjson valueForKey:@"control"] isEqualToString:@"action"])
- {
- if([[itemjson valueForKey:@"required"] isEqualToString: @"true"] && [itemjson objectForKeyedSubscript:@"data"]==nil)
- self.cancommit = false;
- }
- else if([[itemjson valueForKey:@"control"] isEqualToString:@"switch"])
- {
- NSString* valuestr = [itemjson valueForKey:@"value"];
- [upparams setValue:valuestr forKey:[itemjson valueForKey:@"name"]];
-
- NSString* value = [itemjson valueForKey:@"value"];
- NSMutableDictionary* boolitem=nil;
- NSMutableDictionary* subjson=nil;
- if([value isEqualToString:@"true"])
- {
- boolitem =[[itemjson objectForKey:@"true"] mutableCopy];
-
- }
- else
- {
- boolitem =[[itemjson objectForKey:@"false"] mutableCopy];
-
- }
- subjson=[[boolitem objectForKey:@"sub_item"] mutableCopy];
- if( subjson!=nil /*&& !active*/)
- {
- int sub_count = [[subjson valueForKey:@"count"] intValue];
- for(int l=0;l<sub_count;l++)
- {
- NSMutableDictionary * modify_item=[[subjson objectForKey:[NSString stringWithFormat:@"item_%d",l ]] mutableCopy];
-
-
-
-
- if([modify_item valueForKey:@"value"]!=nil && ![[modify_item valueForKey:@"value"]isEqualToString:@""])
- [upparams setValue:[modify_item valueForKey:@"value"] forKey:[modify_item valueForKey:@"name"]];
- else
- {
- if([[modify_item valueForKey:@"required"] isEqualToString: @"true"] )
- self.cancommit = false;
- }
- }
-
-
-
- }
- }
- else
- {
- if([itemjson valueForKey:@"value"]!=nil && ![[itemjson valueForKey:@"value"]isEqualToString:@""])
- [upparams setValue:[itemjson valueForKey:@"value"] forKey:[itemjson valueForKey:@"name"]];
- else
- {
- if([[itemjson valueForKey:@"required"] isEqualToString: @"true"] )
- self.cancommit = false;
- }
- }
- upparams= [self subitem_param:itemjson addto:upparams ];
- }
- }
- if(self.cancommit==false)
- {
- [RAUtils alert_view:@"Fields with * mark cannot be empty." title:@"Some Requried Fields Are Missing."];
- self.content_data_control = [self translate_json:self.content_data_download changed:self.changed_data];
- //NSLog(@"CONTENT translate:%@",[iSalesNetwork DataTOjsonString:self.content_data]);
- //[self.editorTable reloadData ];
- [self.editorTable reloadData];
- // [waitalert dismissWithClickedButtonIndex:0 animated:FALSE];
- return;
- }
- if(upparams[@"shipping"]==nil)
- goto commit_order;
- if([upparams[@"shipping"] isEqualToString:@"Shipping To Be Quoted"])
- {
- upparams[@"shipping"] = nil;
- goto commit_order;
- }
- else if([upparams[@"shipping"] doubleValue]==0)
- {
-
-
- UIAlertController *alertControl = [UIAlertController alertControllerWithTitle:@"Shipping is $0.00, continue submit?" message:nil preferredStyle:UIAlertControllerStyleAlert];
- //block代码块取代了delegate
-
-
-
- UIAlertAction *actionOne = [UIAlertAction actionWithTitle:@"Yes" style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action)
- {
-
- AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
-
- if(appDelegate.user_type ==USER_ROLE_EMPLOYEE )
- {
-
- if(/*!self.have_tail*/ true)
- {UIAlertView * waitalert = [RAUtils waiting_alert:@"Please wait" title:@"Submit Order"];
- [upparams setValue:@"false" forKey:@"isHold"];
- dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
-
- NSDictionary* editor_json = [iSalesNetwork saveandcommit_Order:upparams];
-
- dispatch_async(dispatch_get_main_queue(), ^{
- [waitalert dismissWithClickedButtonIndex:0 animated:FALSE];
-
-
- if([[editor_json valueForKey:@"result"] intValue]==2)
- {
- // NSMutableDictionary * customerInfo=[self create_cusromer_info_from_table];
-
-
- AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
- // appDelegate.customerInfo = customerInfo;
- // appDelegate.contact_id = [customerInfo valueForKey:@"customer_cid"];
- // appDelegate.order_code = nil;
- [appDelegate closeOrder];
- [((MainViewController*)appDelegate.main_vc) reloadOrder:true immediately:false];
-
- // // self.labelContact.text=appDelegate.contact_name;
- //
- // NSDictionary * customerinfo = appDelegate.customerInfo;
-
-
- UIAlertView * alert = [[UIAlertView alloc] initWithTitle: @"Submit successful." message:[NSString stringWithFormat:@"SO#: %@",[editor_json valueForKey:@"so#"]] delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
-
- [alert show];
-
- [self prepareReturn:nil];
- [self.navigationController popViewControllerAnimated:true];
- // [self.navigationController dismissViewControllerAnimated:true completion:^{
- //
- //
- // ;
- // }];
-
- }
- else
- {
- [RAUtils message_alert:[editor_json valueForKey:@"err_msg"] title:@"Submit Order" controller:self] ;
- }
-
-
-
-
- });
- });
- }
- else
- {
- UIAlertView * alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Retain models", nil) message:NSLocalizedString(@"There are some models left in cart,do you want to keep them?", nil) delegate:self cancelButtonTitle:NSLocalizedString(@"NO", nil) otherButtonTitles:NSLocalizedString(@"YES", nil), nil];
-
-
- alert.tag = KEEP_TAIL;
-
-
- self.upparams = upparams;
-
- [alert show];
- }
-
- }
- else
- { //USER_ROLE_CUSTOMER
-
- // if(self.have_tail)
- // [upparams setValue:@"true" forKey:@"isHold"];
- // else
- // [upparams setValue:@"false" forKey:@"isHold"];
- UIAlertView * waitalert = [RAUtils waiting_alert:@"Please wait" title:@"Submit Order"];
-
- [upparams setValue:@"true" forKey:@"isHold"];
- dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
-
- NSDictionary* editor_json = [iSalesNetwork saveandcommit_Order:upparams];
-
- dispatch_async(dispatch_get_main_queue(), ^{
-
- [waitalert dismissWithClickedButtonIndex:0 animated:FALSE];
-
- if([[editor_json valueForKey:@"result"] intValue]==2)
- {
- // NSMutableDictionary * customerInfo=[self create_cusromer_info_from_table];
-
-
- AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
- // appDelegate.customerInfo = customerInfo;
-
- NSString* orderCode = [editor_json valueForKey:@"orderCode"];
- appDelegate.order_code = orderCode;
- [((MainViewController*)appDelegate.main_vc) reloadOrder:true immediately:false];
- UIAlertView * alert = [[UIAlertView alloc] initWithTitle: @"Submit successful." message:[NSString stringWithFormat:@"SO#: %@",[editor_json valueForKey:@"so#"]] delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
-
- [alert show];
- // // self.labelContact.text=appDelegate.contact_name;
- //
- // NSDictionary * customerinfo = appDelegate.customerInfo;
- [self prepareReturn:nil];
- [self.navigationController popViewControllerAnimated:true];
- // [self.navigationController dismissViewControllerAnimated:true completion:^{
- //
- //
- // ;
- // }];
-
- }
- else
- {
- [RAUtils message_alert:[editor_json valueForKey:@"err_msg"] title:@"Submit Order" controller:self] ;
- }
-
-
-
-
- });
- });
-
- }
-
-
-
- }];
-
- UIAlertAction *alertthree = [UIAlertAction actionWithTitle:@"No" style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
- //NSLog(@"Cancel");
-
-
- }];
- [alertControl addAction:actionOne];
-
- [alertControl addAction:alertthree];
-
- //UIAlertControllerStyle类型为UIAlertControllerStyleAlert可以添加addTextFieldWithConfigurationHandler:^(UITextField *textField)
-
-
-
-
- [self presentViewController:alertControl animated:YES completion:nil];
-
-
-
- }
- else
- {
- commit_order:
-
- {
- AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
-
- if(appDelegate.user_type ==USER_ROLE_EMPLOYEE )
- {
-
- if(/*!self.have_tail*/ true)
- {UIAlertView * waitalert = [RAUtils waiting_alert:@"Please wait" title:@"Submit Order"];
- [upparams setValue:@"false" forKey:@"isHold"];
- dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
-
- NSDictionary* editor_json = [iSalesNetwork saveandcommit_Order:upparams];
-
- dispatch_async(dispatch_get_main_queue(), ^{
- [waitalert dismissWithClickedButtonIndex:0 animated:FALSE];
-
-
- if([[editor_json valueForKey:@"result"] intValue]==2)
- {
- // NSMutableDictionary * customerInfo=[self create_cusromer_info_from_table];
-
-
- AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
- // appDelegate.customerInfo = customerInfo;
- // appDelegate.contact_id = [customerInfo valueForKey:@"customer_cid"];
- // appDelegate.order_code = nil;
- [appDelegate closeOrder];
- [((MainViewController*)appDelegate.main_vc) reloadOrder:true immediately:false];
- // // self.labelContact.text=appDelegate.contact_name;
- //
- // NSDictionary * customerinfo = appDelegate.customerInfo;
-
-
- UIAlertView * alert = [[UIAlertView alloc] initWithTitle: @"Submit successful." message:[NSString stringWithFormat:@"SO#: %@",[editor_json valueForKey:@"so#"]] delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
-
- [alert show];
-
- [self prepareReturn:nil];
- // [self.navigationController dismissViewControllerAnimated:true completion:^{
- //
- //
- // ;
- // }];
- [self.navigationController popViewControllerAnimated:true];
-
- }
- else
- {
- [RAUtils message_alert:[editor_json valueForKey:@"err_msg"] title:@"Submit Order" controller:self] ;
- }
-
-
-
-
- });
- });
- }
- else
- {
- UIAlertView * alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Retain models", nil) message:NSLocalizedString(@"There are some models left in cart,do you want to keep them?", nil) delegate:self cancelButtonTitle:NSLocalizedString(@"NO", nil) otherButtonTitles:NSLocalizedString(@"YES", nil), nil];
-
-
- alert.tag = KEEP_TAIL;
-
-
- self.upparams = upparams;
-
- [alert show];
- }
-
- }
- else
- { //USER_ROLE_CUSTOMER
-
- // if(self.have_tail)
- // [upparams setValue:@"true" forKey:@"isHold"];
- // else
- // [upparams setValue:@"false" forKey:@"isHold"];
- UIAlertView * waitalert = [RAUtils waiting_alert:@"Please wait" title:@"Submit Order"];
-
- [upparams setValue:@"true" forKey:@"isHold"];
- dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
-
- NSDictionary* editor_json = [iSalesNetwork saveandcommit_Order:upparams];
-
- dispatch_async(dispatch_get_main_queue(), ^{
-
- [waitalert dismissWithClickedButtonIndex:0 animated:FALSE];
-
- if([[editor_json valueForKey:@"result"] intValue]==2)
- {
- // NSMutableDictionary * customerInfo=[self create_cusromer_info_from_table];
-
-
- AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
- // appDelegate.customerInfo = customerInfo;
-
- NSString* orderCode = [editor_json valueForKey:@"orderCode"];
- appDelegate.order_code = orderCode;
- [((MainViewController*)appDelegate.main_vc) reloadOrder:true immediately:false];
- UIAlertView * alert = [[UIAlertView alloc] initWithTitle: @"Submit successful." message:[NSString stringWithFormat:@"SO#: %@",[editor_json valueForKey:@"so#"]] delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
-
- [alert show];
- // // self.labelContact.text=appDelegate.contact_name;
- //
- // NSDictionary * customerinfo = appDelegate.customerInfo;
- [self prepareReturn:nil];
- // [self.navigationController dismissViewControllerAnimated:true completion:^{
- //
- //
- // ;
- // }];
- [self.navigationController popViewControllerAnimated:true];
-
- }
- else
- {
- [RAUtils message_alert:[editor_json valueForKey:@"err_msg"] title:@"Submit Order" controller:self] ;
- }
-
-
-
-
- });
- });
-
- }
- }
-
-
-
- }
-
-
-
-
-
-
-
-
-
-
-
- }
-
- else if( alertView.tag == KEEP_TAIL)
- {UIAlertView * waitalert = [RAUtils waiting_alert:@"Please wait" title:@"Submit Order"];
- if(buttonIndex!=alertView.cancelButtonIndex)
- {//keep tail;
-
- [self.upparams setValue:@"true" forKey:@"isHold"];
- dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
-
- NSDictionary* editor_json = [iSalesNetwork saveandcommit_Order:self.upparams];
-
- dispatch_async(dispatch_get_main_queue(), ^{
- [waitalert dismissWithClickedButtonIndex:0 animated:FALSE];
-
-
- if([[editor_json valueForKey:@"result"] intValue]==2)
- {
- NSMutableDictionary * customerInfo=[self create_cusromer_info_from_table];
- UIAlertView * alert = [[UIAlertView alloc] initWithTitle: @"Submit successful." message:[NSString stringWithFormat:@"SO#: %@",[editor_json valueForKey:@"so#"]] delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
-
- [alert show];
-
- AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
- appDelegate.customerInfo = customerInfo;
- appDelegate.contact_id = [customerInfo valueForKey:@"customer_cid"];
- NSString* orderCode = [editor_json valueForKey:@"orderCode"];
- appDelegate.order_code = orderCode;
- [((MainViewController*)appDelegate.main_vc) reloadOrder:true immediately:false];
- // // self.labelContact.text=appDelegate.contact_name;
- //
- // NSDictionary * customerinfo = appDelegate.customerInfo;
- [self prepareReturn:nil];
- // [self.navigationController dismissViewControllerAnimated:true completion:^{
- //
- //
- // ;
- // }];
- [self.navigationController popViewControllerAnimated:true];
-
- }
- else
- {
- [RAUtils message_alert:[editor_json valueForKey:@"err_msg"] title:@"Submit Order" controller:self] ;
- }
-
-
-
-
- });
- });
- }
- else
- {// not keep tail;
- [self.upparams setValue:@"false" forKey:@"isHold"];
- dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
-
- NSDictionary* editor_json = [iSalesNetwork saveandcommit_Order:self.upparams];
-
- dispatch_async(dispatch_get_main_queue(), ^{
- [waitalert dismissWithClickedButtonIndex:0 animated:FALSE];
-
-
- if([[editor_json valueForKey:@"result"] intValue]==2)
- {
- // NSMutableDictionary * customerInfo=[self create_cusromer_info_from_table];
- UIAlertView * alert = [[UIAlertView alloc] initWithTitle: @"Submit successful." message:[NSString stringWithFormat:@"SO#: %@",[editor_json valueForKey:@"so#"]] delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
-
- [alert show];
-
- AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
- // appDelegate.customerInfo = customerInfo;
- // appDelegate.contact_id = [customerInfo valueForKey:@"customer_cid"];
- // appDelegate.order_code = nil;
- [appDelegate closeOrder];
- [((MainViewController*)appDelegate.main_vc) reloadOrder:true immediately:false];
- // // self.labelContact.text=appDelegate.contact_name;
- //
- // NSDictionary * customerinfo = appDelegate.customerInfo;
- [self prepareReturn:nil];
- // [self.navigationController dismissViewControllerAnimated:true completion:^{
- //
- //
- // ;
- // }];
- [self.navigationController popViewControllerAnimated:true];
-
- }
- else
- {
- [RAUtils message_alert:[editor_json valueForKey:@"err_msg"] title:@"Submit Order" controller:self] ;
- }
-
-
-
-
- });
- });
- }
- }
- else if(alertView.tag == CLOSE_ACTION)
- {
- if(buttonIndex==1)
- {
-
- [self.navigationController popViewControllerAnimated:true];
- // back to cart;
- // [self.navigationController dismissViewControllerAnimated:true completion:^{
- // ;
- // }];
- // if ([[upparams valueForKey:@"close_on_save"] boolValue]) {
- // appDelegate.order_code = nil;
- //
- // }
- }
- if(buttonIndex==2)
- {
-
- [self.navigationController popViewControllerAnimated:true];
-
-
- AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
-
- [((MainViewController*)appDelegate.main_vc) reloadOrder:true immediately:false];
- [((MainViewController*)appDelegate.main_vc) switchToOrder];
- // back to cart;
- // [self.navigationController dismissViewControllerAnimated:true completion:^{
- // ;
- // }];
- // if ([[upparams valueForKey:@"close_on_save"] boolValue]) {
- // appDelegate.order_code = nil;
- //
- // }
- }
- 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 = [iSalesNetwork release_Order:appDelegate.order_code];
-
- 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.order_code = nil;
-
- [appDelegate closeOrder];
- [((MainViewController*)appDelegate.main_vc) reloadCart:true immediately:false];
- [self prepareReturn:nil];
-
-
- [self.navigationController popViewControllerAnimated:true];
- // [self.navigationController dismissViewControllerAnimated:true completion:^{
- // ;
- // }];
-
- }
- else
- {
- [RAUtils message_alert:[order_json valueForKey:@"err_msg"] title:@"Open Order"controller:self] ;
- }
-
-
-
- });
- });
-
-
-
-
-
- //
- // }
- }
- }
- }
- @end
|