| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514 |
- //
- // 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:UIImageRenderingModeAutomatic]
- 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:UIImageRenderingModeAutomatic]
- 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
-
-
-
- AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
- NSString* msg;
- if(appDelegate.offline_mode)
- {
- msg=@"Are you sure to mark order as ready for submit?";
- }
- else
- {
- msg=@"Are you sure to submit order?";
- }
-
- UIAlertView * alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Submit Confirm.", nil) message:NSLocalizedString(msg, nil) delegate:self cancelButtonTitle:NSLocalizedString(@"NO", nil) otherButtonTitles:NSLocalizedString(@"YES", nil), nil];
-
- alert.tag = SUBMIT_CONFIRM;
- [alert show];
-
-
-
-
- }
- - (void)onCloseClick:(UIButton *)sender {
-
- AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
- if (self.resumeOrder) {
- [appDelegate.main_vc.navigationController popViewControllerAnimated:YES];
- return;
- }
-
-
- //
- // NSRange range = [tempStr rangeOfString:@")\">"];//判断字符串是否包含
- //
- // //if (range.location ==NSNotFound)//不包含
- // if (range.length >0)//包含
- // {
- //
- //
- //
- // }
- // else//不包含
- // {
- //
- // }
- 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.
- [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:@"signature"])
- // {
- // if([[itemjson valueForKey:@"required"] isEqualToString: @"true"] && [itemjson objectForKeyedSubscript:@"value"]==nil)
- // self.cancommit = false;
- //
- // NSString* valuestr = [itemjson valueForKey:@"value"];
- // [upparams setValue:valuestr forKey:[itemjson valueForKey:@"name"]];
- // }
- // 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;
- // }
-
- NSMutableDictionary* upparams = [self check_cancommit:false];
- // if(self.cancommit==false)
- // 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([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 ([[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:@"signature"])
- // {
- // if([[itemjson valueForKey:@"required"] isEqualToString: @"true"] && [itemjson objectForKeyedSubscript:@"value"] ==nil)
- // self.cancommit = false;
- //
- // NSString* valuestr = [itemjson valueForKey:@"value"];
- // [upparams setValue:valuestr forKey:[itemjson valueForKey:@"name"]];
- // }
- // 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;
- // }
-
- NSMutableDictionary* upparams = [self check_cancommit:true];
- if(self.cancommit==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];
-
- // debug aaa
- AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
- NSString* company= appDelegate.customerInfo[@"customer_name"];
- NSString* send_to =appDelegate.customerInfo[@"customer_email"];
-
- // appDelegate.customerInfo = customerInfo;
- // appDelegate.contact_id = [customerInfo valueForKey:@"customer_cid"];
- // appDelegate.order_code = nil;
- [appDelegate closeOrder];
- [((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];
-
- NSString* pdf_url = [editor_json valueForKey:@"pdf_url"];
- NSString* email_content =[editor_json valueForKey:@"email_content"];
- NSString* soid=[editor_json valueForKey:@"so#"];
- // if(pdf_url.length>0)
- // {
- //
- // [alert dismissWithClickedButtonIndex:0 animated:FALSE];
- // //[self downloadpdf:pdf_url];
- //
- //
- // if([appDelegate.mode isEqualToString:@"Trade Show Mode"]&& appDelegate.submit_order_logout)
- // {
- // //bbb
- // [((MainViewController*)appDelegate.main_vc) Loginout:false];
- // }
- //
- // [self prepareReturn:nil];
- //
- // [self.navigationController popViewControllerAnimated:true];
- //
- // [appDelegate printPdf:pdf_url];
- //// if(self.printPdfCallback)
- //// self.printPdfCallback(pdf_url);
- // }
- // else
- {
- if([appDelegate.mode isEqualToString:@"TM"]&& appDelegate.submit_order_logout)
- {
- //bbb
- [((MainViewController*)appDelegate.main_vc) Loginout:false];
- }
- [self prepareReturn:nil];
-
- [self.navigationController popViewControllerAnimated:true];
-
- if(pdf_url.length>0)
- {
-
- [alert dismissWithClickedButtonIndex:0 animated:FALSE];
- [appDelegate printPdf:pdf_url company:company send_to:send_to soid:soid content:email_content];
- // [appDelegate printPdf:pdf_url];
-
- }
- }
-
- }
- 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;
- appDelegate.order_status = [[editor_json valueForKey:@"orderStatus"] intValue];
- [((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)
- {
-
- //debug bbb
- // NSMutableDictionary * customerInfo=[self create_cusromer_info_from_table];
-
-
- AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
- NSString* company= appDelegate.customerInfo[@"customer_name"];
- NSString* send_to =appDelegate.customerInfo[@"customer_email"];
- // appDelegate.customerInfo = customerInfo;
- // appDelegate.contact_id = [customerInfo valueForKey:@"customer_cid"];
- // appDelegate.order_code = nil;
- [appDelegate closeOrder];
- [((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];
-
- NSString* pdf_url = [editor_json valueForKey:@"pdf_url"];
- NSString* email_content =[editor_json valueForKey:@"email_content"];
- NSString* soid=[editor_json valueForKey:@"so#"];
- // if(pdf_url.length>0)
- // {
- //
- // [alert dismissWithClickedButtonIndex:0 animated:FALSE];
- //// [self downloadpdf:pdf_url];
- //
- //
- // if([appDelegate.mode isEqualToString:@"Trade Show Mode"]&& appDelegate.submit_order_logout)
- // {
- // //bbb
- // [((MainViewController*)appDelegate.main_vc) Loginout:false];
- // }
- //
- // [self prepareReturn:nil];
- //
- // [self.navigationController popViewControllerAnimated:true];
- //
- // [appDelegate printPdf:pdf_url];
- //
- //// if(self.printPdfCallback)
- //// self.printPdfCallback(pdf_url);
- // }
- // else
- {
- if([appDelegate.mode isEqualToString:@"TM"]&& appDelegate.submit_order_logout)
- {
- //bbb
- [((MainViewController*)appDelegate.main_vc) Loginout:false];
- }
- [self prepareReturn:nil];
-
- [self.navigationController popViewControllerAnimated:true];
-
-
- if(pdf_url.length>0)
- {
-
- [alert dismissWithClickedButtonIndex:0 animated:FALSE];
-
- [appDelegate printPdf:pdf_url company:company send_to:send_to soid:soid content:email_content];
-
-
- }
-
-
- }
- // // self.labelContact.text=appDelegate.contact_name;
- //
- // NSDictionary * customerinfo = appDelegate.customerInfo;
-
-
-
-
-
-
- }
- 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;
- appDelegate.order_status = [[editor_json valueForKey:@"orderStatus"] intValue];
- [((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];
- [((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];
- // [self.navigationController dismissViewControllerAnimated:true completion:^{
- // ;
- // }];
-
- }
- else
- {
- [RAUtils message_alert:[order_json valueForKey:@"err_msg"] title:@"Open Order"controller:self] ;
- }
-
-
-
- });
- });
-
-
-
-
-
- //
- // }
- }
- }
- }
- //
- //
- //-(void) downloadpdf:(NSString* )url
- //{
- // UIAlertView * waitalert = [RAUtils waiting_alert:@"Please wait..." title:@"Printing..."];
- // dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
- //
- //
- // NSMutableURLRequest *request = [[NSMutableURLRequest alloc] initWithURL:[NSURL URLWithString:url] cachePolicy:NSURLRequestReloadIgnoringLocalCacheData timeoutInterval:60*5];
- //
- // //设置请求方式为get
- //
- // [request setHTTPMethod:@"GET"];
- //
- // //添加用户会话id
- //
- // [request addValue:@"text/html" forHTTPHeaderField:@"Content-Type"];
- //
- // //连接发送请求
- //
- //
- // NSHTTPURLResponse* urlResponse = nil;
- //
- // NSError *error = [[NSError alloc] init];
- //
- // NSData* content= [NSURLConnection sendSynchronousRequest:request returningResponse:&urlResponse error:&error];
- //
- // // self.filename = [urlResponse suggestedFilename];
- //
- //
- // dispatch_async(dispatch_get_main_queue(), ^{
- // [waitalert dismissWithClickedButtonIndex:0 animated:FALSE];
- // // self.navigationItem.title = self.save_name;
- // // UIRefreshControl *reF = (UIRefreshControl *)[self.view viewWithTag:200];
- // // self.content=nil;
- // if(content!=nil&&content.length>0)
- // {
- //
- //
- // [self startAirPrintWithData:content];
- //
- //
- // }
- // else
- // {
- // [RAUtils message_alert:nil title:@"Open PDF Failed" controller:self];
- // // self.content = [self.url dataUsingEncoding:NSUTF8StringEncoding];
- // }
- //
- // ;
- // // NSLog(@"%@",[[NSString alloc] initWithData:self.content encoding:NSASCIIStringEncoding]);
- // //
- //
- //
- // // [self.webView loadData:self.content MIMEType:urlResponse.MIMEType textEncodingName:nil baseURL:nil];
- //
- //
- //
- //
- // });
- // });
- //}
- //
- //- (void)startAirPrintWithData:(id )data
- //{
- //
- //
- //
- //
- // UIPrintInteractionController* airPrinterController=[UIPrintInteractionController sharedPrintController];
- // UIPrintInfo *printInfo = [UIPrintInfo printInfo];
- // printInfo.outputType = UIPrintInfoOutputGeneral;
- // printInfo.orientation = UIPrintInfoOrientationPortrait;
- // printInfo.jobName = @"CoolVisitAirPrint";
- // airPrinterController.printInfo = printInfo;
- // airPrinterController.printingItem = data;
- // airPrinterController.delegate = self;
- //
- //
- // airPrinterController.showsNumberOfCopies=true;
- // airPrinterController.showsPageRange = true;
- // airPrinterController.showsPaperSelectionForLoadedPapers=true;
- //
- // void (^completionHandler)(UIPrintInteractionController *, BOOL, NSError *) = ^(UIPrintInteractionController *printController, BOOL completed, NSError *error) {
- // if(completed && error)
- // NSLog(@"Printing failed due to error in domain %@ with error code %lu. Localized description: %@, and failure reason: %@", error.domain, (long)error.code, error.localizedDescription, error.localizedFailureReason);
- // };
- //
- // AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
- //
- // UIPrinter *airPrinter = [UIPrinter printerWithURL:[NSURL URLWithString:appDelegate.printerURL] ];///*self.printer;*/
- //
- //
- //
- //
- // [[UIPrinter printerWithURL:[NSURL URLWithString:appDelegate.printerURL]] contactPrinter:^(BOOL available)
- // {
- // if (available&& appDelegate.printerURL.length>0)
- // {
- //
- // [airPrinterController printToPrinter:airPrinter completionHandler:completionHandler];
- // NSLog(@"AIRPRINTER AVAILABLE");
- // }
- // else
- // {
- //
- // // [airPrinterController presentFromRect:CGRectMake(0, 0, 300, 500) inView:self.view animated:YES completionHandler:
- // //
- // //
- // //
- // // // [printPicker presentAnimated:YES completionHandler:
- // // ^(UIPrintInteractionController *printerController, BOOL userDidSelect, NSError *error)
- // // {
- // // if (userDidSelect)
- // // {
- // // NSString* sid= printerController.printInfo.printerID;
- // // UIPrintPaper*paper= printerController.printPaper;
- // //
- // // }
- // // }];
- //
- //
- // NSLog(@"AIRPRINTER NOT AVAILABLE");
- //
- //
- //
- // if (NSFoundationVersionNumber > NSFoundationVersionNumber_iOS_7_1)
- // {
- // UIPrinterPickerController *printPicker = [UIPrinterPickerController printerPickerControllerWithInitiallySelectedPrinter:nil];
- // // [printPicker presentFromBarButtonItem:self.btnSubmitOrder animated:yes completionHandler:
- //
- //
- //
- // [ printPicker presentFromBarButtonItem:self.btnSubmitOrder animated:YES completionHandler:
- //
- //
- // // [printPicker presentFromRect:CGRectMake(0, 0, 300, 500) inView:self.view animated:YES completionHandler:
- //
- //
- //
- // // [printPicker presentAnimated:YES completionHandler:
- // ^(UIPrinterPickerController *printerPicker, BOOL userDidSelect, NSError *error)
- // {
- // if (userDidSelect)
- // {
- // //User selected the item in the UIPrinterPickerController and got the printer details.
- //
- // [UIPrinterPickerController printerPickerControllerWithInitiallySelectedPrinter:printerPicker.selectedPrinter];
- //
- // //Here you will get the printer and printer details.ie,
- // // printerPicker.selectedPrinter, printerPicker.selectedPrinter.displayName, printerPicker.selectedPrinter.URL etc. So you can display the printer name in your label text or button title.
- //
- //
- //
- //
- // appDelegate.printerURL =printerPicker.selectedPrinter.URL.absoluteString;
- //
- // [self startAirPrintWithData:data];
- //
- // }
- // else
- // {
- //
- //
- // AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
- // if([appDelegate.mode isEqualToString:@"Trade Show Mode"]&& appDelegate.submit_order_logout)
- // {
- //
- // [((MainViewController*)appDelegate.main_vc) Loginout:false];
- // }
- // [self prepareReturn:nil];
- //
- // [self.navigationController popViewControllerAnimated:true];
- // }
- // }];
- // }
- // }
- // }];
- //
- //
- //
- //}
- //
- //#pragma mark - UIPrintInteractionControllerDelegate
- //- (UIPrintPaper *)printInteractionController:(UIPrintInteractionController *)printInteractionController choosePaper:(NSArray<UIPrintPaper *> *)paperList
- //{
- //
- // ;
- //
- // // (int) width = 29700
- // // Printing description of (*( (int *)0x7caa3a40)):
- // // (int) height = 42000
- // //设置纸张大小
- //
- //
- // for(UIPrintPaper* paper in paperList)
- // {
- // if (CGSizeEqualToSize(paper.paperSize, CGSizeMake(612, 792)))
- // return paper;
- //
- // }
- // CGSize paperSize = CGSizeMake(612, 792);
- // UIPrintPaper * p=[UIPrintPaper bestPaperForPageSize:paperSize withPapersFromArray:paperList];
- // return p;
- //}
- //- (void)printInteractionControllerWillPresentPrinterOptions:(UIPrintInteractionController *)printInteractionController
- //{
- //
- //}
- //- (void)printInteractionControllerDidPresentPrinterOptions:(UIPrintInteractionController *)printInteractionController
- //{
- //
- //}
- //- (void)printInteractionControllerWillDismissPrinterOptions:(UIPrintInteractionController *)printInteractionController
- //{
- //
- //}
- //- (void)printInteractionControllerDidDismissPrinterOptions:(UIPrintInteractionController *)printInteractionController
- //{
- //
- //}
- //
- //- (void)printInteractionControllerWillStartJob:(UIPrintInteractionController *)printInteractionController
- //{
- //
- //}
- //- (void)printInteractionControllerDidFinishJob:(UIPrintInteractionController *)printInteractionController
- //{
- //
- // AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
- // if([appDelegate.mode isEqualToString:@"Trade Show Mode"]&& appDelegate.submit_order_logout)
- // {
- //
- // [((MainViewController*)appDelegate.main_vc) Loginout:false];
- // }
- //
- // [self prepareReturn:nil];
- //
- // [self.navigationController popViewControllerAnimated:true];
- //}
- @end
|