CreateOrderViewController.m 151 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078
  1. //
  2. // CreateOrderViewController.m
  3. // RedAnt ERP Mobile
  4. //
  5. // Created by Ray on 8/24/15.
  6. // Copyright (c) 2015 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import "CreateOrderViewController.h"
  9. #import "RANetwork.h"
  10. #import "MainViewController.h"
  11. #import "Singleton.h"
  12. #import "config.h"
  13. #import "CustomIOSAlertView.h"
  14. #import "AddressEditorViewController.h"
  15. #import "CreditCardEditorViewController.h"
  16. #import "JKTimerManager.h"
  17. #define SUBMIT_CONFIRM 123
  18. #define KEEP_TAIL 456
  19. #define CLOSE_ACTION 567
  20. @interface CreateOrderViewController ()
  21. // static const char associatedkey;
  22. @property (nonatomic,assign) BOOL isResume;///<恢复
  23. @property (nonatomic,assign) NSInteger userType;///<恢复使用
  24. @end
  25. @implementation CreateOrderViewController
  26. - (void)alertMessage:(NSString *)msg {
  27. if (notifyMe_switch) {
  28. if ([self.class_name isEqualToString:@"CreateOrderViewController"]) {
  29. NSString *err_msg = msg;
  30. UIAlertController *alertVC = [UIAlertController alertControllerWithTitle:@"Attention!!" message:err_msg preferredStyle:UIAlertControllerStyleAlert];
  31. __weak typeof(self) weakself = self;
  32. UIAlertAction *action = [UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
  33. [weakself.navigationController popViewControllerAnimated:YES];
  34. }];
  35. [alertVC addAction:action];
  36. [self presentViewController:alertVC animated:YES completion:nil];
  37. } else {
  38. [RAUtils message_alert:msg title:nil controller:self] ;
  39. }
  40. } else {
  41. [RAUtils message_alert:msg title:nil controller:self] ;
  42. }
  43. }
  44. -(void) commonAction:(NSString *)value index:(NSIndexPath*) indexPath data:(NSMutableDictionary*) item_json
  45. {
  46. AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
  47. if([value isEqualToString:@"new_addr"])
  48. {
  49. AddressEditorViewController * addressVC = [[AddressEditorViewController alloc] initWithNibName:@"CommonEditor.iPad" bundle:nil];
  50. addressVC.url_type = URL_REMOTE;
  51. addressVC.request_url=URL_ADDRESS_EDOTOR;
  52. NSMutableDictionary * params= [[NSMutableDictionary alloc] init];
  53. // NSString * string = [checked componentsJoinedByString:@","];
  54. // [params setValue:string forKey:@"cart2Checkbox"];
  55. addressVC.params = params;
  56. addressVC.delegate = self;
  57. addressVC.from = indexPath;
  58. // orderinfoVC.params = params;
  59. [self.navigationController pushViewController:addressVC animated:true];
  60. }else if([value isEqualToString:@"credit_card"])
  61. {
  62. CreditCardEditorViewController * cardVC = [[CreditCardEditorViewController alloc] initWithNibName:@"CommonEditor.iPad" bundle:nil];
  63. NSDictionary *data = [item_json objectForKey:@"data"];
  64. if(data!=nil)
  65. {
  66. cardVC.content_data_download = [data mutableCopy];
  67. cardVC.url_type = URL_NONE;
  68. cardVC.request_url=nil;
  69. }
  70. else
  71. {
  72. cardVC.url_type = URL_REMOTE;
  73. cardVC.request_url=URL_CREDITCARD_EDOTOR;
  74. }
  75. NSMutableDictionary * params= [[NSMutableDictionary alloc] init];
  76. params[@"orderCode"]=appDelegate.order_code;
  77. cardVC.params = params;
  78. cardVC.delegate = self;
  79. cardVC.from = indexPath;
  80. // orderinfoVC.params = params;
  81. [self.navigationController pushViewController:cardVC animated:true];
  82. }
  83. else if([value isEqualToString:@"Sales_Order_Freight_Bill_To"])
  84. {
  85. ContactListViewController* cvc = [[UIStoryboard storyboardWithName:@"ERP_Mobile_Contact" bundle:nil] instantiateViewControllerWithIdentifier:@"ContactListViewController" ];
  86. cvc.showNavibar = true;
  87. cvc.contact_type = value;
  88. __weak typeof(self) weakself = self;
  89. cvc.returnValue = ^(NSMutableDictionary* value,NSIndexPath* source){
  90. [weakself handle_action_return:value indexPath:indexPath action:ACTION_FILL_SECTION];
  91. //
  92. // if(self.returnValue)
  93. // self.returnValue(value);
  94. };
  95. [self.navigationController pushViewController:cvc animated:true];
  96. }
  97. else if([value isEqualToString:@"Sales_Order_Ship_From"])
  98. {
  99. ContactListViewController* cvc = [[UIStoryboard storyboardWithName:@"ERP_Mobile_Contact" bundle:nil] instantiateViewControllerWithIdentifier:@"ContactListViewController" ];
  100. cvc.showNavibar = true;
  101. cvc.contact_type = value;
  102. __weak typeof(self) weakself = self;
  103. cvc.returnValue = ^(NSMutableDictionary* value,NSIndexPath* source){
  104. [weakself handle_action_return:value indexPath:indexPath action:ACTION_FILL_SECTION];
  105. //
  106. // if(self.returnValue)
  107. // self.returnValue(value);
  108. };
  109. [self.navigationController pushViewController:cvc animated:true];
  110. }
  111. else if([value isEqualToString:@"Sales_Order_Customer"])
  112. {
  113. ContactListViewController* cvc = [[UIStoryboard storyboardWithName:@"ERP_Mobile_Contact" bundle:nil] instantiateViewControllerWithIdentifier:@"ContactListViewController" ];
  114. cvc.contact_type = value;
  115. cvc.showNavibar = true;
  116. __weak typeof(self) weakself = self;
  117. cvc.returnValue = ^(NSMutableDictionary* value,NSIndexPath* source){
  118. [weakself handle_action_return:value indexPath:indexPath action:ACTION_FILL_SECTION];
  119. //
  120. // if(self.returnValue)
  121. // self.returnValue(value);
  122. };
  123. [self.navigationController pushViewController:cvc animated:true];
  124. }
  125. else if([value isEqualToString:@"Sales_Order_Merchandise_Bill_To"])
  126. {
  127. ContactListViewController* cvc = [[UIStoryboard storyboardWithName:@"ERP_Mobile_Contact" bundle:nil] instantiateViewControllerWithIdentifier:@"ContactListViewController" ];
  128. cvc.showNavibar = true;
  129. cvc.contact_type = value;
  130. __weak typeof(self) weakself = self;
  131. cvc.returnValue = ^(NSMutableDictionary* value,NSIndexPath* source){
  132. [weakself handle_action_return:value indexPath:indexPath action:ACTION_FILL_SECTION];
  133. //
  134. // if(self.returnValue)
  135. // self.returnValue(value);
  136. };
  137. [self.navigationController pushViewController:cvc animated:true];
  138. }
  139. else if([value isEqualToString:@"Contact_Return_To"])
  140. {
  141. ContactListViewController* cvc = [[UIStoryboard storyboardWithName:@"ERP_Mobile_Contact" bundle:nil] instantiateViewControllerWithIdentifier:@"ContactListViewController" ];
  142. cvc.showNavibar = true;
  143. cvc.contact_type = value;
  144. __weak typeof(self) weakself = self;
  145. cvc.returnValue = ^(NSMutableDictionary* value,NSIndexPath* source){
  146. [weakself handle_action_return:value indexPath:indexPath action:ACTION_FILL_SECTION];
  147. //
  148. // if(self.returnValue)
  149. // self.returnValue(value);
  150. };
  151. [self.navigationController pushViewController:cvc animated:true];
  152. }
  153. else if([value isEqualToString:@"Sales_Order_Ship_To"])
  154. {
  155. ContactListViewController* cvc = [[UIStoryboard storyboardWithName:@"ERP_Mobile_Contact" bundle:nil] instantiateViewControllerWithIdentifier:@"ContactListViewController" ];
  156. cvc.showNavibar = true;
  157. cvc.contact_type = value;
  158. __weak typeof(self) weakself = self;
  159. cvc.returnValue = ^(NSMutableDictionary* value,NSIndexPath* source){
  160. [weakself handle_action_return:value indexPath:indexPath action:ACTION_FILL_SECTION];
  161. //
  162. // if(self.returnValue)
  163. // self.returnValue(value);
  164. };
  165. [self.navigationController pushViewController:cvc animated:true];
  166. }
  167. }
  168. - (void)dealloc {
  169. AppDelegate *appDelegate = (AppDelegate *)[UIApplication sharedApplication].delegate;
  170. [appDelegate.urgencyDic removeObjectForKey:[NSString stringWithFormat:@"level_%d",self.level]];
  171. [appDelegate.urgencyDic setValue:[NSNumber numberWithInteger:self.level] forKey:@"count"];
  172. if (self.isResume && self.userType == USER_ROLE_CUSTOMER) {
  173. [self releaseOrderAfterSave];
  174. }
  175. }
  176. -(void) viewWillAppear:(BOOL)animated
  177. {
  178. [super viewWillAppear:animated];
  179. [self start_urgency_timer];
  180. self.isResume = [[[NSUserDefaults standardUserDefaults] objectForKey:@"urgency_resume"] boolValue];
  181. self.userType = [[[NSUserDefaults standardUserDefaults] objectForKey:@"urgency_userType"] integerValue];
  182. BOOL canSubmit = [[[NSUserDefaults standardUserDefaults] objectForKey:@"urgency_submitOrder"] boolValue];
  183. // 检查权限
  184. NSMutableArray * items = [[NSMutableArray alloc]init];
  185. UIBarButtonItem *savebtn = nil;
  186. savebtn = [[UIBarButtonItem alloc] initWithImage:[[UIImage imageNamed:@"save"] imageWithRenderingMode:UIImageRenderingModeAutomatic]
  187. style:UIBarButtonItemStylePlain
  188. target:self
  189. action:@selector(onSaveClick:)];
  190. UIImage *submit_img = [[UIImage imageNamed:@"commit"] imageWithRenderingMode:UIImageRenderingModeAutomatic];
  191. #if defined(BUILD_NPD) || defined(BUILD_USAI) || defined(BUILD_UWAVER)
  192. submit_img = [[UIImage imageNamed:@"submit_red"] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];
  193. #endif
  194. self.btnSubmitOrder = nil;
  195. self.btnSubmitOrder =[[UIBarButtonItem alloc] initWithImage:submit_img
  196. style:UIBarButtonItemStylePlain
  197. target:self
  198. action:@selector(onCommitOrderClick:)];
  199. UIBarButtonItem *fixedItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFixedSpace target:nil action:nil];
  200. fixedItem.width = 20.0f;
  201. AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
  202. // if(appDelegate.user_type ==USER_ROLE_EMPLOYEE)
  203. {
  204. [items addObject:savebtn];
  205. [items addObject:fixedItem];
  206. }
  207. if (!self.isResume) {
  208. // 正常情况
  209. if (appDelegate.user_type == USER_ROLE_CUSTOMER && appDelegate.customer_type == CustomerTypeStore) {
  210. // customer的订单必须是Sales Order并且有提交权限才能提交
  211. if ([Singleton sharedInstance].currentOrderIsMerged && [Singleton sharedInstance].permissions_submit_order) {
  212. [items addObject:self.btnSubmitOrder];
  213. }
  214. } else {
  215. [items addObject:self.btnSubmitOrder];
  216. }
  217. } else {
  218. // 恢复
  219. if (self.userType == USER_ROLE_CUSTOMER && appDelegate.customer_type == CustomerTypeStore) {
  220. // customer的订单必须是Sales Order并且有提交权限才能提交
  221. if (canSubmit) {
  222. [items addObject:self.btnSubmitOrder];
  223. }
  224. } else {
  225. [items addObject:self.btnSubmitOrder];
  226. }
  227. [[NSUserDefaults standardUserDefaults] removeObjectForKey:@"urgency_resume"];
  228. [[NSUserDefaults standardUserDefaults] removeObjectForKey:@"urgency_userType"];
  229. [[NSUserDefaults standardUserDefaults] removeObjectForKey:@"urgency_submitOrder"];
  230. }
  231. // [items addObject:item2];
  232. self.navigationItem.rightBarButtonItems=items;
  233. if(appDelegate.can_submit_order)
  234. {
  235. [self.btnSubmitOrder setImage:submit_img];
  236. self.btnSubmitOrder.enabled = true;
  237. }
  238. else
  239. {
  240. [self.btnSubmitOrder setImage:nil];
  241. self.btnSubmitOrder.enabled = false;
  242. }
  243. self.navigationController.navigationBarHidden=false;
  244. }
  245. -(void) download_success
  246. {
  247. // 用于处理不同child,在成功去的数据后,需要附加的操作。
  248. self.have_tail=[[self.content_data_download valueForKey:@"has_reItem"] boolValue];
  249. NSString* order_customerid=[self getValue:@"customer_cid"];
  250. AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
  251. appDelegate.order_customer_id = order_customerid;
  252. }
  253. - (void)viewDidLoad {
  254. [super viewDidLoad];
  255. self.editable = YES;
  256. UIBarButtonItem *closeButton = [[UIBarButtonItem alloc] initWithImage:[[UIImage imageNamed:@"close"] imageWithRenderingMode:UIImageRenderingModeAutomatic]
  257. style:UIBarButtonItemStylePlain
  258. target:self
  259. action:@selector(onCloseClick:)];
  260. //[[UIBarButtonItem alloc] initWithTitle:NSLocalizedString(@"Close", nil) style:UIBarButtonItemStylePlain target:self action:@selector(onCloseClick:)];
  261. // closeButton.title = @"Close";
  262. self.navigationItem.leftBarButtonItem = closeButton;
  263. // self.navigationItem.backBarButtonItem = backButton;
  264. // Do any additional setup after loading the view.
  265. }
  266. - (void)onCommitOrderClick:(id)sender {
  267. // get customer info
  268. AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
  269. // if (appDelegate.user_type == USER_ROLE_CUSTOMER) {
  270. //
  271. // // 检查价格类型
  272. // // 提货价才能提交订单
  273. // /** 价格类型
  274. // * 0 提货价
  275. // * 1 统一价
  276. // * 2 计算价
  277. // */
  278. // NSInteger priceType = [Singleton sharedInstance].npd_shop_price_type;
  279. // if (priceType != 0) {
  280. //
  281. // NSString* pricename = nil;
  282. // switch (priceType) {
  283. // case 1:
  284. // pricename=flat_price;
  285. // break;
  286. // case 2:
  287. // pricename=given_price;
  288. // break;
  289. // default:
  290. // break;
  291. // }
  292. //
  293. // UIAlertController *alertVC = [UIAlertController alertControllerWithTitle:@"Warning" message:[NSString stringWithFormat:@"Current price is %@, please change to %@ and try again.",pricename,[Singleton sharedInstance].deliveryString] preferredStyle:UIAlertControllerStyleAlert];
  294. //
  295. // UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:@"ok" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
  296. //
  297. // [alertVC dismissViewControllerAnimated:YES completion:nil];
  298. //
  299. // }];
  300. //
  301. //
  302. // [alertVC addAction:cancelAction];
  303. //
  304. // [self presentViewController:alertVC animated:YES completion:nil];
  305. //
  306. // return;
  307. // }
  308. // }
  309. NSString* msg;
  310. #ifdef OFFLINE_MODE
  311. if(appDelegate.offline_mode)
  312. {
  313. msg=@"Are you sure to mark offline order as ready for submit?";
  314. }
  315. else
  316. #endif
  317. {
  318. msg=@"Submit order now?";
  319. // if(appDelegate.user_type == USER_ROLE_CUSTOMER) {
  320. //
  321. // NSString *specialInstuction = [Singleton sharedInstance].specialInstruction;
  322. // NSString * deliverprice=[Singleton sharedInstance].deliveryString;
  323. // msg = [NSString stringWithFormat:@"Are you sure to submit order?\n\n1. Your price type is %@, Order will sent to NPD with this price.",deliverprice];
  324. // if (specialInstuction.length) {
  325. // msg = [msg stringByAppendingFormat:@"\n2. Special Instruction: %@.",specialInstuction];
  326. // }
  327. //
  328. // }
  329. }
  330. // 2017-03-20 修改
  331. //
  332. // CustomIOSAlertView *alertView = [[CustomIOSAlertView alloc] init];
  333. //
  334. //
  335. //
  336. //
  337. // // Add some custom content to the alert view
  338. // [alertView setContainerView:[self createDemoView:msg]];
  339. //
  340. // // Modify the parameters
  341. //
  342. //
  343. // NSArray *titleArr = [NSMutableArray arrayWithObjects:@"NO",@"YES", nil];
  344. // [alertView setButtonTitles:titleArr];
  345. // //[alertView setDelegate:self];
  346. //
  347. // // You may use a Block, rather than a delegate.
  348. // [alertView setOnButtonTouchUpInside:^(CustomIOSAlertView *alertView, int buttonIndex) {
  349. // // DebugLog(@"Block: Button at position %d is clicked on alertView %d.", buttonIndex, (int)[alertView tag]);
  350. // if(buttonIndex==0)
  351. // [alertView close];
  352. // else
  353. // {
  354. // // add params check here.
  355. // [self.lastedit endEditing:true];
  356. // [self.lasttextview endEditing:true];
  357. //
  358. //
  359. //
  360. // // self.cancommit=true;
  361. // // NSMutableDictionary* upparams=[[NSMutableDictionary alloc] init];
  362. // // [upparams setValue:[self.params valueForKey:@"cart2Checkbox"] forKey:@"cart2Checkbox"];
  363. // // int section_count=[[self.content_data_download valueForKey:@"section_count"] intValue];
  364. // // for(int i=0;i<section_count;i++)
  365. // // {
  366. // // NSMutableDictionary * sectionjson = [[self.content_data_download objectForKey:[NSString stringWithFormat:@"section_%d",i ]] mutableCopy];
  367. // // int item_count = [[sectionjson valueForKey:@"count"] intValue];
  368. // // for(int j=0;j<item_count;j++)
  369. // // {
  370. // // NSMutableDictionary * itemjson=[[sectionjson objectForKey:[NSString stringWithFormat:@"item_%d",j ]] mutableCopy];
  371. // // NSString* key = [itemjson valueForKey:@"name"];
  372. // // if(key==nil || key.length==0)
  373. // // continue;
  374. // // if([[itemjson valueForKey:@"control"] isEqualToString:@"enum"])
  375. // // {
  376. // // NSString* single_select = [itemjson valueForKey:@"single_select"];
  377. // // if([single_select isEqualToString:@"true"])
  378. // // {
  379. // // NSDictionary* cadejson=[itemjson objectForKey:@"cadedate"];
  380. // // int count = [[cadejson valueForKey:@"count"] intValue];
  381. // // bool setvalue = false;
  382. // // for(int cc=0;cc<count;cc++)
  383. // // {
  384. // // NSDictionary* valjson=[cadejson objectForKey:[NSString stringWithFormat:@"val_%d",cc]];
  385. // // if([[valjson valueForKey:@"check"]intValue]==1)
  386. // // {
  387. // // [upparams setValue:[valjson valueForKey:@"value_id"] forKey:[itemjson valueForKey:@"name"]];
  388. // // setvalue=true;
  389. // // break;
  390. // // }
  391. // // }
  392. // // if([[itemjson valueForKey:@"required"] isEqualToString: @"true"] && setvalue==false)
  393. // // {
  394. // // self.cancommit = false;
  395. // // }
  396. // // }
  397. // // else
  398. // // {
  399. // // //not support multi select for now;
  400. // // }
  401. // // /*
  402. // // upparams setValue:itemjson forKey:<#(NSString *)#>
  403. // //
  404. // // */
  405. // // }else
  406. // // if([[itemjson valueForKey:@"control"] isEqualToString:@"action"])
  407. // // {
  408. // // if([[itemjson valueForKey:@"required"] isEqualToString: @"true"] && [itemjson objectForKeyedSubscript:@"data"]==nil)
  409. // // self.cancommit = false;
  410. // // }
  411. // // else if([[itemjson valueForKey:@"control"] isEqualToString:@"signature"])
  412. // // {
  413. // // if([[itemjson valueForKey:@"required"] isEqualToString: @"true"] && [itemjson objectForKeyedSubscript:@"value"] ==nil)
  414. // // self.cancommit = false;
  415. // //
  416. // // NSString* valuestr = [itemjson valueForKey:@"value"];
  417. // // [upparams setValue:valuestr forKey:[itemjson valueForKey:@"name"]];
  418. // // }
  419. // // else if([[itemjson valueForKey:@"control"] isEqualToString:@"switch"])
  420. // // {
  421. // // NSString* valuestr = [itemjson valueForKey:@"value"];
  422. // // [upparams setValue:valuestr forKey:[itemjson valueForKey:@"name"]];
  423. // //
  424. // // NSString* value = [itemjson valueForKey:@"value"];
  425. // // NSMutableDictionary* boolitem=nil;
  426. // // NSMutableDictionary* subjson=nil;
  427. // // if([value isEqualToString:@"true"])
  428. // // {
  429. // // boolitem =[[itemjson objectForKey:@"true"] mutableCopy];
  430. // //
  431. // // }
  432. // // else
  433. // // {
  434. // // boolitem =[[itemjson objectForKey:@"false"] mutableCopy];
  435. // //
  436. // // }
  437. // // subjson=[[boolitem objectForKey:@"sub_item"] mutableCopy];
  438. // // if( subjson!=nil /*&& !active*/)
  439. // // {
  440. // // int sub_count = [[subjson valueForKey:@"count"] intValue];
  441. // // for(int l=0;l<sub_count;l++)
  442. // // {
  443. // // NSMutableDictionary * modify_item=[[subjson objectForKey:[NSString stringWithFormat:@"item_%d",l ]] mutableCopy];
  444. // //
  445. // //
  446. // //
  447. // //
  448. // // if([modify_item valueForKey:@"value"]!=nil && ![[modify_item valueForKey:@"value"]isEqualToString:@""])
  449. // // [upparams setValue:[modify_item valueForKey:@"value"] forKey:[modify_item valueForKey:@"name"]];
  450. // // else
  451. // // {
  452. // // if([[modify_item valueForKey:@"required"] isEqualToString: @"true"] )
  453. // // self.cancommit = false;
  454. // // }
  455. // // }
  456. // //
  457. // //
  458. // //
  459. // // }
  460. // // }
  461. // // else
  462. // // {
  463. // // if([itemjson valueForKey:@"value"]!=nil && ![[itemjson valueForKey:@"value"]isEqualToString:@""])
  464. // // [upparams setValue:[itemjson valueForKey:@"value"] forKey:[itemjson valueForKey:@"name"]];
  465. // // else
  466. // // {
  467. // // if([[itemjson valueForKey:@"required"] isEqualToString: @"true"] )
  468. // // self.cancommit = false;
  469. // // }
  470. // // }
  471. // // upparams= [self subitem_param:itemjson addto:upparams ];
  472. // // }
  473. // // }
  474. // // if(self.cancommit==false)
  475. // // {
  476. // // [RAUtils alert_view:@"Fields with * mark cannot be empty." title:@"Some Requried Fields Are Missing."];
  477. // // self.content_data_control = [self translate_json:self.content_data_download changed:self.changed_data];
  478. // // //DebugLog(@"CONTENT translate:%@",[iSalesNetwork DataTOjsonString:self.content_data]);
  479. // // //[self.editorTable reloadData ];
  480. // // [self.editorTable reloadData];
  481. // // // [waitalert dismissViewControllerAnimated:YES completion:nil];
  482. // // return;
  483. // // }
  484. //
  485. // NSMutableDictionary* upparams = [self check_cancommit:true];
  486. // if(self.cancommit==false)
  487. // return;
  488. //
  489. // if(upparams[@"shipping"]==nil)
  490. // goto commit_order;
  491. // if([upparams[@"shipping"] isEqualToString:@"Shipping To Be Quoted"]||[upparams[@"shipping"] isEqualToString:@"To Be Quoted"])
  492. // {
  493. // upparams[@"shipping"] = nil;
  494. // goto commit_order;
  495. // }
  496. // else if([upparams[@"shipping"] doubleValue]==0)
  497. // {
  498. //
  499. //
  500. // UIAlertController *alertControl = [UIAlertController alertControllerWithTitle:@"Shipping is $0.00, continue submit?" message:nil preferredStyle:UIAlertControllerStyleAlert];
  501. // //block代码块取代了delegate
  502. //
  503. //
  504. //
  505. // UIAlertAction *actionOne = [UIAlertAction actionWithTitle:@"Yes" style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action)
  506. // {
  507. //
  508. // AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
  509. //
  510. // if(appDelegate.user_type ==USER_ROLE_EMPLOYEE )
  511. // {
  512. //
  513. // if(/*!self.have_tail*/ true)
  514. // {UIAlertController * waitalert = [RAUtils waiting_alert:self title:@"Order Submission"];
  515. // [upparams setValue:@"false" forKey:@"isHold"];
  516. // dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  517. //
  518. // NSDictionary* editor_json = [iSalesNetwork saveandcommit_Order:upparams];
  519. //
  520. // dispatch_async(dispatch_get_main_queue(), ^{
  521. // [waitalert dismissViewControllerAnimated:YES completion:nil];
  522. //
  523. //
  524. // if([[editor_json valueForKey:@"result"] intValue]==2)
  525. // {
  526. // // NSMutableDictionary * customerInfo=[self create_cusromer_info_from_table];
  527. //
  528. // // debug aaa
  529. // AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
  530. // NSString* company= appDelegate.customerInfo[@"customer_name"];
  531. // NSString* send_to =appDelegate.customerInfo[@"customer_email"];
  532. //
  533. // // appDelegate.customerInfo = customerInfo;
  534. // // appDelegate.contact_id = [customerInfo valueForKey:@"customer_cid"];
  535. // // appDelegate.order_code = nil;
  536. // [appDelegate closeOrder];
  537. // [((MainViewController*)appDelegate.main_vc) reloadOrder:true immediately:false];
  538. //
  539. // NSString* title=nil;
  540. // NSString* msg=nil;
  541. // if(appDelegate.offline_mode)
  542. // {
  543. // title=TITLE_OFFLINE_SUBMIT;
  544. // msg=MSG_OFFLINE_SUBMIT;
  545. // }
  546. // else
  547. // {
  548. // title=@"Submit successful.";
  549. // msg=[NSString stringWithFormat:@"SO#: %@",[editor_json valueForKey:@"so#"]];
  550. // }
  551. //
  552. // UIAlertView * alert = [[UIAlertView alloc] initWithTitle: title message:msg delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
  553. //
  554. // [alert show];
  555. //
  556. // NSString* pdf_url = [editor_json valueForKey:@"pdf_url"];
  557. // NSString* email_content =[editor_json valueForKey:@"email_content"];
  558. // NSString* soid=[editor_json valueForKey:@"so#"];
  559. // // if(pdf_url.length>0)
  560. // // {
  561. // //
  562. // // [alert dismissWithClickedButtonIndex:0 animated:FALSE];
  563. // // //[self downloadpdf:pdf_url];
  564. // //
  565. // //
  566. // // if([appDelegate.mode isEqualToString:@"Trade Show Mode"]&& appDelegate.submit_order_logout)
  567. // // {
  568. // // //bbb
  569. // // [((MainViewController*)appDelegate.main_vc) Loginout:false];
  570. // // }
  571. // //
  572. // // [self prepareReturn:nil];
  573. // //
  574. // // [self.navigationController popViewControllerAnimated:true];
  575. // //
  576. // // [appDelegate printPdf:pdf_url];
  577. // //// if(self.printPdfCallback)
  578. // //// self.printPdfCallback(pdf_url);
  579. // // }
  580. // // else
  581. // {
  582. // if([appDelegate.mode isEqualToString:@"TM"]&& appDelegate.submit_order_logout)
  583. // {
  584. // //bbb
  585. // [((MainViewController*)appDelegate.main_vc) Loginout:false];
  586. // }
  587. // [self prepareReturn:nil];
  588. //
  589. // [self.navigationController popViewControllerAnimated:true];
  590. //
  591. // if(pdf_url.length>0)
  592. // {
  593. //
  594. // [alert dismissWithClickedButtonIndex:0 animated:FALSE];
  595. // [appDelegate printPdf:pdf_url company:company send_to:send_to soid:soid content:email_content];
  596. // // [appDelegate printPdf:pdf_url];
  597. //
  598. // }
  599. // }
  600. //
  601. // }
  602. // else
  603. // {
  604. // [RAUtils message_alert:[editor_json valueForKey:@"err_msg"] title:@"Order Submission" controller:self] ;
  605. // }
  606. //
  607. //
  608. //
  609. //
  610. // });
  611. // });
  612. // }
  613. // else
  614. // {
  615. // 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];
  616. //
  617. //
  618. // alert.tag = KEEP_TAIL;
  619. //
  620. //
  621. // self.upparams = upparams;
  622. //
  623. // [alert show];
  624. // }
  625. //
  626. // }
  627. // else
  628. // { //USER_ROLE_CUSTOMER
  629. //
  630. // // if(self.have_tail)
  631. // // [upparams setValue:@"true" forKey:@"isHold"];
  632. // // else
  633. // // [upparams setValue:@"false" forKey:@"isHold"];
  634. // UIAlertController * waitalert = [RAUtils waiting_alert:self title:@"Order Submission"];
  635. //
  636. // [upparams setValue:@"true" forKey:@"isHold"];
  637. // dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  638. //
  639. // NSDictionary* editor_json = [iSalesNetwork saveandcommit_Order:upparams];
  640. //
  641. // dispatch_async(dispatch_get_main_queue(), ^{
  642. //
  643. // [waitalert dismissViewControllerAnimated:YES completion:nil];
  644. //
  645. // if([[editor_json valueForKey:@"result"] intValue]==2)
  646. // {
  647. // // NSMutableDictionary * customerInfo=[self create_cusromer_info_from_table];
  648. //
  649. //
  650. // AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
  651. // // appDelegate.customerInfo = customerInfo;
  652. //
  653. // // NSString* orderCode = [editor_json valueForKey:@"orderCode"];
  654. // // appDelegate.order_code = orderCode;
  655. // // appDelegate.order_status = [[editor_json valueForKey:@"orderStatus"] intValue];
  656. // [appDelegate closeOrder];
  657. // [((MainViewController*)appDelegate.main_vc) reloadOrder:true immediately:false];
  658. //
  659. // NSString* title=nil;
  660. // NSString* msg=nil;
  661. // if(appDelegate.offline_mode)
  662. // {
  663. // title=TITLE_OFFLINE_SUBMIT;
  664. // msg=MSG_OFFLINE_SUBMIT;
  665. // }
  666. // else
  667. // {
  668. // title=@"Submit successful.";
  669. // msg=[NSString stringWithFormat:@"SO#: %@",[editor_json valueForKey:@"so#"]];
  670. // }
  671. //
  672. // UIAlertView * alert = [[UIAlertView alloc] initWithTitle: title message:msg delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
  673. //
  674. // [alert show];
  675. // // // self.labelContact.text=appDelegate.contact_name;
  676. // //
  677. // // NSDictionary * customerinfo = appDelegate.customerInfo;
  678. // [self prepareReturn:nil];
  679. // [self.navigationController popViewControllerAnimated:true];
  680. // // [self.navigationController dismissViewControllerAnimated:true completion:^{
  681. // //
  682. // //
  683. // // ;
  684. // // }];
  685. //
  686. // }
  687. // else
  688. // {
  689. // [RAUtils message_alert:[editor_json valueForKey:@"err_msg"] title:@"Order Submission" controller:self] ;
  690. // }
  691. //
  692. //
  693. //
  694. //
  695. // });
  696. // });
  697. //
  698. // }
  699. //
  700. //
  701. //
  702. // }];
  703. //
  704. // UIAlertAction *alertthree = [UIAlertAction actionWithTitle:@"No" style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
  705. // //DebugLog(@"Cancel");
  706. //
  707. //
  708. // }];
  709. // [alertControl addAction:actionOne];
  710. //
  711. // [alertControl addAction:alertthree];
  712. //
  713. // //UIAlertControllerStyle类型为UIAlertControllerStyleAlert可以添加addTextFieldWithConfigurationHandler:^(UITextField *textField)
  714. //
  715. //
  716. //
  717. //
  718. // [self presentViewController:alertControl animated:YES completion:nil];
  719. //
  720. //
  721. //
  722. // }
  723. // else
  724. // {
  725. // commit_order:
  726. //
  727. // {
  728. // AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
  729. //
  730. // if(appDelegate.user_type ==USER_ROLE_EMPLOYEE )
  731. // {
  732. //
  733. // if(/*!self.have_tail*/ true)
  734. // {UIAlertController * waitalert = [RAUtils waiting_alert:self title:@"Order Submission"];
  735. // [upparams setValue:@"false" forKey:@"isHold"];
  736. // dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  737. //
  738. // NSDictionary* editor_json = [iSalesNetwork saveandcommit_Order:upparams];
  739. //
  740. // dispatch_async(dispatch_get_main_queue(), ^{
  741. // [waitalert dismissViewControllerAnimated:YES completion:nil];
  742. //
  743. //
  744. // if([[editor_json valueForKey:@"result"] intValue]==2)
  745. // {
  746. //
  747. // //debug bbb
  748. // // NSMutableDictionary * customerInfo=[self create_cusromer_info_from_table];
  749. //
  750. //
  751. // AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
  752. // NSString* company= appDelegate.customerInfo[@"customer_name"];
  753. // NSString* send_to =appDelegate.customerInfo[@"customer_email"];
  754. // // appDelegate.customerInfo = customerInfo;
  755. // // appDelegate.contact_id = [customerInfo valueForKey:@"customer_cid"];
  756. // // appDelegate.order_code = nil;
  757. // [appDelegate closeOrder];
  758. // [((MainViewController*)appDelegate.main_vc) reloadOrder:true immediately:false];
  759. //
  760. // NSString* title=nil;
  761. // NSString* msg=nil;
  762. // if(appDelegate.offline_mode)
  763. // {
  764. // title=TITLE_OFFLINE_SUBMIT;
  765. // msg=MSG_OFFLINE_SUBMIT;
  766. // }
  767. // else
  768. // {
  769. // title=@"Submit successful.";
  770. // msg=[NSString stringWithFormat:@"SO#: %@",[editor_json valueForKey:@"so#"]];
  771. // }
  772. //
  773. // UIAlertView * alert = [[UIAlertView alloc] initWithTitle: title message:msg delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
  774. //
  775. // [alert show];
  776. //
  777. // NSString* pdf_url = [editor_json valueForKey:@"pdf_url"];
  778. // NSString* email_content =[editor_json valueForKey:@"email_content"];
  779. // NSString* soid=[editor_json valueForKey:@"so#"];
  780. // // if(pdf_url.length>0)
  781. // // {
  782. // //
  783. // // [alert dismissWithClickedButtonIndex:0 animated:FALSE];
  784. // //// [self downloadpdf:pdf_url];
  785. // //
  786. // //
  787. // // if([appDelegate.mode isEqualToString:@"Trade Show Mode"]&& appDelegate.submit_order_logout)
  788. // // {
  789. // // //bbb
  790. // // [((MainViewController*)appDelegate.main_vc) Loginout:false];
  791. // // }
  792. // //
  793. // // [self prepareReturn:nil];
  794. // //
  795. // // [self.navigationController popViewControllerAnimated:true];
  796. // //
  797. // // [appDelegate printPdf:pdf_url];
  798. // //
  799. // //// if(self.printPdfCallback)
  800. // //// self.printPdfCallback(pdf_url);
  801. // // }
  802. // // else
  803. // {
  804. // if([appDelegate.mode isEqualToString:@"TM"]&& appDelegate.submit_order_logout)
  805. // {
  806. // //bbb
  807. // [((MainViewController*)appDelegate.main_vc) Loginout:false];
  808. // }
  809. // [self prepareReturn:nil];
  810. //
  811. // [self.navigationController popViewControllerAnimated:true];
  812. //
  813. //
  814. // if(pdf_url.length>0)
  815. // {
  816. //
  817. // [alert dismissWithClickedButtonIndex:0 animated:FALSE];
  818. //
  819. // [appDelegate printPdf:pdf_url company:company send_to:send_to soid:soid content:email_content];
  820. //
  821. //
  822. // }
  823. //
  824. //
  825. // }
  826. // // // self.labelContact.text=appDelegate.contact_name;
  827. // //
  828. // // NSDictionary * customerinfo = appDelegate.customerInfo;
  829. //
  830. //
  831. //
  832. //
  833. //
  834. //
  835. // }
  836. // else
  837. // {
  838. // [RAUtils message_alert:[editor_json valueForKey:@"err_msg"] title:@"Order Submission" controller:self] ;
  839. // }
  840. //
  841. //
  842. //
  843. //
  844. // });
  845. // });
  846. // }
  847. // else
  848. // {
  849. // 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];
  850. //
  851. //
  852. // alert.tag = KEEP_TAIL;
  853. //
  854. //
  855. // self.upparams = upparams;
  856. //
  857. // [alert show];
  858. // }
  859. //
  860. // }
  861. // else
  862. // { //USER_ROLE_CUSTOMER
  863. //
  864. // // if(self.have_tail)
  865. // // [upparams setValue:@"true" forKey:@"isHold"];
  866. // // else
  867. // // [upparams setValue:@"false" forKey:@"isHold"];
  868. // UIAlertController * waitalert = [RAUtils waiting_alert:self title:@"Order Submission"];
  869. //
  870. // [upparams setValue:@"true" forKey:@"isHold"];
  871. // dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  872. //
  873. // NSDictionary* editor_json = [iSalesNetwork saveandcommit_Order:upparams];
  874. //
  875. // dispatch_async(dispatch_get_main_queue(), ^{
  876. //
  877. // [waitalert dismissViewControllerAnimated:YES completion:nil];
  878. //
  879. // if([[editor_json valueForKey:@"result"] intValue]==2)
  880. // {
  881. // // NSMutableDictionary * customerInfo=[self create_cusromer_info_from_table];
  882. //
  883. //
  884. // AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
  885. // // appDelegate.customerInfo = customerInfo;
  886. //
  887. // // NSString* orderCode = [editor_json valueForKey:@"orderCode"];
  888. // // appDelegate.order_code = orderCode;
  889. // // appDelegate.order_status = [[editor_json valueForKey:@"orderStatus"] intValue];
  890. // [appDelegate closeOrder];
  891. // [((MainViewController*)appDelegate.main_vc) reloadOrder:true immediately:false];
  892. //
  893. // NSString* title=nil;
  894. // NSString* msg=nil;
  895. // if(appDelegate.offline_mode)
  896. // {
  897. // title=TITLE_OFFLINE_SUBMIT;
  898. // msg=MSG_OFFLINE_SUBMIT;
  899. // }
  900. // else
  901. // {
  902. // title=@"Submit successful.";
  903. // msg=[NSString stringWithFormat:@"SO#: %@",[editor_json valueForKey:@"so#"]];
  904. // }
  905. //
  906. //
  907. // UIAlertView * alert = [[UIAlertView alloc] initWithTitle: title message:msg delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
  908. //
  909. // [alert show];
  910. // // // self.labelContact.text=appDelegate.contact_name;
  911. // //
  912. // // NSDictionary * customerinfo = appDelegate.customerInfo;
  913. // [self prepareReturn:nil];
  914. // // [self.navigationController dismissViewControllerAnimated:true completion:^{
  915. // //
  916. // //
  917. // // ;
  918. // // }];
  919. // [self.navigationController popViewControllerAnimated:true];
  920. //
  921. // }
  922. // else
  923. // {
  924. // [RAUtils message_alert:[editor_json valueForKey:@"err_msg"] title:@"Order Submission" controller:self] ;
  925. // }
  926. //
  927. //
  928. //
  929. //
  930. // });
  931. // });
  932. //
  933. // }
  934. // }
  935. //
  936. //
  937. //
  938. //
  939. // }
  940. //
  941. //
  942. //
  943. //
  944. //
  945. //
  946. //
  947. //
  948. //
  949. //
  950. //
  951. // }
  952. // }];
  953. //
  954. // // [alertView setUseMotionEffects:true];
  955. //
  956. //
  957. // // And launch the dialog
  958. //
  959. // [alertView sizeToFit];
  960. // [alertView show];
  961. // UIAlertView * alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Submit Confirm.", nil) message:NSLocalizedString(msg, nil) delegate:self cancelButtonTitle:NSLocalizedString(@"NO", nil) otherButtonTitles:NSLocalizedString(@"YES", nil), nil];
  962. //
  963. // alert.tag = SUBMIT_CONFIRM;
  964. // [alert show];
  965. //
  966. UIAlertController *alertVC = [UIAlertController alertControllerWithTitle:@"Order Submission" message:msg preferredStyle:UIAlertControllerStyleAlert];
  967. UIAlertAction *yesAction = [UIAlertAction actionWithTitle:@"YES" style:UIAlertActionStyleDestructive handler:^(UIAlertAction * _Nonnull action) {
  968. {
  969. // add params check here.
  970. [self.lastedit endEditing:true];
  971. [self.lasttextview endEditing:true];
  972. NSMutableDictionary* upparams = [self check_cancommit:true];
  973. if(self.cancommit==false)
  974. return;
  975. // 2018-1-2 Modify
  976. if(appDelegate.user_type == USER_ROLE_CUSTOMER)
  977. {
  978. [self customer_commit_order:upparams];
  979. }
  980. else // USER_ROLE_EMPLOYEE
  981. {
  982. if([upparams[@"shipping"] isEqualToString:@"Shipping To Be Quoted"]||[upparams[@"shipping"] isEqualToString:@"To Be Quoted"])
  983. {
  984. upparams[@"shipping"] = nil;
  985. }
  986. if(upparams[@"shipping"]==nil || [upparams[@"shipping"] doubleValue]!=0)
  987. [self empolyee_commit_order:upparams];
  988. else
  989. {
  990. UIAlertController *alertControl = [UIAlertController alertControllerWithTitle:@"Shipping is $0.00, continue submit?" message:nil preferredStyle:UIAlertControllerStyleAlert];
  991. UIAlertAction *actionOne = [UIAlertAction actionWithTitle:@"Yes" style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action)
  992. {
  993. //yes
  994. [self empolyee_commit_order:upparams];
  995. }];
  996. UIAlertAction *alertthree = [UIAlertAction actionWithTitle:@"No" style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
  997. //DebugLog(@"Cancel");
  998. }];
  999. [alertControl addAction:actionOne];
  1000. [alertControl addAction:alertthree];
  1001. [self presentViewController:alertControl animated:YES completion:nil];
  1002. }
  1003. }
  1004. // if(upparams[@"shipping"]==nil)
  1005. // goto commit_order;
  1006. // if([upparams[@"shipping"] isEqualToString:@"Shipping To Be Quoted"]||[upparams[@"shipping"] isEqualToString:@"To Be Quoted"])
  1007. // {
  1008. // upparams[@"shipping"] = nil;
  1009. // goto commit_order;
  1010. // }
  1011. // else if([upparams[@"shipping"] doubleValue]==0)
  1012. // {
  1013. //
  1014. //
  1015. // UIAlertController *alertControl = [UIAlertController alertControllerWithTitle:@"Shipping is $0.00, continue submit?" message:nil preferredStyle:UIAlertControllerStyleAlert];
  1016. // //block代码块取代了delegate
  1017. //
  1018. //
  1019. //
  1020. // UIAlertAction *actionOne = [UIAlertAction actionWithTitle:@"Yes" style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action)
  1021. // {
  1022. //
  1023. // AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
  1024. //
  1025. // if(appDelegate.user_type ==USER_ROLE_EMPLOYEE )
  1026. // {
  1027. //
  1028. // if(/*!self.have_tail*/ true)
  1029. // {UIAlertController * waitalert = [RAUtils waiting_alert:self title:@"Order Submission"];
  1030. // [upparams setValue:@"false" forKey:@"isHold"];
  1031. // dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  1032. //
  1033. // NSDictionary* editor_json = [RANetwork saveandcommit_Order:upparams];
  1034. //
  1035. // dispatch_async(dispatch_get_main_queue(), ^{
  1036. // [waitalert dismissViewControllerAnimated:YES completion:nil];
  1037. //
  1038. //
  1039. // if([[editor_json valueForKey:@"result"] intValue]==2)
  1040. // {
  1041. // // NSMutableDictionary * customerInfo=[self create_cusromer_info_from_table];
  1042. //
  1043. // // debug aaa
  1044. // AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
  1045. // NSString* company= appDelegate.customerInfo[@"customer_name"];
  1046. // NSString* send_to =appDelegate.customerInfo[@"customer_email"];
  1047. //
  1048. // // appDelegate.customerInfo = customerInfo;
  1049. // // appDelegate.contact_id = [customerInfo valueForKey:@"customer_cid"];
  1050. // // appDelegate.order_code = nil;
  1051. // [appDelegate closeOrder];
  1052. // [((MainViewController*)appDelegate.main_vc) reloadOrder:true immediately:false];
  1053. //
  1054. // NSString* title=nil;
  1055. // NSString* msg=nil;
  1056. //#ifdef OFFLINE_MODE
  1057. // if(appDelegate.offline_mode)
  1058. // {
  1059. // title=TITLE_OFFLINE_SUBMIT;
  1060. // msg=MSG_OFFLINE_SUBMIT;
  1061. // }
  1062. // else
  1063. //#endif
  1064. // {
  1065. // title=@"Order submitted sucessfully";
  1066. // msg=[NSString stringWithFormat:@"Confirmation#: %@",[editor_json valueForKey:@"so#"]];
  1067. // }
  1068. //
  1069. // UIAlertView * alert = [[UIAlertView alloc] initWithTitle: title message:msg delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
  1070. //
  1071. // [alert show];
  1072. //
  1073. // NSString* pdf_url = [editor_json valueForKey:@"pdf_url"];
  1074. // NSString* email_content =[editor_json valueForKey:@"email_content"];
  1075. // NSString* soid=[editor_json valueForKey:@"so#"];
  1076. // // if(pdf_url.length>0)
  1077. // // {
  1078. // //
  1079. // // [alert dismissWithClickedButtonIndex:0 animated:FALSE];
  1080. // // //[self downloadpdf:pdf_url];
  1081. // //
  1082. // //
  1083. // // if([appDelegate.mode isEqualToString:@"Trade Show Mode"]&& appDelegate.submit_order_logout)
  1084. // // {
  1085. // // //bbb
  1086. // // [((MainViewController*)appDelegate.main_vc) Loginout:false];
  1087. // // }
  1088. // //
  1089. // // [self prepareReturn:nil];
  1090. // //
  1091. // // [self.navigationController popViewControllerAnimated:true];
  1092. // //
  1093. // // [appDelegate printPdf:pdf_url];
  1094. // //// if(self.printPdfCallback)
  1095. // //// self.printPdfCallback(pdf_url);
  1096. // // }
  1097. // // else
  1098. // {
  1099. // if([appDelegate.mode isEqualToString:@"TM"]&& appDelegate.submit_order_logout)
  1100. // {
  1101. // //bbb
  1102. // [((MainViewController*)appDelegate.main_vc) Loginout:false];
  1103. // }
  1104. // [self prepareReturn:nil];
  1105. //
  1106. // [self.navigationController popViewControllerAnimated:true];
  1107. //
  1108. // if(pdf_url.length>0)
  1109. // {
  1110. //
  1111. // [alert dismissWithClickedButtonIndex:0 animated:FALSE];
  1112. // [appDelegate printPdf:pdf_url company:company send_to:send_to soid:soid content:email_content];
  1113. // // [appDelegate printPdf:pdf_url];
  1114. //
  1115. // }
  1116. // }
  1117. //
  1118. // }
  1119. // else
  1120. // {
  1121. // [RAUtils message_alert:[editor_json valueForKey:@"err_msg"] title:@"Order Submission" controller:self] ;
  1122. // }
  1123. //
  1124. //
  1125. //
  1126. //
  1127. // });
  1128. // });
  1129. // }
  1130. // else
  1131. // {
  1132. // 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];
  1133. //
  1134. //
  1135. // alert.tag = KEEP_TAIL;
  1136. //
  1137. //
  1138. // self.upparams = upparams;
  1139. //
  1140. // [alert show];
  1141. // }
  1142. //
  1143. // }
  1144. // else
  1145. // { //USER_ROLE_CUSTOMER
  1146. //
  1147. // // if(self.have_tail)
  1148. // // [upparams setValue:@"true" forKey:@"isHold"];
  1149. // // else
  1150. // // [upparams setValue:@"false" forKey:@"isHold"];
  1151. // UIAlertController * waitalert = [RAUtils waiting_alert:self title:@"Order Submission"];
  1152. //
  1153. // [upparams setValue:@"true" forKey:@"isHold"];
  1154. // dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  1155. //
  1156. // NSDictionary* editor_json = [RANetwork saveandcommit_Order:upparams];
  1157. //
  1158. // dispatch_async(dispatch_get_main_queue(), ^{
  1159. //
  1160. // [waitalert dismissViewControllerAnimated:YES completion:nil];
  1161. //
  1162. // if([[editor_json valueForKey:@"result"] intValue]==2)
  1163. // {
  1164. // // NSMutableDictionary * customerInfo=[self create_cusromer_info_from_table];
  1165. //
  1166. //
  1167. // AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
  1168. // // appDelegate.customerInfo = customerInfo;
  1169. //
  1170. // // NSString* orderCode = [editor_json valueForKey:@"orderCode"];
  1171. // // appDelegate.order_code = orderCode;
  1172. // // appDelegate.order_status = [[editor_json valueForKey:@"orderStatus"] intValue];
  1173. // [appDelegate closeOrder];
  1174. // [((MainViewController*)appDelegate.main_vc) reloadOrder:true immediately:false];
  1175. //
  1176. // NSString* title=nil;
  1177. // NSString* msg=nil;
  1178. //#ifdef OFFLINE_MODE
  1179. // if(appDelegate.offline_mode)
  1180. // {
  1181. // title=TITLE_OFFLINE_SUBMIT;
  1182. // msg=MSG_OFFLINE_SUBMIT;
  1183. // }
  1184. // else
  1185. //#endif
  1186. // {
  1187. // title=@"Order submitted sucessfully";
  1188. // msg=[NSString stringWithFormat:@"Confirmation#: %@",[editor_json valueForKey:@"so#"]];
  1189. // }
  1190. //
  1191. // UIAlertView * alert = [[UIAlertView alloc] initWithTitle: title message:msg delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
  1192. //
  1193. // [alert show];
  1194. // // // self.labelContact.text=appDelegate.contact_name;
  1195. // //
  1196. // // NSDictionary * customerinfo = appDelegate.customerInfo;
  1197. // [self prepareReturn:nil];
  1198. // [self.navigationController popViewControllerAnimated:true];
  1199. // // [self.navigationController dismissViewControllerAnimated:true completion:^{
  1200. // //
  1201. // //
  1202. // // ;
  1203. // // }];
  1204. //
  1205. // }
  1206. // else
  1207. // {
  1208. // [RAUtils message_alert:[editor_json valueForKey:@"err_msg"] title:@"Order Submission" controller:self] ;
  1209. // }
  1210. //
  1211. //
  1212. //
  1213. //
  1214. // });
  1215. // });
  1216. //
  1217. // }
  1218. //
  1219. //
  1220. //
  1221. // }];
  1222. //
  1223. // UIAlertAction *alertthree = [UIAlertAction actionWithTitle:@"No" style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
  1224. // //DebugLog(@"Cancel");
  1225. //
  1226. //
  1227. // }];
  1228. // [alertControl addAction:actionOne];
  1229. //
  1230. // [alertControl addAction:alertthree];
  1231. //
  1232. // //UIAlertControllerStyle类型为UIAlertControllerStyleAlert可以添加addTextFieldWithConfigurationHandler:^(UITextField *textField)
  1233. //
  1234. //
  1235. //
  1236. //
  1237. // [self presentViewController:alertControl animated:YES completion:nil];
  1238. //
  1239. //
  1240. //
  1241. // }
  1242. // else
  1243. // {
  1244. // commit_order:
  1245. //
  1246. // {
  1247. // AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
  1248. //
  1249. // if(appDelegate.user_type ==USER_ROLE_EMPLOYEE )
  1250. // {
  1251. //
  1252. // if(/*!self.have_tail*/ true)
  1253. // {UIAlertController * waitalert = [RAUtils waiting_alert:self title:@"Order Submission"];
  1254. // [upparams setValue:@"false" forKey:@"isHold"];
  1255. // dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  1256. //
  1257. // NSDictionary* editor_json = [RANetwork saveandcommit_Order:upparams];
  1258. //
  1259. // dispatch_async(dispatch_get_main_queue(), ^{
  1260. // [waitalert dismissViewControllerAnimated:YES completion:nil];
  1261. //
  1262. //
  1263. // if([[editor_json valueForKey:@"result"] intValue]==2)
  1264. // {
  1265. //
  1266. // //debug bbb
  1267. // // NSMutableDictionary * customerInfo=[self create_cusromer_info_from_table];
  1268. //
  1269. //
  1270. // AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
  1271. // NSString* company= appDelegate.customerInfo[@"customer_name"];
  1272. // NSString* send_to =appDelegate.customerInfo[@"customer_email"];
  1273. // // appDelegate.customerInfo = customerInfo;
  1274. // // appDelegate.contact_id = [customerInfo valueForKey:@"customer_cid"];
  1275. // // appDelegate.order_code = nil;
  1276. // [appDelegate closeOrder];
  1277. // [((MainViewController*)appDelegate.main_vc) reloadOrder:true immediately:false];
  1278. //
  1279. // NSString* title=nil;
  1280. // NSString* msg=nil;
  1281. //#ifdef OFFLINE_MODE
  1282. // if(appDelegate.offline_mode)
  1283. // {
  1284. // title=TITLE_OFFLINE_SUBMIT;
  1285. // msg=MSG_OFFLINE_SUBMIT;
  1286. // }
  1287. // else
  1288. //#endif
  1289. // {
  1290. // title=@"Order submitted sucessfully";
  1291. // msg=[NSString stringWithFormat:@"Confirmation#: %@",[editor_json valueForKey:@"so#"]];
  1292. // }
  1293. //
  1294. // UIAlertView * alert = [[UIAlertView alloc] initWithTitle: title message:msg delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
  1295. //
  1296. // [alert show];
  1297. //
  1298. // NSString* pdf_url = [editor_json valueForKey:@"pdf_url"];
  1299. // NSString* email_content =[editor_json valueForKey:@"email_content"];
  1300. // NSString* soid=[editor_json valueForKey:@"so#"];
  1301. // // if(pdf_url.length>0)
  1302. // // {
  1303. // //
  1304. // // [alert dismissWithClickedButtonIndex:0 animated:FALSE];
  1305. // //// [self downloadpdf:pdf_url];
  1306. // //
  1307. // //
  1308. // // if([appDelegate.mode isEqualToString:@"Trade Show Mode"]&& appDelegate.submit_order_logout)
  1309. // // {
  1310. // // //bbb
  1311. // // [((MainViewController*)appDelegate.main_vc) Loginout:false];
  1312. // // }
  1313. // //
  1314. // // [self prepareReturn:nil];
  1315. // //
  1316. // // [self.navigationController popViewControllerAnimated:true];
  1317. // //
  1318. // // [appDelegate printPdf:pdf_url];
  1319. // //
  1320. // //// if(self.printPdfCallback)
  1321. // //// self.printPdfCallback(pdf_url);
  1322. // // }
  1323. // // else
  1324. // {
  1325. // NSMutableDictionary* value=[[NSMutableDictionary alloc]init];
  1326. // if([appDelegate.mode isEqualToString:@"TM"]&& appDelegate.submit_order_logout)
  1327. // {
  1328. // //bbb
  1329. // [((MainViewController*)appDelegate.main_vc) Loginout:false];
  1330. // value[@"commitorder_logout"]=@"true";
  1331. // }
  1332. //
  1333. //
  1334. // value[@"is_subaction"] = self.params[@"is_subaction"];
  1335. // value[@"subaction_tag"] = self.params[@"subaction_tag"];
  1336. //
  1337. // [self prepareReturn:value];
  1338. //
  1339. // [self.navigationController popViewControllerAnimated:true];
  1340. //
  1341. //
  1342. // if(pdf_url.length>0)
  1343. // {
  1344. //
  1345. // [alert dismissWithClickedButtonIndex:0 animated:FALSE];
  1346. //
  1347. // [appDelegate printPdf:pdf_url company:company send_to:send_to soid:soid content:email_content];
  1348. //
  1349. //
  1350. // }
  1351. //
  1352. //
  1353. // }
  1354. // // // self.labelContact.text=appDelegate.contact_name;
  1355. // //
  1356. // // NSDictionary * customerinfo = appDelegate.customerInfo;
  1357. //
  1358. //
  1359. //
  1360. //
  1361. //
  1362. //
  1363. // }
  1364. // else
  1365. // {
  1366. // [RAUtils message_alert:[editor_json valueForKey:@"err_msg"] title:@"Order Submission" controller:self] ;
  1367. // }
  1368. //
  1369. //
  1370. //
  1371. //
  1372. // });
  1373. // });
  1374. // }
  1375. // else
  1376. // {
  1377. // 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];
  1378. //
  1379. //
  1380. // alert.tag = KEEP_TAIL;
  1381. //
  1382. //
  1383. // self.upparams = upparams;
  1384. //
  1385. // [alert show];
  1386. // }
  1387. //
  1388. // }
  1389. // else
  1390. // { //USER_ROLE_CUSTOMER
  1391. //
  1392. // // if(self.have_tail)
  1393. // // [upparams setValue:@"true" forKey:@"isHold"];
  1394. // // else
  1395. // // [upparams setValue:@"false" forKey:@"isHold"];
  1396. // UIAlertController * waitalert = [RAUtils waiting_alert:self title:@"Order Submission"];
  1397. //
  1398. // [upparams setValue:@"true" forKey:@"isHold"];
  1399. // dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  1400. //
  1401. // NSDictionary* editor_json = [RANetwork saveandcommit_Order:upparams];
  1402. //
  1403. // dispatch_async(dispatch_get_main_queue(), ^{
  1404. //
  1405. // [waitalert dismissViewControllerAnimated:YES completion:nil];
  1406. //
  1407. // if([[editor_json valueForKey:@"result"] intValue]==2)
  1408. // {
  1409. // // NSMutableDictionary * customerInfo=[self create_cusromer_info_from_table];
  1410. //
  1411. //
  1412. // AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
  1413. // // appDelegate.customerInfo = customerInfo;
  1414. //
  1415. // // NSString* orderCode = [editor_json valueForKey:@"orderCode"];
  1416. // // appDelegate.order_code = orderCode;
  1417. // // appDelegate.order_status = [[editor_json valueForKey:@"orderStatus"] intValue];
  1418. // [appDelegate closeOrder];
  1419. // [((MainViewController*)appDelegate.main_vc) reloadOrder:true immediately:false];
  1420. //
  1421. // NSString* title=nil;
  1422. // NSString* msg=nil;
  1423. //#ifdef OFFLINE_MODE
  1424. // if(appDelegate.offline_mode)
  1425. // {
  1426. // title=TITLE_OFFLINE_SUBMIT;
  1427. // msg=MSG_OFFLINE_SUBMIT;
  1428. // }
  1429. // else
  1430. //#endif
  1431. // {
  1432. // title=@"Order submitted sucessfully";
  1433. // msg=[NSString stringWithFormat:@"Confirmation#: %@",[editor_json valueForKey:@"so#"]];
  1434. // }
  1435. //
  1436. //
  1437. // UIAlertView * alert = [[UIAlertView alloc] initWithTitle: title message:msg delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
  1438. //
  1439. // [alert show];
  1440. // // // self.labelContact.text=appDelegate.contact_name;
  1441. // //
  1442. // // NSDictionary * customerinfo = appDelegate.customerInfo;
  1443. // [self prepareReturn:nil];
  1444. // // [self.navigationController dismissViewControllerAnimated:true completion:^{
  1445. // //
  1446. // //
  1447. // // ;
  1448. // // }];
  1449. // [self.navigationController popViewControllerAnimated:true];
  1450. //
  1451. // }
  1452. // else
  1453. // {
  1454. // [RAUtils message_alert:[editor_json valueForKey:@"err_msg"] title:@"Order Submission" controller:self] ;
  1455. // }
  1456. //
  1457. //
  1458. //
  1459. //
  1460. // });
  1461. // });
  1462. //
  1463. // }
  1464. // }
  1465. //
  1466. //
  1467. //
  1468. //
  1469. // }
  1470. }
  1471. }];
  1472. UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:@"NO" style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {
  1473. }];
  1474. [alertVC addAction:yesAction];
  1475. [alertVC addAction:cancelAction];
  1476. [self presentViewController:alertVC animated:yesAction completion:nil];
  1477. }
  1478. - (UIView *)createDemoView:(NSString*) msg
  1479. {
  1480. UIView *demoView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 290, 200)];
  1481. // UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(10, 10, 270, 180)];
  1482. // [imageView setImage:[UIImage imageNamed:@"demo"]];
  1483. UILabel *titleLabel = [[UILabel alloc] initWithFrame:CGRectMake(10, 10, 270, 10)];
  1484. titleLabel.font = [UIFont boldSystemFontOfSize:20];
  1485. titleLabel.text=@"Order Submission";
  1486. titleLabel.numberOfLines = 0;
  1487. titleLabel.lineBreakMode =NSLineBreakByWordWrapping;
  1488. // titleLabel.textAlignment = NSTextAlignmentRight;
  1489. titleLabel.textAlignment = NSTextAlignmentCenter;
  1490. CGSize constraintkey = CGSizeMake(270, 20000.0f);//key label width is 40% cell width;
  1491. CGSize sizetitle = [titleLabel.text=@"Order Submission" sizeWithFont:[UIFont systemFontOfSize:20.0] constrainedToSize:constraintkey lineBreakMode:NSLineBreakByWordWrapping];
  1492. //[titleLabel sizeToFit];
  1493. // titleLabel.center.x = demoView.center.x;
  1494. titleLabel.frame = CGRectMake(10, 10, 270, sizetitle.height);
  1495. [demoView addSubview:titleLabel];
  1496. UILabel *lineLabel = [[UILabel alloc] initWithFrame:CGRectMake(15, titleLabel.frame.origin.y+ titleLabel.frame.size.height+20, 260, 10)];
  1497. lineLabel.font = [UIFont systemFontOfSize:17];
  1498. lineLabel.text=msg;
  1499. lineLabel.numberOfLines = 0;
  1500. lineLabel.lineBreakMode =NSLineBreakByWordWrapping;
  1501. CGSize sizemsg = [msg sizeWithFont:[UIFont systemFontOfSize:17.0] constrainedToSize:constraintkey lineBreakMode:NSLineBreakByWordWrapping];
  1502. lineLabel.frame = CGRectMake(15, titleLabel.frame.origin.y+ titleLabel.frame.size.height+20, 260, sizemsg.height);
  1503. //[lineLabel sizeToFit];
  1504. [demoView addSubview:lineLabel];
  1505. demoView.frame = CGRectMake(0, 0, 290, lineLabel.frame.origin.y+lineLabel.frame.size.height+25);
  1506. return demoView;
  1507. }
  1508. - (void)onCloseClick:(UIButton *)sender {
  1509. AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
  1510. if (self.resumeOrder) {
  1511. [appDelegate.main_vc.navigationController popViewControllerAnimated:YES];
  1512. return;
  1513. }
  1514. //
  1515. // NSRange range = [tempStr rangeOfString:@")\">"];//判断字符串是否包含
  1516. //
  1517. // //if (range.location ==NSNotFound)//不包含
  1518. // if (range.length >0)//包含
  1519. // {
  1520. //
  1521. //
  1522. //
  1523. // }
  1524. // else//不包含
  1525. // {
  1526. //
  1527. // }
  1528. UIAlertView * alert = nil;
  1529. if(appDelegate.order_status==0)
  1530. {
  1531. 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];
  1532. }
  1533. else
  1534. {
  1535. 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];
  1536. }
  1537. alert.tag = CLOSE_ACTION;
  1538. // alert.
  1539. [alert show];
  1540. // if ([[upparams valueForKey:@"close_on_save"] boolValue]) {
  1541. // appDelegate.order_code = nil;
  1542. //
  1543. // }
  1544. }
  1545. - (void)didReceiveMemoryWarning {
  1546. [super didReceiveMemoryWarning];
  1547. // Dispose of any resources that can be recreated.
  1548. }
  1549. - (IBAction)onSaveClick:(id)sender {
  1550. // id foo = nil;
  1551. // [[NSMutableArray array] addObject:foo];
  1552. // add params check here.
  1553. [self.lastedit endEditing:true];
  1554. [self.lasttextview endEditing:true];
  1555. NSMutableDictionary* upparams = [self check_cancommit:false];
  1556. // if(self.cancommit==false)
  1557. // return;
  1558. if([upparams[@"shipping"] isEqualToString:@"Shipping To Be Quoted"]||[upparams[@"shipping"] isEqualToString:@"To Be Quoted"])
  1559. upparams[@"shipping"] = nil;
  1560. UIAlertController * waitalert = [RAUtils waiting_alert:self title:@"Saving Order"];
  1561. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  1562. NSDictionary* editor_json = [RANetwork save_Order:upparams];
  1563. dispatch_async(dispatch_get_main_queue(), ^{
  1564. [waitalert dismissViewControllerAnimated:YES completion:nil];
  1565. if([[editor_json valueForKey:@"result"] intValue]==2)
  1566. {
  1567. AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
  1568. NSMutableDictionary * customerInfo=[self create_cusromer_info_from_table];
  1569. if(appDelegate.user_type ==USER_ROLE_EMPLOYEE)
  1570. {
  1571. appDelegate.customerInfo = customerInfo;
  1572. appDelegate.contact_id = [customerInfo valueForKey:@"customer_cid"];
  1573. }
  1574. NSString *msg = nil;
  1575. if ([editor_json objectForKey:@"so#"]) {
  1576. msg = [@"SO#:" stringByAppendingString:[editor_json objectForKey:@"so#"]];
  1577. }
  1578. [RAUtils message_alert:msg title:@"Order Saved" controller:self] ;
  1579. if([appDelegate.mode isEqualToString:@"TM"]&& appDelegate.save_order_logout && appDelegate.user_type ==USER_ROLE_EMPLOYEE)
  1580. {
  1581. [((MainViewController*)appDelegate.main_vc) Loginout:false];
  1582. [self prepareReturn:nil];
  1583. [self.navigationController popViewControllerAnimated:true];
  1584. }
  1585. else{
  1586. #ifdef RA_NOTIFICATION
  1587. [ActiveViewController Notify:@"OrderListViewController" Message:RA_NOTIFICATION_RELOAD_DATA];
  1588. #else
  1589. AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
  1590. [((MainViewController*)appDelegate.main_vc) reloadOrder:true immediately:false];
  1591. #endif
  1592. }
  1593. if (appDelegate.user_type == USER_ROLE_CUSTOMER && appDelegate.customer_type == CustomerTypeStore) {
  1594. if (![Singleton sharedInstance].currentOrderIsMerged) {
  1595. [self releaseOrderAfterSave];
  1596. }
  1597. }
  1598. // if ([[upparams valueForKey:@"close_on_save"] boolValue]) {
  1599. // appDelegate.order_code = nil;
  1600. //
  1601. // }
  1602. // // self.labelContact.text=appDelegate.contact_name;
  1603. //
  1604. // NSDictionary * customerinfo = appDelegate.customerInfo;
  1605. // [self prepareReturn:nil];
  1606. // [self.navigationController dismissViewControllerAnimated:true completion:^{
  1607. //
  1608. //
  1609. // ;
  1610. // }];
  1611. }
  1612. else
  1613. {
  1614. [RAUtils message_alert:[editor_json valueForKey:@"err_msg"] title:@"Save Order" controller:self] ;
  1615. }
  1616. });
  1617. });
  1618. }
  1619. - (void)textFieldDidEndEditing:(UITextField *)textField
  1620. {
  1621. [super textFieldDidEndEditing:textField];
  1622. UITableViewCell *cell = (UITableViewCell *) textField.superview.superview;
  1623. NSIndexPath * indexPath = [self.editorTable indexPathForCell:cell];
  1624. NSMutableDictionary* section_json=nil;
  1625. // DebugLog(@"endedit %d_%d",indexPath.section,indexPath.row);
  1626. NSMutableDictionary* item_json =[((NSMutableArray*)self.content_data_control[indexPath.section])[indexPath.row] mutableCopy];
  1627. NSString* name = [item_json valueForKey:@"name"];
  1628. if([name isEqualToString:@"shipping"]|| [name isEqualToString:@"handling_fee_value"]||[name isEqualToString:@"lift_gate_value"]||[name isEqualToString:@"tax_percentage"])
  1629. {
  1630. float shipping = [self getprice:@"shipping" section:indexPath.section];
  1631. float paymentsAndCredits = [self getprice:@"paymentsAndCredits" section:indexPath.section];
  1632. float handling_fee_value = [self getprice:@"handling_fee_value" section:indexPath.section];
  1633. float lift_gate =[self getprice:@"lift_gate_value" section:indexPath.section];
  1634. float tax = [self getprice:@"tax_percentage" section:indexPath.section]/100.0*paymentsAndCredits;
  1635. float totalprice=shipping+paymentsAndCredits+handling_fee_value+lift_gate+tax;
  1636. section_json = [[self.content_data_download objectForKey:[NSString stringWithFormat:@"section_%ld",(long)indexPath.section ]] mutableCopy];
  1637. int count=0;
  1638. count=[[section_json valueForKey:@"count"] intValue];
  1639. int total_row_idx=-1;
  1640. for(int i=0;i<count;i++)
  1641. {
  1642. NSDictionary * olditem=[[section_json objectForKey:[NSString stringWithFormat:@"item_%d",i ]] mutableCopy];
  1643. if([[olditem valueForKey:@"name"] isEqualToString:@"totalPrice" ])
  1644. {
  1645. [olditem setValue:[NSString stringWithFormat:@"%.2f",totalprice] forKey:@"value"];
  1646. [olditem setValue:@"true" forKey:@"dirty"];
  1647. [section_json setObject:olditem forKey:[NSString stringWithFormat:@"item_%d",i ]];
  1648. total_row_idx=i;
  1649. }
  1650. }
  1651. [self.content_data_download setObject:section_json forKey:[NSString stringWithFormat:@"section_%ld",(long)indexPath.section ]];
  1652. self.content_data_control = [self translate_json:self.content_data_download changed: self.changed_data];
  1653. if(total_row_idx>=0)
  1654. {
  1655. NSUInteger newIndex[] = {indexPath.section, total_row_idx};
  1656. NSIndexPath *newPath = [[NSIndexPath alloc] initWithIndexes:newIndex length:2];
  1657. // DebugLog(@"before refresh %@",NSStringFromCGSize(self.editorTable.contentSize));
  1658. [self.editorTable reloadRowsAtIndexPaths:@[newPath]withRowAnimation:UITableViewRowAnimationMiddle];
  1659. // DebugLog(@"after refresh %@",NSStringFromCGSize(self.editorTable.contentSize));
  1660. // CGSize tablecontent =self.editorTable.contentSize;
  1661. // tablecontent.height=tablecontent.height+self.keyboard_h;
  1662. // self.editorTable.contentSize=tablecontent;
  1663. //
  1664. //
  1665. // DebugLog(@"resize to %@",NSStringFromCGSize(self.editorTable.contentSize));
  1666. }
  1667. // self.content_data = [editor_json mutableCopy];
  1668. // self.content_data = [self translate_json:editor_json];
  1669. // NSMutableDictionary* content_data1 = [self translate_json:self.content_data];
  1670. // [self.editorTable reloadData];
  1671. }
  1672. //
  1673. // [item_json setValue:@"true" forKey:@"dirty"];
  1674. // [item_json setValue:textField.text forKey:@"value"];
  1675. }
  1676. -(float) getprice:(NSString*) name section :(long) index
  1677. {
  1678. NSMutableDictionary* section_json=nil;
  1679. section_json = [[self.content_data_download objectForKey:[NSString stringWithFormat:@"section_%ld",index ]] mutableCopy];
  1680. int count=0;
  1681. count=[[section_json valueForKey:@"count"] intValue];
  1682. for(int i=0;i<count;i++)
  1683. {
  1684. NSDictionary * olditem=[[section_json objectForKey:[NSString stringWithFormat:@"item_%d",i ]] mutableCopy];
  1685. if([[olditem valueForKey:@"name"] isEqualToString:name])
  1686. {
  1687. return [[olditem valueForKey:@"value"] floatValue];
  1688. }
  1689. }
  1690. return 0;
  1691. }
  1692. /*
  1693. #pragma mark - Navigation
  1694. // In a storyboard-based application, you will often want to do a little preparation before navigation
  1695. - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
  1696. // Get the new view controller using [segue destinationViewController].
  1697. // Pass the selected object to the new view controller.
  1698. }
  1699. */
  1700. #pragma mark - UIAlertViewDelegate
  1701. // Called when a button is clicked. The view will be automatically dismissed after this call returns
  1702. - (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
  1703. {
  1704. if(alertView.tag == CLOSE_ACTION)
  1705. {
  1706. if(buttonIndex==1)
  1707. {
  1708. [self.navigationController popViewControllerAnimated:true];
  1709. // back to cart;
  1710. // [self.navigationController dismissViewControllerAnimated:true completion:^{
  1711. // ;
  1712. // }];
  1713. // if ([[upparams valueForKey:@"close_on_save"] boolValue]) {
  1714. // appDelegate.order_code = nil;
  1715. //
  1716. // }
  1717. }
  1718. if(buttonIndex==2)
  1719. {
  1720. [self.navigationController popViewControllerAnimated:false];
  1721. AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
  1722. [((MainViewController*)appDelegate.main_vc) switchToOrder];
  1723. // back to cart;
  1724. // [self.navigationController dismissViewControllerAnimated:true completion:^{
  1725. // ;
  1726. // }];
  1727. // if ([[upparams valueForKey:@"close_on_save"] boolValue]) {
  1728. // appDelegate.order_code = nil;
  1729. //
  1730. // }
  1731. }
  1732. else if(buttonIndex==3)
  1733. {
  1734. // close order;
  1735. AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
  1736. UIAlertController * waitalert = [RAUtils waiting_alert:self title:@"Release Order"];
  1737. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  1738. NSDictionary* order_json = [RANetwork release_Order:appDelegate.order_code withScreen:nil];
  1739. dispatch_async(dispatch_get_main_queue(), ^{
  1740. [waitalert dismissViewControllerAnimated:YES completion:nil];
  1741. if([[order_json valueForKey:@"result"] intValue]==2)
  1742. {
  1743. AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
  1744. // appDelegate.order_code = nil;
  1745. [appDelegate closeOrder];
  1746. #ifdef RA_NOTIFICATION
  1747. [ActiveViewController Notify:@"CartViewController,OrderListViewController" Message:RA_NOTIFICATION_RELOAD_DATA];
  1748. #else
  1749. [((MainViewController*)appDelegate.main_vc) reloadCart:true immediately:false];
  1750. [((MainViewController*)appDelegate.main_vc) reloadOrder:true immediately:false];
  1751. #endif
  1752. [((MainViewController*)appDelegate.main_vc) switchToHome];
  1753. if([appDelegate.mode isEqualToString:@"TM"]&& appDelegate.submit_order_logout)
  1754. {
  1755. [((MainViewController*)appDelegate.main_vc) Loginout:false];
  1756. }
  1757. [self prepareReturn:nil];
  1758. [self.navigationController popViewControllerAnimated:true];
  1759. // [self.navigationController dismissViewControllerAnimated:true completion:^{
  1760. // ;
  1761. // }];
  1762. }
  1763. else
  1764. {
  1765. [RAUtils message_alert:[order_json valueForKey:@"err_msg"] title:@"Open Order"controller:self] ;
  1766. }
  1767. });
  1768. });
  1769. //
  1770. // }
  1771. }
  1772. }
  1773. }
  1774. //
  1775. //
  1776. //-(void) downloadpdf:(NSString* )url
  1777. //{
  1778. // UIAlertController * waitalert = [RAUtils waiting_alert:self title:@"Printing..."];
  1779. // dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  1780. //
  1781. //
  1782. // NSMutableURLRequest *request = [[NSMutableURLRequest alloc] initWithURL:[NSURL URLWithString:url] cachePolicy:NSURLRequestReloadIgnoringLocalCacheData timeoutInterval:60*5];
  1783. //
  1784. // //设置请求方式为get
  1785. //
  1786. // [request setHTTPMethod:@"GET"];
  1787. //
  1788. // //添加用户会话id
  1789. //
  1790. // [request addValue:@"text/html" forHTTPHeaderField:@"Content-Type"];
  1791. //
  1792. // //连接发送请求
  1793. //
  1794. //
  1795. // NSHTTPURLResponse* urlResponse = nil;
  1796. //
  1797. // NSError *error = [[NSError alloc] init];
  1798. //
  1799. // NSData* content= [NSURLConnection sendSynchronousRequest:request returningResponse:&urlResponse error:&error];
  1800. //
  1801. // // self.filename = [urlResponse suggestedFilename];
  1802. //
  1803. //
  1804. // dispatch_async(dispatch_get_main_queue(), ^{
  1805. // [waitalert dismissViewControllerAnimated:YES completion:nil];
  1806. // // self.navigationItem.title = self.save_name;
  1807. // // UIRefreshControl *reF = (UIRefreshControl *)[self.view viewWithTag:200];
  1808. // // self.content=nil;
  1809. // if(content!=nil&&content.length>0)
  1810. // {
  1811. //
  1812. //
  1813. // [self startAirPrintWithData:content];
  1814. //
  1815. //
  1816. // }
  1817. // else
  1818. // {
  1819. // [RAUtils message_alert:nil title:@"Open PDF Failed" controller:self];
  1820. // // self.content = [self.url dataUsingEncoding:NSUTF8StringEncoding];
  1821. // }
  1822. //
  1823. // ;
  1824. // // DebugLog(@"%@",[[NSString alloc] initWithData:self.content encoding:NSASCIIStringEncoding]);
  1825. // //
  1826. //
  1827. //
  1828. // // [self.webView loadData:self.content MIMEType:urlResponse.MIMEType textEncodingName:nil baseURL:nil];
  1829. //
  1830. //
  1831. //
  1832. //
  1833. // });
  1834. // });
  1835. //}
  1836. //
  1837. //- (void)startAirPrintWithData:(id )data
  1838. //{
  1839. //
  1840. //
  1841. //
  1842. //
  1843. // UIPrintInteractionController* airPrinterController=[UIPrintInteractionController sharedPrintController];
  1844. // UIPrintInfo *printInfo = [UIPrintInfo printInfo];
  1845. // printInfo.outputType = UIPrintInfoOutputGeneral;
  1846. // printInfo.orientation = UIPrintInfoOrientationPortrait;
  1847. // printInfo.jobName = @"CoolVisitAirPrint";
  1848. // airPrinterController.printInfo = printInfo;
  1849. // airPrinterController.printingItem = data;
  1850. // airPrinterController.delegate = self;
  1851. //
  1852. //
  1853. // airPrinterController.showsNumberOfCopies=true;
  1854. // airPrinterController.showsPageRange = true;
  1855. // airPrinterController.showsPaperSelectionForLoadedPapers=true;
  1856. //
  1857. // void (^completionHandler)(UIPrintInteractionController *, BOOL, NSError *) = ^(UIPrintInteractionController *printController, BOOL completed, NSError *error) {
  1858. // if(completed && error)
  1859. // DebugLog(@"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);
  1860. // };
  1861. //
  1862. // AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
  1863. //
  1864. // UIPrinter *airPrinter = [UIPrinter printerWithURL:[NSURL URLWithString:appDelegate.printerURL] ];///*self.printer;*/
  1865. //
  1866. //
  1867. //
  1868. //
  1869. // [[UIPrinter printerWithURL:[NSURL URLWithString:appDelegate.printerURL]] contactPrinter:^(BOOL available)
  1870. // {
  1871. // if (available&& appDelegate.printerURL.length>0)
  1872. // {
  1873. //
  1874. // [airPrinterController printToPrinter:airPrinter completionHandler:completionHandler];
  1875. // DebugLog(@"AIRPRINTER AVAILABLE");
  1876. // }
  1877. // else
  1878. // {
  1879. //
  1880. // // [airPrinterController presentFromRect:CGRectMake(0, 0, 300, 500) inView:self.view animated:YES completionHandler:
  1881. // //
  1882. // //
  1883. // //
  1884. // // // [printPicker presentAnimated:YES completionHandler:
  1885. // // ^(UIPrintInteractionController *printerController, BOOL userDidSelect, NSError *error)
  1886. // // {
  1887. // // if (userDidSelect)
  1888. // // {
  1889. // // NSString* sid= printerController.printInfo.printerID;
  1890. // // UIPrintPaper*paper= printerController.printPaper;
  1891. // //
  1892. // // }
  1893. // // }];
  1894. //
  1895. //
  1896. // DebugLog(@"AIRPRINTER NOT AVAILABLE");
  1897. //
  1898. //
  1899. //
  1900. // if (NSFoundationVersionNumber > NSFoundationVersionNumber_iOS_7_1)
  1901. // {
  1902. // UIPrinterPickerController *printPicker = [UIPrinterPickerController printerPickerControllerWithInitiallySelectedPrinter:nil];
  1903. // // [printPicker presentFromBarButtonItem:self.btnSubmitOrder animated:yes completionHandler:
  1904. //
  1905. //
  1906. //
  1907. // [ printPicker presentFromBarButtonItem:self.btnSubmitOrder animated:YES completionHandler:
  1908. //
  1909. //
  1910. // // [printPicker presentFromRect:CGRectMake(0, 0, 300, 500) inView:self.view animated:YES completionHandler:
  1911. //
  1912. //
  1913. //
  1914. // // [printPicker presentAnimated:YES completionHandler:
  1915. // ^(UIPrinterPickerController *printerPicker, BOOL userDidSelect, NSError *error)
  1916. // {
  1917. // if (userDidSelect)
  1918. // {
  1919. // //User selected the item in the UIPrinterPickerController and got the printer details.
  1920. //
  1921. // [UIPrinterPickerController printerPickerControllerWithInitiallySelectedPrinter:printerPicker.selectedPrinter];
  1922. //
  1923. // //Here you will get the printer and printer details.ie,
  1924. // // printerPicker.selectedPrinter, printerPicker.selectedPrinter.displayName, printerPicker.selectedPrinter.URL etc. So you can display the printer name in your label text or button title.
  1925. //
  1926. //
  1927. //
  1928. //
  1929. // appDelegate.printerURL =printerPicker.selectedPrinter.URL.absoluteString;
  1930. //
  1931. // [self startAirPrintWithData:data];
  1932. //
  1933. // }
  1934. // else
  1935. // {
  1936. //
  1937. //
  1938. // AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
  1939. // if([appDelegate.mode isEqualToString:@"Trade Show Mode"]&& appDelegate.submit_order_logout)
  1940. // {
  1941. //
  1942. // [((MainViewController*)appDelegate.main_vc) Loginout:false];
  1943. // }
  1944. // [self prepareReturn:nil];
  1945. //
  1946. // [self.navigationController popViewControllerAnimated:true];
  1947. // }
  1948. // }];
  1949. // }
  1950. // }
  1951. // }];
  1952. //
  1953. //
  1954. //
  1955. //}
  1956. //
  1957. //#pragma mark - UIPrintInteractionControllerDelegate
  1958. //- (UIPrintPaper *)printInteractionController:(UIPrintInteractionController *)printInteractionController choosePaper:(NSArray<UIPrintPaper *> *)paperList
  1959. //{
  1960. //
  1961. // ;
  1962. //
  1963. // // (int) width = 29700
  1964. // // Printing description of (*( (int *)0x7caa3a40)):
  1965. // // (int) height = 42000
  1966. // //设置纸张大小
  1967. //
  1968. //
  1969. // for(UIPrintPaper* paper in paperList)
  1970. // {
  1971. // if (CGSizeEqualToSize(paper.paperSize, CGSizeMake(612, 792)))
  1972. // return paper;
  1973. //
  1974. // }
  1975. // CGSize paperSize = CGSizeMake(612, 792);
  1976. // UIPrintPaper * p=[UIPrintPaper bestPaperForPageSize:paperSize withPapersFromArray:paperList];
  1977. // return p;
  1978. //}
  1979. //- (void)printInteractionControllerWillPresentPrinterOptions:(UIPrintInteractionController *)printInteractionController
  1980. //{
  1981. //
  1982. //}
  1983. //- (void)printInteractionControllerDidPresentPrinterOptions:(UIPrintInteractionController *)printInteractionController
  1984. //{
  1985. //
  1986. //}
  1987. //- (void)printInteractionControllerWillDismissPrinterOptions:(UIPrintInteractionController *)printInteractionController
  1988. //{
  1989. //
  1990. //}
  1991. //- (void)printInteractionControllerDidDismissPrinterOptions:(UIPrintInteractionController *)printInteractionController
  1992. //{
  1993. //
  1994. //}
  1995. //
  1996. //- (void)printInteractionControllerWillStartJob:(UIPrintInteractionController *)printInteractionController
  1997. //{
  1998. //
  1999. //}
  2000. //- (void)printInteractionControllerDidFinishJob:(UIPrintInteractionController *)printInteractionController
  2001. //{
  2002. //
  2003. // AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
  2004. // if([appDelegate.mode isEqualToString:@"Trade Show Mode"]&& appDelegate.submit_order_logout)
  2005. // {
  2006. //
  2007. // [((MainViewController*)appDelegate.main_vc) Loginout:false];
  2008. // }
  2009. //
  2010. // [self prepareReturn:nil];
  2011. //
  2012. // [self.navigationController popViewControllerAnimated:true];
  2013. //}
  2014. //
  2015. //- (NSString *)currentPriceTypeName {
  2016. // NSInteger priceType = [Singleton sharedInstance].npd_shop_price_type;
  2017. //
  2018. // NSString* pricename = nil;
  2019. // switch (priceType) {
  2020. // case 0:
  2021. // pricename=[Singleton sharedInstance].deliveryString;
  2022. // break;
  2023. // case 1:
  2024. // pricename=flat_price;
  2025. // break;
  2026. // case 2:
  2027. // pricename=given_price;
  2028. // break;
  2029. // default:
  2030. // break;
  2031. // }
  2032. // return pricename;
  2033. //}
  2034. - (void)releaseOrderAfterSave {
  2035. AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
  2036. [RANetwork release_Order:appDelegate.order_code withScreen:nil];
  2037. [appDelegate closeOrder];
  2038. [appDelegate SetSo:nil];
  2039. appDelegate.cart_count=0;
  2040. [appDelegate update_count_mark];
  2041. [((MainViewController*)appDelegate.main_vc) switchToOrder];
  2042. [self prepareReturn:nil];
  2043. [self.navigationController popToRootViewControllerAnimated:false];
  2044. }
  2045. -(NSString* )create_customer_ext:(NSDictionary*)customerinfo
  2046. {
  2047. NSString* ret=nil;
  2048. NSString* customer_address1= [customerinfo valueForKey:@"customer_address1"];
  2049. NSString* customer_address2= [customerinfo valueForKey:@"customer_address2"];
  2050. NSString* customer_address3= [customerinfo valueForKey:@"customer_address3"];
  2051. NSString* customer_address4= [customerinfo valueForKey:@"customer_address4"];
  2052. NSMutableArray* arraddr = [[NSMutableArray alloc] init];
  2053. if(customer_address1.length>0)
  2054. [arraddr addObject:customer_address1];
  2055. if(customer_address2.length>0)
  2056. [arraddr addObject:customer_address2];
  2057. if(customer_address3.length>0)
  2058. [arraddr addObject:customer_address3];
  2059. if(customer_address4.length>0)
  2060. [arraddr addObject:customer_address4];
  2061. NSString *addr_string = [arraddr componentsJoinedByString:@"\r\n"];
  2062. NSString* customer_city= [customerinfo valueForKey:@"customer_city"];
  2063. NSString* customer_country= [customerinfo valueForKey:@"customer_country"];
  2064. NSString* customer_zipcode= [customerinfo valueForKey:@"customer_zipcode"];
  2065. NSString* customer_state= [customerinfo valueForKey:@"customer_state"];
  2066. NSMutableArray* arrcty = [[NSMutableArray alloc] init];
  2067. if(customer_city.length>0)
  2068. [arrcty addObject:customer_city];
  2069. if(customer_state.length>0)
  2070. [arrcty addObject:customer_state];
  2071. if(customer_zipcode.length>0)
  2072. [arrcty addObject:customer_zipcode];
  2073. if(customer_country.length>0)
  2074. [arrcty addObject:customer_country];
  2075. NSString *cty_string = [arrcty componentsJoinedByString:@", "];
  2076. // NSString* customer_phone= [customerinfo valueForKey:@"customer_phone"];
  2077. // NSString* customer_fax= [customerinfo valueForKey:@"customer_fax"];
  2078. //
  2079. // NSMutableArray* arrpho = [[NSMutableArray alloc] init];
  2080. // if(customer_phone.length>0)
  2081. // {
  2082. // customer_phone = [NSString stringWithFormat:@"TEL: %@",customer_phone];
  2083. // [arrpho addObject:customer_phone];
  2084. // }
  2085. // if(customer_fax.length>0)
  2086. // {
  2087. // customer_fax = [NSString stringWithFormat:@"FAX: %@",customer_fax];
  2088. // [arrpho addObject:customer_fax];
  2089. // }
  2090. // NSString *phone_string = [arrpho componentsJoinedByString:@", "];
  2091. //
  2092. //
  2093. // NSString* customer_contact= [customerinfo valueForKey:@"customer_contact"];
  2094. // if(customer_contact.length>0)
  2095. // {
  2096. // customer_contact = [NSString stringWithFormat:@"ATTN: %@",customer_contact];
  2097. //
  2098. // }
  2099. // NSString *contact_string = customer_contact;
  2100. //
  2101. //
  2102. // NSString* customer_email= [customerinfo valueForKey:@"customer_email"];
  2103. // if(customer_email.length>0)
  2104. // {
  2105. // customer_email = [NSString stringWithFormat:@"Email: %@",customer_email];
  2106. //
  2107. // }
  2108. // NSString *email_string = customer_email;
  2109. NSMutableArray* arrext = [[NSMutableArray alloc] init];
  2110. if(addr_string.length>0)
  2111. [arrext addObject:addr_string];
  2112. if(cty_string.length>0)
  2113. [arrext addObject:cty_string];
  2114. // if(phone_string.length>0)
  2115. // [arrext addObject:phone_string];
  2116. // if(contact_string.length>0)
  2117. // [arrext addObject:contact_string];
  2118. // if(email_string.length>0)
  2119. // [arrext addObject:email_string];
  2120. ret = [arrext componentsJoinedByString:@"\r\n"];
  2121. // NSString *string = [array componentsJoinedByString:@" "];
  2122. // NSString* customer_name= [customerinfo valueForKey:@"customer_name"];
  2123. return ret;
  2124. }
  2125. -(NSMutableDictionary*)create_value_map:(NSDictionary*)key_map
  2126. {
  2127. NSMutableDictionary* ret= [[NSMutableDictionary alloc] init];
  2128. NSArray *keys= [key_map allKeys];
  2129. //遍历keys
  2130. for(int i=0;i<[keys count];i++)
  2131. {
  2132. //得到当前key
  2133. NSString *key=[keys objectAtIndex:i];
  2134. //如果key不是pic,说明value是字符类型,比如name:Boris
  2135. NSString* valuefrom = [key_map valueForKey:key];
  2136. if(valuefrom.length==0)
  2137. continue;
  2138. NSString* value=[self getValue:valuefrom];
  2139. [ret setValue:value forKey:valuefrom];
  2140. }
  2141. NSDictionary * customerinfo =[self create_cusromer_info_from_table];
  2142. [ret setValue:[self create_customer_ext:customerinfo] forKey:@"customer_contact_ext"];
  2143. [ret setValue:customerinfo[@"customer_first_name"] forKey:@"customer_first_name"];
  2144. [ret setValue:customerinfo[@"customer_last_name"] forKey:@"customer_last_name"];
  2145. return ret;
  2146. }
  2147. -(NSMutableDictionary*)create_cusromer_info_from_table
  2148. {
  2149. AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
  2150. NSMutableDictionary* ret= [appDelegate.customerInfo mutableCopy] ;
  2151. [ret setValue:[self getValue:@"customer_country"] forKey:@"customer_country"];
  2152. [ret setValue:[self getValue:@"customer_phone"] forKey:@"customer_phone"];
  2153. [ret setValue:[self getValue:@"customer_email"] forKey:@"customer_email"];
  2154. [ret setValue:[self getValue:@"customer_name"] forKey:@"customer_name"];
  2155. [ret setValue:[self getValue:@"customer_address4"] forKey:@"customer_address4"];
  2156. [ret setValue:[self getValue:@"customer_address3"] forKey:@"customer_address3"];
  2157. [ret setValue:[self getValue:@"customer_address2"] forKey:@"customer_address2"];
  2158. [ret setValue:[self getValue:@"customer_address1"] forKey:@"customer_address1"];
  2159. [ret setValue:[self getValue:@"customer_zipcode"] forKey:@"customer_zipcode"];
  2160. [ret setValue:[self getValue:@"customer_city"] forKey:@"customer_city"];
  2161. [ret setValue:[self getValue:@"customer_state"] forKey:@"customer_state"];
  2162. [ret setValue:[self getValue:@"customer_cid"] forKey:@"customer_cid"];
  2163. [ret setValue:[self getValue:@"customer_state"] forKey:@"customer_state"];
  2164. [ret setValue:[self getValue:@"customer_contact"] forKey:@"customer_contact"];
  2165. [ret setValue:[self getValue:@"customer_fax"] forKey:@"customer_fax"];
  2166. NSString * firstname =nil;
  2167. NSString* lastname = nil;
  2168. NSString* contact_name = [self getValue:@"customer_contact"];
  2169. if(contact_name!=nil)
  2170. {
  2171. NSArray *_arr = [contact_name componentsSeparatedByString:NSLocalizedString(@" ", nil)];
  2172. if(_arr.count>=1)
  2173. {
  2174. firstname =_arr[0];
  2175. if(_arr.count>1)
  2176. {
  2177. lastname=[[_arr subarrayWithRange:NSMakeRange(1, _arr.count-1)] componentsJoinedByString:@" "];
  2178. }
  2179. }
  2180. }
  2181. [ret setValue:firstname forKey:@"customer_first_name"];
  2182. [ret setValue:lastname forKey:@"customer_last_name"];
  2183. // [ret setValue:[self create_customer_ext:ret] forKey:@"customer_contact_ext"];
  2184. return ret;
  2185. }
  2186. #pragma mark - multi_action sub action clicked
  2187. - (void)MActionClicked:(UIButton *)sender {
  2188. UITableViewCell *cell = (UITableViewCell *) sender.superview.superview;
  2189. NSIndexPath * indexPath = [self.editorTable indexPathForCell:cell];
  2190. int refresh =0;
  2191. NSMutableDictionary* section_json=nil;
  2192. NSMutableDictionary* item_json =[((NSMutableArray*)self.content_data_control[indexPath.section])[indexPath.row] mutableCopy];
  2193. NSString* subid=[item_json valueForKey:@"subid"];
  2194. NSString* refresh_trigger = [item_json valueForKey:@"name"];
  2195. NSDictionary* sub_action = [item_json objectForKey:[NSString stringWithFormat:@"item_%ld",(long)sender.tag]];
  2196. NSString* type = [sub_action valueForKey:@"type"];
  2197. if([type isEqualToString:@"pull"])
  2198. {
  2199. [self.lastedit endEditing:true];
  2200. refresh = [[sub_action valueForKey:@"refresh"] intValue];
  2201. NSDictionary* keymap= [sub_action objectForKey:@"key_map"];
  2202. NSMutableDictionary* value=[self create_value_map:keymap];
  2203. if(subid==nil)
  2204. {
  2205. NSDictionary* jsonmap=[sub_action valueForKey:@"key_map"];
  2206. section_json = [[self.content_data_download objectForKey:[NSString stringWithFormat:@"section_%ld",(long)indexPath.section ]] mutableCopy];
  2207. int icount=[[section_json valueForKey:@"count"] intValue];
  2208. for (int ic=0;ic<icount;ic++)
  2209. {
  2210. NSMutableDictionary* modify_item= [[section_json objectForKey:[NSString stringWithFormat:@"item_%d",ic ]] mutableCopy];
  2211. NSString* mapto = [modify_item valueForKey:@"name"];
  2212. if(mapto.length==0)
  2213. continue;
  2214. NSString* valuefrom= [jsonmap valueForKey:[modify_item valueForKey:@"name"]];
  2215. if(valuefrom==nil)
  2216. continue;
  2217. NSString* valuestr=[value valueForKey:valuefrom];
  2218. // valuestr = [self getValue:valuefrom];
  2219. if(true)
  2220. {
  2221. if(valuestr.length>0)
  2222. [modify_item setValue:valuestr forKey:@"value"];
  2223. else
  2224. [modify_item setValue:@"" forKey:@"value"];
  2225. [modify_item setValue:@"true" forKey:@"dirty"];
  2226. [section_json setObject:modify_item forKey:[NSString stringWithFormat:@"item_%d",ic ]];
  2227. }
  2228. }
  2229. }
  2230. else
  2231. {
  2232. NSArray* idarr=[subid componentsSeparatedByString:@"_"];
  2233. int section = [(NSString*)idarr[0] intValue];
  2234. int item=[(NSString*)idarr[1] intValue];
  2235. NSDictionary* jsonmap=[sub_action valueForKey:@"key_map"];
  2236. section_json = [[self.content_data_download objectForKey:[NSString stringWithFormat:@"section_%d", section]] mutableCopy];
  2237. NSMutableDictionary * olditem=[[section_json objectForKey:[NSString stringWithFormat:@"item_%d",item ]] mutableCopy];
  2238. NSString* control_type = [olditem valueForKey:@"control"];
  2239. if([control_type isEqualToString:@"switch"])
  2240. olditem= [self fill_switch_subitem:olditem subid:nil source:value mapping:jsonmap ];
  2241. else if([control_type isEqualToString:@"enum"])
  2242. {
  2243. olditem= [self fill_enum_subitem:olditem subid:nil source:value mapping:jsonmap ];
  2244. }
  2245. else
  2246. {
  2247. [RAUtils alert_view:@"" title:@"not impl"];
  2248. }
  2249. [olditem setValue:@"true" forKey:@"dirty"];
  2250. [section_json setObject:olditem forKey:[NSString stringWithFormat:@"item_%d",item ]];
  2251. }
  2252. [self.content_data_download setObject:section_json forKey:[NSString stringWithFormat:@"section_%ld",(long)indexPath.section ]];
  2253. self.content_data_control = [self translate_json:self.content_data_download changed:self.changed_data];
  2254. if(refresh==1)
  2255. {
  2256. // if(restore_json!=nil)
  2257. // {
  2258. // int rc=[[restore_json valueForKey:@"count"] intValue];
  2259. // for(int ir=0;ir<rc;ir++)
  2260. // {
  2261. // NSString* name = [restore_json valueForKey:[NSString stringWithFormat:@"item_%d",ir]];
  2262. //
  2263. //
  2264. // int section_count=[[self.content_data_download valueForKey:@"section_count"] intValue];
  2265. // for(int i=0;i<section_count;i++)
  2266. // {
  2267. // NSMutableDictionary * sectionjson = [[self.content_data_download objectForKey:[NSString stringWithFormat:@"section_%d",i ]] mutableCopy];
  2268. // // NSMutableDictionary * to_sectionjson = [[to objectForKey:[NSString stringWithFormat:@"section_%d",i ]] mutableCopy];
  2269. // int item_count = [[sectionjson valueForKey:@"count"] intValue];
  2270. // for(int j=0;j<item_count;j++)
  2271. // {
  2272. // NSMutableDictionary * itemjson=[[sectionjson objectForKey:[NSString stringWithFormat:@"item_%d",j ]] mutableCopy];
  2273. // // NSMutableDictionary * to_itemjson=[[to_sectionjson objectForKey:[NSString stringWithFormat:@"item_%d",j ]] mutableCopy];
  2274. //
  2275. // if([[itemjson valueForKey:@"name"] isEqualToString:name])
  2276. // {
  2277. // [itemjson removeObjectForKey:@"dirty"];
  2278. // [sectionjson setObject:itemjson forKey:[NSString stringWithFormat:@"item_%d",j ]];
  2279. // }
  2280. //
  2281. // }
  2282. // [self.content_data_download setObject:sectionjson forKey:[NSString stringWithFormat:@"section_%d",i ]];
  2283. // }
  2284. //
  2285. //
  2286. // }
  2287. //
  2288. // }
  2289. [self refresh:refresh_trigger] ;
  2290. return ;
  2291. }
  2292. // DebugLog(@"CONTENT translate:%@",[iSalesNetwork DataTOjsonString:self.content_data]);
  2293. [self.editorTable reloadData ];
  2294. }
  2295. else
  2296. {
  2297. AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
  2298. NSDictionary * item_json = sub_action;
  2299. NSString* value = [item_json valueForKey:@"value"];
  2300. if([value isEqualToString:@"new_addr"])
  2301. {
  2302. AddressEditorViewController * addressVC = [[AddressEditorViewController alloc] initWithNibName:@"CommonEditor.iPad" bundle:nil];
  2303. addressVC.url_type = URL_REMOTE;
  2304. addressVC.request_url=URL_ADDRESS_EDOTOR;
  2305. NSMutableDictionary * params= [[NSMutableDictionary alloc] init];
  2306. // NSString * string = [checked componentsJoinedByString:@","];
  2307. // [params setValue:string forKey:@"cart2Checkbox"];
  2308. params[@"is_subaction"]=@"true";
  2309. params[@"subaction_tag"]= [NSString stringWithFormat:@"%ld",(long)sender.tag];
  2310. addressVC.params = params;
  2311. addressVC.delegate = self;
  2312. addressVC.from = indexPath;
  2313. // orderinfoVC.params = params;
  2314. [self.navigationController pushViewController:addressVC animated:true];
  2315. }else if([value isEqualToString:@"credit_card"])
  2316. {
  2317. CreditCardEditorViewController * cardVC = [[CreditCardEditorViewController alloc] initWithNibName:@"CommonEditor.iPad" bundle:nil];
  2318. NSDictionary *data = [item_json objectForKey:@"data"];
  2319. if(data!=nil)
  2320. {
  2321. cardVC.content_data_download = [data mutableCopy];
  2322. cardVC.url_type = URL_NONE;
  2323. cardVC.request_url=nil;
  2324. }
  2325. else
  2326. {
  2327. cardVC.url_type = URL_REMOTE;
  2328. cardVC.request_url=URL_CREDITCARD_EDOTOR;
  2329. }
  2330. NSMutableDictionary * params= [[NSMutableDictionary alloc] init];
  2331. params[@"orderCode"]=appDelegate.order_code;
  2332. params[@"is_subaction"]=@"true";
  2333. params[@"subaction_tag"]= [NSString stringWithFormat:@"%ld",(long)sender.tag];
  2334. cardVC.params = params;
  2335. cardVC.delegate = self;
  2336. cardVC.from = indexPath;
  2337. // orderinfoVC.params = params;
  2338. [self.navigationController pushViewController:cardVC animated:true];
  2339. }
  2340. else if([value isEqualToString:@"Sales_Order_Freight_Bill_To"])
  2341. {
  2342. ContactListViewController* cvc = [[UIStoryboard storyboardWithName:@"ERP_Mobile_Contact" bundle:nil] instantiateViewControllerWithIdentifier:@"ContactListViewController" ];
  2343. cvc.showNavibar = true;
  2344. cvc.contact_type = value;
  2345. cvc.is_subaction = @"true";
  2346. cvc.subaction_tag =[NSString stringWithFormat:@"%ld",(long)sender.tag];
  2347. cvc.returnValue = ^(NSMutableDictionary* value,NSIndexPath* source){
  2348. [self handle_action_return:value indexPath:indexPath action:ACTION_FILL_SECTION];
  2349. //
  2350. // if(self.returnValue)
  2351. // self.returnValue(value);
  2352. };
  2353. [self.navigationController pushViewController:cvc animated:true];
  2354. }
  2355. else if([value isEqualToString:@"Sales_Order_Ship_From"])
  2356. {
  2357. ContactListViewController* cvc = [[UIStoryboard storyboardWithName:@"ERP_Mobile_Contact" bundle:nil] instantiateViewControllerWithIdentifier:@"ContactListViewController" ];
  2358. cvc.showNavibar = true;
  2359. cvc.contact_type = value;
  2360. cvc.is_subaction = @"true";
  2361. cvc.subaction_tag =[NSString stringWithFormat:@"%ld",(long)sender.tag];
  2362. cvc.returnValue = ^(NSMutableDictionary* value,NSIndexPath* source){
  2363. [self handle_action_return:value indexPath:indexPath action:ACTION_FILL_SECTION];
  2364. //
  2365. // if(self.returnValue)
  2366. // self.returnValue(value);
  2367. };
  2368. [self.navigationController pushViewController:cvc animated:true];
  2369. }
  2370. else if([value isEqualToString:@"Sales_Order_Customer"])
  2371. {
  2372. ContactListViewController* cvc = [[UIStoryboard storyboardWithName:@"ERP_Mobile_Contact" bundle:nil] instantiateViewControllerWithIdentifier:@"ContactListViewController" ];
  2373. cvc.is_subaction = @"true";
  2374. cvc.subaction_tag =[NSString stringWithFormat:@"%ld",(long)sender.tag];
  2375. cvc.showNavibar = true;
  2376. cvc.contact_type = value;
  2377. __weak typeof(self) weakself = self;
  2378. cvc.returnValue = ^(NSMutableDictionary* value,NSIndexPath* source){
  2379. [weakself handle_action_return:value indexPath:indexPath action:ACTION_FILL_SECTION];
  2380. //
  2381. // if(self.returnValue)
  2382. // self.returnValue(value);
  2383. };
  2384. [self.navigationController pushViewController:cvc animated:true];
  2385. }
  2386. else if([value isEqualToString:@"Sales_Order_Merchandise_Bill_To"])
  2387. {
  2388. ContactListViewController* cvc = [[UIStoryboard storyboardWithName:@"ERP_Mobile_Contact" bundle:nil] instantiateViewControllerWithIdentifier:@"ContactListViewController" ];
  2389. cvc.showNavibar = true;
  2390. cvc.contact_type = value;
  2391. cvc.is_subaction = @"true";
  2392. cvc.subaction_tag =[NSString stringWithFormat:@"%ld",(long)sender.tag];
  2393. __weak typeof(self) weakself = self;
  2394. cvc.returnValue = ^(NSMutableDictionary* value,NSIndexPath* source){
  2395. [weakself handle_action_return:value indexPath:indexPath action:ACTION_FILL_SECTION];
  2396. //
  2397. // if(self.returnValue)
  2398. // self.returnValue(value);
  2399. };
  2400. [self.navigationController pushViewController:cvc animated:true];
  2401. }
  2402. else if([value isEqualToString:@"Contact_Return_To"])
  2403. {
  2404. ContactListViewController* cvc = [[UIStoryboard storyboardWithName:@"ERP_Mobile_Contact" bundle:nil] instantiateViewControllerWithIdentifier:@"ContactListViewController" ];
  2405. cvc.is_subaction = @"true";
  2406. cvc.subaction_tag =[NSString stringWithFormat:@"%ld",(long)sender.tag];
  2407. cvc.showNavibar = true;
  2408. cvc.contact_type = value;
  2409. __weak typeof(self) weakself = self;
  2410. cvc.returnValue = ^(NSMutableDictionary* value,NSIndexPath* source){
  2411. [weakself handle_action_return:value indexPath:indexPath action:ACTION_FILL_SECTION];
  2412. //
  2413. // if(self.returnValue)
  2414. // self.returnValue(value);
  2415. };
  2416. [self.navigationController pushViewController:cvc animated:true];
  2417. }
  2418. else if([value isEqualToString:@"Sales_Order_Ship_To"])
  2419. {
  2420. ContactListViewController* cvc = [[UIStoryboard storyboardWithName:@"ERP_Mobile_Contact" bundle:nil] instantiateViewControllerWithIdentifier:@"ContactListViewController" ];
  2421. cvc.is_subaction = @"true";
  2422. cvc.subaction_tag =[NSString stringWithFormat:@"%ld",(long)sender.tag];
  2423. cvc.showNavibar = true;
  2424. cvc.contact_type = value;
  2425. __weak typeof(self) weakself = self;
  2426. cvc.returnValue = ^(NSMutableDictionary* value,NSIndexPath* source){
  2427. [weakself handle_action_return:value indexPath:indexPath action:ACTION_FILL_SECTION];
  2428. //
  2429. // if(self.returnValue)
  2430. // self.returnValue(value);
  2431. };
  2432. [self.navigationController pushViewController:cvc animated:true];
  2433. }
  2434. }
  2435. }
  2436. #pragma mark - Urgency
  2437. -(void) viewWillDisappear:(BOOL)animated
  2438. {
  2439. [super viewWillDisappear:animated];
  2440. [self cancel_urgency_timer];
  2441. }
  2442. - (void)start_urgency_timer {
  2443. if (!self.editable) {
  2444. return;
  2445. }
  2446. __weak typeof(self) weakSelf = self;
  2447. AppDelegate *appDelegate = (AppDelegate *)[UIApplication sharedApplication].delegate;
  2448. [appDelegate.urgencyDic setValue:appDelegate.user forKey:@"user"];
  2449. #ifdef OFFLINE_MODE
  2450. [appDelegate.urgencyDic setValue:[NSNumber numberWithBool:appDelegate.offline_mode] forKey:@"offline_mode"];
  2451. #endif
  2452. [[JKTimerManager sharedTimerManager] scheduledDispatchTimerWithName:self.urgency_timer_name timeInterval:1 queue:nil repeats:YES action:^{
  2453. NSMutableDictionary *urgencyDic = [NSMutableDictionary dictionary];
  2454. // DebugLog(@"timer start....");
  2455. [urgencyDic setValue:weakSelf.content_data_download forKey:[NSString stringWithFormat:@"%@_restored_data",self.class_name]];
  2456. [urgencyDic setValue:weakSelf.class_name forKey:@"class_name"];
  2457. if ([weakSelf.class_name isEqualToString:@"CreateOrderViewController"]) {
  2458. // CreateOrderViewController
  2459. [urgencyDic setValue:appDelegate.order_code forKey:@"order_code"];
  2460. MainViewController *mainVC = (MainViewController *)appDelegate.main_vc;
  2461. NSString *so = [mainVC.labelSo.text substringFromIndex:5];
  2462. [urgencyDic setValue:so forKey:@"order_so"];
  2463. [urgencyDic setValue:[NSNumber numberWithInt:appDelegate.order_status ] forKey:@"order_status"];
  2464. [urgencyDic setValue:appDelegate.order_customer_id forKey:@"order_customer_id"];
  2465. }
  2466. [appDelegate.urgencyDic setValue:urgencyDic forKey:[NSString stringWithFormat:@"level_%d",weakSelf.level]];
  2467. [appDelegate.urgencyDic setValue:[NSNumber numberWithInteger:weakSelf.level + 1] forKey:@"count"];
  2468. }];
  2469. }
  2470. - (void)cancel_urgency_timer {
  2471. [[JKTimerManager sharedTimerManager] cancelTimerWithName:self.urgency_timer_name];
  2472. }
  2473. #pragma mark - Submit Order
  2474. - (void)customer_commit_order:(NSMutableDictionary *)upparams {
  2475. UIAlertController * waitalert = [RAUtils waiting_alert:self title:@"Order Submission"];
  2476. [upparams setValue:@"true" forKey:@"isHold"];
  2477. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  2478. NSDictionary* editor_json = [RANetwork saveandcommit_Order:upparams];
  2479. dispatch_async(dispatch_get_main_queue(), ^{
  2480. [waitalert dismissViewControllerAnimated:YES completion:nil];
  2481. if([[editor_json valueForKey:@"result"] intValue]==2)
  2482. {
  2483. AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
  2484. // appDelegate.customerInfo = customerInfo;
  2485. [appDelegate closeOrder];
  2486. #ifdef RA_NOTIFICATION
  2487. [ActiveViewController Notify:@"OrderListViewController" Message:RA_NOTIFICATION_RELOAD_DATA];
  2488. #else
  2489. [((MainViewController*)appDelegate.main_vc) reloadOrder:true immediately:false];
  2490. #endif
  2491. NSString* title=nil;
  2492. NSString* msg=nil;
  2493. #ifdef OFFLINE_MODE
  2494. if(appDelegate.offline_mode)
  2495. {
  2496. title=TITLE_OFFLINE_SUBMIT;
  2497. msg=MSG_OFFLINE_SUBMIT;
  2498. }
  2499. else
  2500. #endif
  2501. {
  2502. title=@"Order submitted sucessfully";
  2503. msg=[NSString stringWithFormat:@"Confirmation#: %@",[editor_json valueForKey:@"so#"]];
  2504. }
  2505. UIAlertView * alert = [[UIAlertView alloc] initWithTitle: title message:msg delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
  2506. [alert show];
  2507. [self prepareReturn:nil];
  2508. [self.navigationController popToRootViewControllerAnimated:true];
  2509. }
  2510. else
  2511. {
  2512. [RAUtils message_alert:[editor_json valueForKey:@"err_msg"] title:@"Order Submission" controller:self] ;
  2513. }
  2514. });
  2515. });
  2516. }
  2517. - (void)empolyee_commit_order:(NSMutableDictionary *)upparams {
  2518. UIAlertController * waitalert = [RAUtils waiting_alert:self title:@"Order Submission"];
  2519. [upparams setValue:@"false" forKey:@"isHold"];
  2520. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  2521. NSDictionary* editor_json = [RANetwork saveandcommit_Order:upparams];
  2522. dispatch_async(dispatch_get_main_queue(), ^{
  2523. [waitalert dismissViewControllerAnimated:YES completion:nil];
  2524. if([[editor_json valueForKey:@"result"] intValue]==2)
  2525. {
  2526. // debug aaa
  2527. AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
  2528. NSString* company= appDelegate.customerInfo[@"customer_name"];
  2529. NSString* send_to =appDelegate.customerInfo[@"customer_email"];
  2530. [appDelegate closeOrder];
  2531. #ifdef RA_NOTIFICATION
  2532. [ActiveViewController Notify:@"OrderListViewController" Message:RA_NOTIFICATION_RELOAD_DATA];
  2533. #else
  2534. [((MainViewController*)appDelegate.main_vc) reloadOrder:true immediately:false];
  2535. #endif
  2536. NSString* title=nil;
  2537. NSString* msg=nil;
  2538. #ifdef OFFLINE_MODE
  2539. if(appDelegate.offline_mode)
  2540. {
  2541. title=TITLE_OFFLINE_SUBMIT;
  2542. msg=MSG_OFFLINE_SUBMIT;
  2543. }
  2544. else
  2545. #endif
  2546. {
  2547. title=@"Order submitted sucessfully";
  2548. msg=[NSString stringWithFormat:@"Confirmation#: %@",[editor_json valueForKey:@"so#"]];
  2549. }
  2550. UIAlertView * alert = [[UIAlertView alloc] initWithTitle: title message:msg delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
  2551. [alert show];
  2552. NSString* pdf_url = [editor_json valueForKey:@"pdf_url"];
  2553. NSString* email_content =[editor_json valueForKey:@"email_content"];
  2554. NSString* soid=[editor_json valueForKey:@"so#"];
  2555. {
  2556. NSMutableDictionary *value = [NSMutableDictionary dictionary];
  2557. if([appDelegate.mode isEqualToString:@"TM"]&& appDelegate.submit_order_logout)
  2558. {
  2559. //bbb
  2560. [((MainViewController*)appDelegate.main_vc) Loginout:false];
  2561. value[@"commitorder_logout"]=@"true";
  2562. }
  2563. [self prepareReturn:value];
  2564. [self.navigationController popToRootViewControllerAnimated:true];
  2565. if(pdf_url.length>0)
  2566. {
  2567. [alert dismissWithClickedButtonIndex:0 animated:FALSE];
  2568. [appDelegate printPdf:pdf_url company:company send_to:send_to soid:soid content:email_content];
  2569. // [appDelegate printPdf:pdf_url];
  2570. }
  2571. }
  2572. }
  2573. else
  2574. {
  2575. [RAUtils message_alert:[editor_json valueForKey:@"err_msg"] title:@"Order Submission" controller:self] ;
  2576. }
  2577. });
  2578. });
  2579. }
  2580. @end