MainViewController.m 101 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796
  1. //
  2. // ViewController.m
  3. // RedAnt ERP Suite
  4. //
  5. // Created by Ray on 14-5-19.
  6. // Copyright (c) 2014年 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import "MainViewController.h"
  9. //#import "SideMenuViewController.h"
  10. //#import "RootContainerViewController.h"
  11. #import <Accelerate/Accelerate.h>
  12. #import "PopupNavigationController.h"
  13. //#import "CommonGridViewController.h"
  14. #import "CacheViewController.h"
  15. #import "ScannerViewController.h"
  16. #import "ContactListViewController.h"
  17. #import "RAUtils.h"
  18. #import "AboutViewController.h"
  19. #import "ScannerSettingViewController.h"
  20. #import "ActiveViewController.h"
  21. #import "WebViewController.h"
  22. #import "FunctionTestViewController.h"
  23. #import "SimplifiedBuyingProgramViewController.h"
  24. #import "UserListViewController.h"
  25. #import "OfflineSettingViewController.h"
  26. #import "DefaultAppearance.h"
  27. #import "PriceSettingViewController.h"
  28. #import "JKLockController.h"
  29. #import "Singleton.h"
  30. #import "NotificationNameCenter.h"
  31. @interface MainViewController ()
  32. @end
  33. @implementation MainViewController
  34. -(void) logoutDocuments
  35. {
  36. [self.pdfListViewController logout];
  37. }
  38. -(void) logoutCart
  39. {
  40. [self.cartViewController logout];
  41. }
  42. -(void) logoutWish
  43. {
  44. [self.watchListViewController logout];
  45. }
  46. -(void) logoutPortfolio
  47. {
  48. [self.portfolioViewController logout];
  49. }
  50. -(void) logoutOrder
  51. {
  52. [self.orderViewController logout];
  53. }
  54. -(void) logoutContact
  55. {
  56. [self.contactListViewController logout];
  57. }
  58. -(void) logoutCategory
  59. {
  60. [self.categoryViewController logout];
  61. }
  62. #ifndef RA_NOTIFICATION
  63. -(void) reloadCategory:(BOOL) update_data immediately:(bool)immediately
  64. {
  65. if(immediately)
  66. [ self.categoryViewController reload_container_getdata:update_data];
  67. else
  68. {
  69. if(update_data&&self.categoryViewController.refresh_type<=REFRESH_DATA)
  70. self.categoryViewController.refresh_type = REFRESH_DATA;
  71. else if(self.categoryViewController.refresh_type<=REFRESH_VIEW)
  72. self.categoryViewController.refresh_type = REFRESH_VIEW;
  73. }
  74. }
  75. -(void) reloadDocuments:(BOOL) update_data immediately:(bool)immediately
  76. {
  77. if(immediately)
  78. [ self.pdfListViewController reload_container_getdata:update_data];
  79. else
  80. {
  81. if(update_data&&self.pdfListViewController.refresh_type<=REFRESH_DATA)
  82. self.pdfListViewController.refresh_type = REFRESH_DATA;
  83. else if(self.pdfListViewController.refresh_type<=REFRESH_VIEW)
  84. self.pdfListViewController.refresh_type = REFRESH_VIEW;
  85. }
  86. //[self.pdfListViewController reload_container_getdata:update_data];
  87. }
  88. -(void) reloadCart:(BOOL) update_data immediately:(bool)immediately
  89. {
  90. if(immediately)
  91. [ self.cartViewController reload_container_getdata:update_data];
  92. else
  93. {
  94. if(update_data&&self.cartViewController.refresh_type<=REFRESH_DATA)
  95. self.cartViewController.refresh_type = REFRESH_DATA;
  96. else if(self.cartViewController.refresh_type<=REFRESH_VIEW)
  97. self.cartViewController.refresh_type = REFRESH_VIEW;
  98. }
  99. // [self.cartViewController reload_container_getdata:update_data];
  100. }
  101. -(void) reloadWish:(BOOL) update_data immediately:(bool)immediately
  102. {
  103. if(immediately)
  104. [ self.watchListViewController reload_container_getdata:update_data];
  105. else
  106. {
  107. if(update_data&&self.watchListViewController.refresh_type<=REFRESH_DATA)
  108. self.watchListViewController.refresh_type = REFRESH_DATA;
  109. else if(self.watchListViewController.refresh_type<=REFRESH_VIEW)
  110. self.watchListViewController.refresh_type = REFRESH_VIEW;
  111. }
  112. // [self.watchListViewController reload_container_getdata:update_data];
  113. }
  114. -(void) reloadPortfolio:(BOOL) update_data immediately:(bool)immediately
  115. {
  116. // NSMutableDictionary* dict = [NSMutableDictionary new];
  117. // dict[@"receiver"]=@[@"PortfolioViewController"];
  118. // NSString* notificationname = nil;
  119. // if(update_data)
  120. // notificationname = RA_NOTIFICATION_RELOAD_DATA;
  121. // else
  122. // notificationname = RA_NOTIFICATION_REFRESH_UI;
  123. // NSNotification *notification =[NSNotification notificationWithName:notificationname object:nil userInfo:dict];
  124. //
  125. // //通过通知中心发送通知
  126. //
  127. // [[NSNotificationCenter defaultCenter] postNotification:notification];
  128. // return;
  129. if(immediately)
  130. [ self.portfolioViewController reload_container_getdata:update_data];
  131. else
  132. {
  133. if(update_data&&self.portfolioViewController.refresh_type<=REFRESH_DATA)
  134. self.portfolioViewController.refresh_type = REFRESH_DATA;
  135. else if(self.portfolioViewController.refresh_type<=REFRESH_VIEW)
  136. self.portfolioViewController.refresh_type = REFRESH_VIEW;
  137. }
  138. // [self.portfolioViewController reload_container_getdata:update_data];
  139. }
  140. -(void) reloadOrder:(BOOL) update_data immediately:(bool)immediately
  141. {
  142. if(immediately)
  143. [ self.orderViewController reload_container_getdata:update_data];
  144. else
  145. {
  146. if(update_data&&self.orderViewController.refresh_type<=REFRESH_DATA)
  147. self.orderViewController.refresh_type = REFRESH_DATA;
  148. else if(self.orderViewController.refresh_type<=REFRESH_VIEW)
  149. self.orderViewController.refresh_type = REFRESH_VIEW;
  150. }
  151. // [self.orderViewController reload_container_getdata:update_data];
  152. }
  153. -(void) reloadContact:(BOOL) update_data immediately:(bool)immediately
  154. {
  155. //[self.con reload_container];
  156. if(immediately)
  157. [ self.contactListViewController reload_container_getdata:update_data];
  158. else
  159. {
  160. if(update_data&&self.contactListViewController.refresh_type<=REFRESH_DATA)
  161. self.contactListViewController.refresh_type = REFRESH_DATA;
  162. else if(self.contactListViewController.refresh_type<=REFRESH_VIEW)
  163. self.contactListViewController.refresh_type = REFRESH_VIEW;
  164. }
  165. }
  166. #endif
  167. -(void)viewWillLayoutSubviews
  168. {
  169. self.headerView.layer.shadowPath =[UIBezierPath bezierPathWithRect:self.headerView.bounds].CGPath;
  170. }
  171. -(void) viewWillAppear:(BOOL)animated
  172. {
  173. [super viewWillAppear:animated];
  174. // [self.label_ccount.layer setMasksToBounds:YES];
  175. [self refreshContactDisplay];
  176. [[self navigationController] setNavigationBarHidden:YES animated:NO];
  177. }
  178. -(void) refreshContactDisplay
  179. {
  180. UIApplication * app = [UIApplication sharedApplication];
  181. AppDelegate *appDelegate = (AppDelegate *)[app delegate];
  182. // self.labelContact.text=appDelegate.contact_name;
  183. NSString * contact =[appDelegate.customerInfo valueForKey:@"customer_contact"];
  184. NSString * customer=[appDelegate.customerInfo valueForKey:@"customer_name"];
  185. NSDictionary * customerinfo=appDelegate.customerInfo;
  186. if(customerinfo==nil)
  187. {
  188. contact=@"Select Contact";
  189. [self.btnContact setTitleColor:[UIColor redColor] forState:UIControlStateNormal];
  190. }
  191. // if(contact==nil||contact.length==0)
  192. // {
  193. // contact=@"No Name";
  194. // [self.btnContact setTitleColor:[UIColor redColor] forState:UIControlStateNormal];
  195. // }
  196. else
  197. {
  198. if(contact==nil||contact.length==0)
  199. {
  200. contact=@"No Name";
  201. [self.btnContact setTitleColor:[UIColor redColor] forState:UIControlStateNormal];
  202. }
  203. else
  204. {
  205. [self.btnContact setTitleColor:UIColorFromRGB(0x009900) forState:UIControlStateNormal];
  206. }
  207. }
  208. NSMutableArray* arr_contact = [[NSMutableArray alloc] init];
  209. if(contact.length>0)
  210. [arr_contact addObject:contact];
  211. if(customer.length>0)
  212. [arr_contact addObject:customer];
  213. NSString *contact_string = [arr_contact componentsJoinedByString:@" @"];
  214. [self.btnContact setTitle:contact_string forState:UIControlStateNormal];
  215. }
  216. - (void) checklogin:(bool) reloadCurrentVC
  217. {
  218. [self initMenuItems];
  219. AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
  220. self.sideMenu_UserName.text =appDelegate.user;
  221. [self.btn_sideMenu_UserName setTitle:appDelegate.user forState:UIControlStateNormal];
  222. if(appDelegate.bLogin)
  223. [self.btnLogin setTitle:@"Sign out" forState:UIControlStateNormal];
  224. else
  225. [self.btnLogin setTitle:@"Sign in" forState:UIControlStateNormal];
  226. [RANetwork LoadImage:appDelegate.user_icon into:self.user_head ];
  227. if(/*appDelegate.user_type==USER_ROLE_EMPLOYEE*/true)
  228. self.btnContact.hidden = NO;
  229. else
  230. self.btnContact.hidden = YES;
  231. NSDictionary * customerinfo=appDelegate.customerInfo;
  232. NSString * contact=nil;
  233. NSString * customer=nil;
  234. if(customerinfo==nil)
  235. {
  236. contact=@"Select Contact";
  237. [self.btnContact setTitleColor:[UIColor redColor] forState:UIControlStateNormal];
  238. }
  239. else
  240. {
  241. contact=[customerinfo valueForKey:@"customer_contact"];
  242. customer=[customerinfo valueForKey:@"customer_name"];
  243. if(contact==nil||contact.length==0)
  244. {
  245. contact=@"No Name";
  246. [self.btnContact setTitleColor:[UIColor redColor] forState:UIControlStateNormal];
  247. }
  248. else
  249. {
  250. [self.btnContact setTitleColor:[UIColor greenColor] forState:UIControlStateNormal];
  251. }
  252. }
  253. self.btnContact.hidden = !appDelegate.bLogin;// 修复登出后仍旧显示select contact
  254. NSMutableArray* arr_contact = [[NSMutableArray alloc] init];
  255. if(contact.length>0)
  256. [arr_contact addObject:contact];
  257. if(customer.length>0)
  258. [arr_contact addObject:customer];
  259. NSString *contact_string = [arr_contact componentsJoinedByString:@" @"];
  260. [self.btnContact setTitle:contact_string forState:UIControlStateNormal];
  261. // if(appDelegate.bLogin)
  262. // [self.buttonUser setTitle:appDelegate.user forState:UIControlStateNormal];
  263. // else
  264. // [self.buttonUser setTitle:@"Sign in" forState:UIControlStateNormal];
  265. #ifdef RA_NOTIFICATION
  266. [ActiveViewController Notify:@"DetailViewController,PDFListViewController,CartViewController,PortfolioViewController,WatchListViewController,OrderListViewController,ContactListViewController,CategoryViewController" Message:RA_NOTIFICATION_RELOAD_DATA];
  267. #else
  268. [self reloadDocuments:true immediately:false];
  269. [self reloadCart:true immediately:false];
  270. [self reloadPortfolio:true immediately:false];
  271. [self reloadWish:true immediately:false];
  272. [self reloadOrder:true immediately:false];
  273. [self reloadContact:true immediately:false];
  274. [self reloadCategory:true immediately:false];
  275. ActiveViewController* lrvc = (ActiveViewController*)appDelegate.active_controller;
  276. if(reloadCurrentVC)
  277. {
  278. if(lrvc!=nil)
  279. [ lrvc refresh_on_login];
  280. }
  281. else
  282. {
  283. if(lrvc.refresh_type<=REFRESH_DATA)
  284. lrvc.refresh_type = REFRESH_DATA;
  285. else if(lrvc.refresh_type<=REFRESH_VIEW)
  286. lrvc.refresh_type = REFRESH_VIEW;
  287. }
  288. #endif
  289. // [self reload];
  290. }
  291. - (IBAction)onContactClick:(id)sender {
  292. UIApplication * app = [UIApplication sharedApplication];
  293. AppDelegate *appDelegate = (AppDelegate *)[app delegate];
  294. NSString* contactid=appDelegate.contact_id ;
  295. if(contactid==nil)
  296. {
  297. ContactListViewController* cvc = [[UIStoryboard storyboardWithName:@"ERP_Mobile_Contact" bundle:nil] instantiateViewControllerWithIdentifier:@"ContactListViewController" ];
  298. cvc.update_order = true;
  299. cvc.edit_icon = true;
  300. cvc.assig_icon = true;
  301. cvc.reset_icon = false;
  302. cvc.showNavibar = true;
  303. cvc.contact_type = @"Sales_Order_Customer";
  304. cvc.returnValue = ^(NSMutableDictionary* value,NSIndexPath* source){
  305. [self.navigationController popViewControllerAnimated:false];
  306. appDelegate.contact_id=[value valueForKey:@"customer_cid"];
  307. appDelegate.customerInfo = value;
  308. // [self handle_action_return:value indexPath:indexPath action:ACTION_FILL_SECTION];
  309. //
  310. // if(self.returnValue)
  311. // self.returnValue(value);
  312. };
  313. [self.navigationController pushViewController:cvc animated:true];
  314. }
  315. else
  316. {
  317. CustomerInfoViewController * vc = [[CustomerInfoViewController alloc] initWithNibName:@"CommonEditor.iPad" bundle:nil];
  318. vc.url_type = URL_LOCAL;
  319. // if(appDelegate.order_code.length>0)
  320. {
  321. vc.edit_icon = false;
  322. vc.assig_icon = true;
  323. vc.reset_icon = true;
  324. vc.request_url=LOCAL_URL_CUSTOMER_INFO_EDIT;
  325. }
  326. // else
  327. // {
  328. // vc.edit_icon = false;
  329. // vc.assig_icon = false;
  330. // vc.reset_icon = true;
  331. // vc.request_url=LOCAL_URL_CUSTOMER_INFO_EDITOR;
  332. // }
  333. // NSDictionary* dd=appDelegate.customerInfo;;
  334. vc.data_init = appDelegate.customerInfo;
  335. vc.update_order = true;
  336. vc.contactId=contactid;
  337. // vc.delegate = self;
  338. vc.returnValue = ^(NSMutableDictionary* value){
  339. appDelegate.contact_id=[value valueForKey:@"customer_cid"];
  340. appDelegate.customerInfo = value;
  341. };
  342. [self.navigationController pushViewController:vc animated:true];
  343. }
  344. }
  345. - (void)viewDidLoad
  346. {
  347. [super viewDidLoad];
  348. // NSLog(@"decrypt:%@",[AESCrypt fastdecrypt:@"vafHUwfRPIUbPNVnKhLc5aAVK7sOFRztlfJVRHW7QVa/qGgm11E5UwfYWZEBTQpH"]);
  349. self.automaticallyAdjustsScrollViewInsets = NO;
  350. NSString* value =[DefaultAppearance get_noneappearance_value:@"DefaultColor" valuename:@"labelcolor"];
  351. if(value==nil)
  352. value=@"";
  353. unsigned long frontcolor = strtoul([value UTF8String],0,16);
  354. [self.labelSo setTextColor:UIColorFromRGB(frontcolor)];
  355. float vx =[[DefaultAppearance get_noneappearance_value:@"MainLogo" valuename:@"x"] floatValue];
  356. float vy =[[DefaultAppearance get_noneappearance_value:@"MainLogo" valuename:@"y"] floatValue];
  357. float vwidth =[[DefaultAppearance get_noneappearance_value:@"MainLogo" valuename:@"width"] floatValue];
  358. float vheight =[[DefaultAppearance get_noneappearance_value:@"MainLogo" valuename:@"height"] floatValue];
  359. self.btn_LogoHome.frame = CGRectMake(vx, vy, vwidth, vheight);
  360. float mvx =[[DefaultAppearance get_noneappearance_value:@"ModePos" valuename:@"x"] floatValue];
  361. float mvy =[[DefaultAppearance get_noneappearance_value:@"ModePos" valuename:@"y"] floatValue];
  362. float mvwidth =[[DefaultAppearance get_noneappearance_value:@"ModePos" valuename:@"width"] floatValue];
  363. float mvheight =[[DefaultAppearance get_noneappearance_value:@"ModePos" valuename:@"height"] floatValue];
  364. self.labelMode.frame = CGRectMake(mvx, mvy, mvwidth, mvheight);
  365. self.label_ccount.layer.cornerRadius=10.5;
  366. self.label_ccount.layer.masksToBounds=true;
  367. self.label_wcount.layer.cornerRadius=10.5;
  368. self.label_wcount.layer.masksToBounds=true;
  369. self.label_cccount.layer.cornerRadius=10.5;
  370. self.label_cccount.layer.masksToBounds=true;
  371. self.label_cwcount.layer.cornerRadius=10.5;
  372. self.label_cwcount.layer.masksToBounds=true;
  373. self.employee_bp.hidden = false;
  374. self.customer_bp.hidden = true;
  375. UIApplication * app = [UIApplication sharedApplication];
  376. AppDelegate *appDelegate = (AppDelegate *)[app delegate];
  377. appDelegate.main_vc = self;
  378. [appDelegate update_count_mark];
  379. NSDictionary* infoDict =[[NSBundle mainBundle] infoDictionary];
  380. NSString* build =[infoDict objectForKey:@"CFBundleVersion"];
  381. NSString* version =[infoDict objectForKey:@"CFBundleShortVersionString"];
  382. //#ifdef BUILD_HMLG
  383. // NSString* versionNum = [NSString stringWithFormat:@"HMLG %@ Build %@",version,build];
  384. //#endif
  385. //#if defined(BUILD_NPD) || defined(BUILD_USAI)
  386. // NSString* versionNum = [NSString stringWithFormat:@"npd %@ Build %@",version,build];
  387. //#endif
  388. //#ifdef BUILD_HOMER
  389. NSString* versionNum = [NSString stringWithFormat:@"%@ %@ Build %@",COMPANY_SHORT_NAME,version,build];
  390. //#endif
  391. [self initMenuItems];
  392. self.homeViewController =[[UIStoryboard storyboardWithName:@"Main" bundle:nil] instantiateViewControllerWithIdentifier:@"HomeViewController"];
  393. self.categoryViewController =[ [UIStoryboard storyboardWithName:@"ERP_Mobile_Search" bundle:nil] instantiateViewControllerWithIdentifier:@"CategoryViewController"];
  394. self.cartViewController =[[UIStoryboard storyboardWithName:@"ERP_Mobile_Cart" bundle:nil] instantiateViewControllerWithIdentifier:@"CartViewController"];
  395. self.orderViewController =[[UIStoryboard storyboardWithName:@"ERP_Mobile_Order" bundle:nil] instantiateViewControllerWithIdentifier:@"OrderListViewController"];
  396. self.contactListViewController = [[UIStoryboard storyboardWithName:@"ERP_Mobile_Contact" bundle:nil] instantiateViewControllerWithIdentifier:@"ContactListViewController" ];
  397. self.contactListViewController.contact_type = @"Sales_Order_Customer";
  398. self.contactListViewController.edit_icon = true;
  399. self.contactListViewController.assig_icon = true;
  400. self.contactListViewController.reset_icon = false;
  401. self.contactListViewController.ui_type = CONTACT_LIST;
  402. __block MainViewController *brself= self;
  403. self.contactListViewController.returnValue = ^(NSMutableDictionary* value,NSIndexPath* source){
  404. appDelegate.contact_id=[value valueForKey:@"customer_cid"];
  405. appDelegate.customerInfo = value;
  406. [brself refreshContactDisplay];
  407. [brself switchToCart:nil];
  408. // [self handle_action_return:value indexPath:indexPath action:ACTION_FILL_SECTION];
  409. //
  410. // if(self.returnValue)
  411. // self.returnValue(value);
  412. };
  413. //Capturing strongly warring;
  414. self.orderViewController.selectOrder=^(NSMutableDictionary* order_detail){
  415. //main view 下打开order
  416. //Capturing strongly warring;
  417. __block MainViewController *brbrself= brself;
  418. brself.cartViewController.onFinishLoad=^()
  419. {
  420. [brbrself.cartViewController placeOrder];
  421. brbrself.cartViewController.onFinishLoad=nil;
  422. };
  423. [brself refreshContactDisplay];
  424. [brself switchToCart:nil];
  425. };
  426. self.watchListViewController =[[UIStoryboard storyboardWithName:@"Main" bundle:nil] instantiateViewControllerWithIdentifier:@"WatchListViewController"];
  427. self.portfolioViewController = [[UIStoryboard storyboardWithName:@"ERP_Mobile_Portfolio" bundle:nil] instantiateViewControllerWithIdentifier:@"PortfolioViewController" ];
  428. self.pdfListViewController = [[UIStoryboard storyboardWithName:@"ERP_Mobile_Portfolio" bundle:nil] instantiateViewControllerWithIdentifier:@"PortfolioListViewController" ];
  429. self.itemSearchViewController=[[UIStoryboard storyboardWithName:@"ERP_Mobile_Search" bundle:nil] instantiateViewControllerWithIdentifier:@"ItemSearchViewController"];
  430. self.searchViewController=[ [UIStoryboard storyboardWithName:@"ERP_Mobile_Search" bundle:nil] instantiateViewControllerWithIdentifier:@"SearchViewController"];
  431. [self addChildViewController:self.homeViewController]; //1
  432. self.homeViewController.view.frame = self.container.bounds;
  433. [self.container addSubview:self.homeViewController.view]; //2
  434. [self.homeViewController didMoveToParentViewController:self];
  435. self.current_VC = self.homeViewController;
  436. // self.is_home = true;
  437. // [UIBezierPath bezierPathWithRect:self.headerView.bounds].CGPath;
  438. self.headerView.layer.shadowPath =[UIBezierPath bezierPathWithRect:self.headerView.bounds].CGPath;
  439. self.headerView.layer.masksToBounds = false;
  440. //添加四个边阴影
  441. self.headerView.layer.shadowColor = [UIColor blackColor].CGColor;
  442. self.headerView.layer.shadowOffset = CGSizeMake(0, 0);
  443. self.headerView.layer.shadowOpacity = 0.5;
  444. self.headerView.layer.shadowRadius = 2.0;
  445. self.labelVer.text=versionNum;
  446. // UIApplication * app = [UIApplication sharedApplication];
  447. // AppDelegate *appDelegate = (AppDelegate *)[app delegate];
  448. if(appDelegate.categoryMenu==nil)
  449. {
  450. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  451. NSDictionary* category=[RANetwork request_Cagegory];
  452. dispatch_async(dispatch_get_main_queue(), ^{
  453. if([[category valueForKey:@"result"] intValue]==2)
  454. {
  455. appDelegate.categoryMenu = category;
  456. }
  457. else
  458. {
  459. // [RAUtils error_alert:[category valueForKey:@"err_msg"] title:@"Failed to load category."] ;
  460. }
  461. // self.categoryViewController.categoryMenu = category;
  462. });
  463. });
  464. }
  465. // Do any additional setup after loading the view, typically from a nib.
  466. }
  467. - (IBAction)onmenuButtonClicked:(id)sender {
  468. self.openMenuButton.hidden = true;
  469. self.sideMenu.hidden = false;
  470. [self showMenu];
  471. }
  472. - (IBAction)switchMenu:(UIButton *)sender {
  473. // if(self.menuShown==true)
  474. [self hideMenu];
  475. self.openMenuButton.hidden = false;
  476. self.sideMenu.hidden = true;
  477. // else
  478. // [self showMenu];
  479. }
  480. -(void) Loginout:(bool)showlogin
  481. {
  482. UIApplication * app = [UIApplication sharedApplication];
  483. AppDelegate *appDelegate = (AppDelegate *)[app delegate];
  484. if(appDelegate.bLogin)
  485. {
  486. UIAlertView * waitalert = [RAUtils waiting_alert:@"Please wait" title:@"Sign out"];
  487. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  488. NSDictionary* return_json = [RANetwork logout];
  489. dispatch_async(dispatch_get_main_queue(), ^{
  490. [waitalert dismissWithClickedButtonIndex:0 animated:FALSE];
  491. if([[return_json valueForKey:@"result"] intValue]==2)
  492. {
  493. // [self hideMenu];
  494. // [self switchToHome:nil];
  495. [appDelegate Logout];
  496. [self checklogin :false];
  497. if(showlogin)
  498. {
  499. LoginViewController * loginvc =[[UIStoryboard storyboardWithName:@"Main" bundle:nil] instantiateViewControllerWithIdentifier:@"LoginViewController"];
  500. loginvc.returnValue = ^(bool blogin){
  501. [self checklogin :true];
  502. };
  503. UINavigationController* navi = [[UINavigationController alloc] initWithRootViewController:loginvc] ;
  504. navi.modalPresentationStyle = UIModalTransitionStyleCrossDissolve;//有三种状态,自己看看是哪种
  505. [self presentViewController:navi animated:YES completion:^{
  506. DebugLog(@"login present.........");
  507. }];
  508. }
  509. }
  510. else
  511. {
  512. [RAUtils message_alert:[return_json valueForKey:@"err_msg"] title:@"Sign Out" controller:self] ;
  513. }
  514. });
  515. });
  516. }
  517. else
  518. {
  519. LoginViewController * loginvc =[[UIStoryboard storyboardWithName:@"Main" bundle:nil] instantiateViewControllerWithIdentifier:@"LoginViewController"];
  520. loginvc.returnValue = ^(bool blogin){
  521. [self checklogin :true];
  522. };
  523. UINavigationController* navi = [[UINavigationController alloc] initWithRootViewController:loginvc] ;
  524. navi.modalPresentationStyle = UIModalTransitionStyleCrossDissolve;//有三种状态,自己看看是哪种
  525. [self presentViewController:navi animated:YES completion:^{
  526. DebugLog(@"login present.........");
  527. }];
  528. }
  529. }
  530. - (IBAction)onUserListClick:(id)sender {
  531. UIApplication * app = [UIApplication sharedApplication];
  532. AppDelegate *appDelegate = (AppDelegate *)[app delegate];
  533. if(!appDelegate.bLogin)
  534. return;
  535. UserListViewController * vc =[[UIStoryboard storyboardWithName:@"Main" bundle:nil] instantiateViewControllerWithIdentifier:@"UserListViewController"];
  536. vc.returnValue = ^(bool blogin){
  537. if(blogin==false)
  538. {
  539. LoginViewController * loginvc =[[UIStoryboard storyboardWithName:@"Main" bundle:nil] instantiateViewControllerWithIdentifier:@"LoginViewController"];
  540. loginvc.returnValue = ^(bool blogin){
  541. [self checklogin :true];
  542. };
  543. UINavigationController* navi = [[UINavigationController alloc] initWithRootViewController:loginvc] ;
  544. navi.modalPresentationStyle = UIModalTransitionStyleCrossDissolve;//有三种状态,自己看看是哪种
  545. [self presentViewController:navi animated:YES completion:^{
  546. DebugLog(@"login present.........");
  547. }];
  548. }
  549. };
  550. UINavigationController* navi = [[UINavigationController alloc] initWithRootViewController:vc] ;
  551. navi.modalPresentationStyle = UIModalTransitionStyleCrossDissolve;//有三种状态,自己看看是哪种
  552. [self presentViewController:navi animated:YES completion:^{
  553. DebugLog(@"login present.........");
  554. }];
  555. }
  556. - (IBAction)OnLoginClick:(UIButton *)sender {
  557. [self Loginout:true];
  558. }
  559. - (IBAction)onScanClick:(id)sender {
  560. ScannerViewController * scannerVC =[[UIStoryboard storyboardWithName:@"Main" bundle:nil] instantiateViewControllerWithIdentifier:@"ScannerViewController"];
  561. [self.navigationController pushViewController:scannerVC animated:true];
  562. }
  563. - (IBAction)switchToSearch:(UIButton *)sender {
  564. if([self.current_VC isKindOfClass:[SearchViewController class]])
  565. return;
  566. [self flipFromViewController:self.current_VC toViewController:self.searchViewController withDirection:UIViewAnimationOptionTransitionCrossDissolve];
  567. }
  568. - (IBAction)switchToWishlist:(UIButton *)sender {
  569. [self switchtowishlist];
  570. }
  571. -(void)switchtowishlist
  572. {
  573. if([self.current_VC isKindOfClass:[WatchListViewController class]])
  574. return;
  575. // if([self.current_VC isKindOfClass:[OrderListViewController class]])
  576. // return;
  577. UIApplication * app = [UIApplication sharedApplication];
  578. AppDelegate *appDelegate = (AppDelegate *)[app delegate];
  579. if(appDelegate.bLogin==false)
  580. {
  581. LoginViewController * loginvc =[[UIStoryboard storyboardWithName:@"Main" bundle:nil] instantiateViewControllerWithIdentifier:@"LoginViewController"];
  582. // loginvc.delegate = self;
  583. // loginvc.modalPresentationStyle = UIModalPresentationFormSheet;//有三种状态,自己看看是哪种
  584. loginvc.returnValue = ^(bool blogin){
  585. if(blogin)
  586. {
  587. [self checklogin:true];
  588. [self flipFromViewController:self.current_VC toViewController:self.watchListViewController withDirection:UIViewAnimationOptionTransitionCrossDissolve];
  589. }
  590. };
  591. UINavigationController* navi = [[UINavigationController alloc] initWithRootViewController:loginvc] ;
  592. // [self hackModalSheetSize:CGSizeMake(450, 200) ofVC:navi];
  593. navi.modalPresentationStyle = UIModalTransitionStyleCrossDissolve;//有三种状态,自己看看是哪种
  594. [self presentViewController:navi animated:YES completion:^{
  595. // navi.view.superview.bounds = CGRectMake(0, 0, 480, 320);
  596. DebugLog(@"LoginViewController present.........");
  597. // self.btop = false;
  598. // <#code#>
  599. }];
  600. }
  601. else
  602. [self flipFromViewController:self.current_VC toViewController:self.watchListViewController withDirection:UIViewAnimationOptionTransitionCrossDissolve];
  603. }
  604. - (IBAction)switchToContact:(UIButton *)sender {
  605. [self switchtocontact];
  606. }
  607. -(void)switchtocontact
  608. {
  609. if([self.current_VC isKindOfClass:[ContactListViewController class]])
  610. return;
  611. UIApplication * app = [UIApplication sharedApplication];
  612. AppDelegate *appDelegate = (AppDelegate *)[app delegate];
  613. if(appDelegate.bLogin==false)
  614. {
  615. LoginViewController * loginvc =[[UIStoryboard storyboardWithName:@"Main" bundle:nil] instantiateViewControllerWithIdentifier:@"LoginViewController"];
  616. // loginvc.delegate = self;
  617. // loginvc.modalPresentationStyle = UIModalPresentationFormSheet;//有三种状态,自己看看是哪种
  618. loginvc.returnValue = ^(bool blogin){
  619. if(blogin)
  620. {
  621. [self checklogin:true];
  622. if(appDelegate.user_type==USER_ROLE_EMPLOYEE)
  623. {
  624. [self flipFromViewController:self.current_VC toViewController:self.contactListViewController withDirection:UIViewAnimationOptionTransitionCrossDissolve];
  625. }
  626. else
  627. {
  628. [RAUtils message_alert:@"Customer Login does not support this feature." title:@"Contact List" controller:self] ;
  629. }
  630. }
  631. };
  632. UINavigationController* navi = [[UINavigationController alloc] initWithRootViewController:loginvc] ;
  633. // [self hackModalSheetSize:CGSizeMake(450, 200) ofVC:navi];
  634. navi.modalPresentationStyle = UIModalTransitionStyleCrossDissolve;//有三种状态,自己看看是哪种
  635. [self presentViewController:navi animated:YES completion:^{
  636. // navi.view.superview.bounds = CGRectMake(0, 0, 480, 320);
  637. DebugLog(@"LoginViewController present.........");
  638. // self.btop = false;
  639. // <#code#>
  640. }];
  641. }
  642. else
  643. [self flipFromViewController:self.current_VC toViewController:self.contactListViewController withDirection:UIViewAnimationOptionTransitionCrossDissolve];
  644. }
  645. - (void) reload
  646. {
  647. AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
  648. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  649. NSDictionary* category=[RANetwork request_Cagegory];
  650. dispatch_async(dispatch_get_main_queue(), ^{
  651. if([[category valueForKey:@"result"] intValue]==2)
  652. {
  653. appDelegate.categoryMenu = category;
  654. }
  655. else
  656. {
  657. // [RAUtils error_alert:[category valueForKey:@"err_msg"]] ;
  658. }
  659. });
  660. });
  661. }
  662. - (IBAction)onUserButtonClick:(id)sender {
  663. DebugLog(@"header view login");
  664. AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
  665. if( appDelegate.user ==nil)
  666. {
  667. LoginViewController * loginvc =[[UIStoryboard storyboardWithName:@"Main" bundle:nil] instantiateViewControllerWithIdentifier:@"LoginViewController"];
  668. // loginvc.delegate = self;
  669. // loginvc.modalPresentationStyle = UIModalPresentationFormSheet;//有三种状态,自己看看是哪种
  670. loginvc.returnValue = ^(bool blogin){
  671. [self checklogin:true];
  672. };
  673. UINavigationController* navi = [[UINavigationController alloc] initWithRootViewController:loginvc] ;
  674. // [self hackModalSheetSize:CGSizeMake(450, 200) ofVC:navi];
  675. navi.modalPresentationStyle = UIModalTransitionStyleCrossDissolve;//有三种状态,自己看看是哪种
  676. [self presentViewController:navi animated:YES completion:^{
  677. // <#code#>
  678. }];
  679. }
  680. }
  681. #pragma mark - LoginViewControllerDelegate
  682. -(void)LoginViewControllerDidLogin:(LoginViewController *)viewController
  683. {
  684. [viewController dismissViewControllerAnimated:YES completion:nil];
  685. AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
  686. self.sideMenu_UserName.text =appDelegate.user;
  687. [self.btn_sideMenu_UserName setTitle:appDelegate.user forState:UIControlStateNormal];
  688. [self.btnLogin setTitle:@"Sign out" forState:UIControlStateNormal];
  689. [RANetwork LoadImage:appDelegate.user_icon into:self.user_head ];
  690. if(/*appDelegate.user_type==USER_ROLE_EMPLOYEE*/true)
  691. self.btnContact.hidden = NO;
  692. else
  693. self.btnContact.hidden = YES;
  694. NSDictionary * customerinfo=appDelegate.customerInfo;
  695. NSString * contact=nil;
  696. NSString * customer=nil;
  697. if(customerinfo==nil)
  698. {
  699. contact=@"Select Contact";
  700. [self.btnContact setTitleColor:[UIColor redColor] forState:UIControlStateNormal];
  701. }
  702. else
  703. {
  704. contact=[customerinfo valueForKey:@"customer_contact"];
  705. customer=[customerinfo valueForKey:@"customer_name"];
  706. if(contact==nil||contact.length==0)
  707. {
  708. contact=@"No Name";
  709. [self.btnContact setTitleColor:[UIColor redColor] forState:UIControlStateNormal];
  710. }
  711. else
  712. {
  713. [self.btnContact setTitleColor:UIColorFromRGB(0x009900) forState:UIControlStateNormal];
  714. }
  715. }
  716. NSMutableArray* arr_contact = [[NSMutableArray alloc] init];
  717. if(contact.length>0)
  718. [arr_contact addObject:contact];
  719. if(customer.length>0)
  720. [arr_contact addObject:customer];
  721. NSString *contact_string = [arr_contact componentsJoinedByString:@" @"];
  722. [self.btnContact setTitle:contact_string forState:UIControlStateNormal];
  723. // [self.buttonUser setTitle:appDelegate.user forState:UIControlStateNormal];
  724. [self reload];
  725. }
  726. - (void) flipFromViewController:(UIViewController*) fromController
  727. toViewController:(UIViewController*) toController
  728. withDirection:(UIViewAnimationOptions) direction
  729. {
  730. toController.view.frame = self.container.bounds; // 1
  731. // UIViewAutoresizingFlexibleLeftMargin = 1 << 0,
  732. // UIViewAutoresizingFlexibleWidth = 1 << 1,
  733. // UIViewAutoresizingFlexibleRightMargin = 1 << 2,
  734. // UIViewAutoresizingFlexibleTopMargin = 1 << 3,
  735. // UIViewAutoresizingFlexibleHeight = 1 << 4,
  736. // UIViewAutoresizingFlexibleBottomMargin = 1 << 5
  737. toController.view.autoresizingMask = UIViewAutoresizingFlexibleHeight |UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleLeftMargin|UIViewAutoresizingFlexibleRightMargin|UIViewAutoresizingFlexibleTopMargin|UIViewAutoresizingFlexibleBottomMargin;
  738. NSLog(@"MAIN VIEWCONTROLLER CHILD COUNT %lu",(unsigned long)self.childViewControllers.count);
  739. [self addChildViewController:toController]; //
  740. [fromController willMoveToParentViewController:nil]; //
  741. [self transitionFromViewController:fromController
  742. toViewController:toController
  743. duration:0.0
  744. options:direction | UIViewAnimationOptionCurveEaseIn
  745. animations:nil
  746. completion:^(BOOL finished) {
  747. [toController didMoveToParentViewController:self]; // 2
  748. [fromController removeFromParentViewController]; // 3
  749. self.current_VC = toController;
  750. if([fromController isKindOfClass:[HomeViewController class]])
  751. {
  752. // [[NSNotificationCenter defaultCenter] postNotificationName:CYCLESCROLL_STOPTIMMER object:nil];
  753. // self.homeViewController = nil;
  754. }
  755. }];
  756. }
  757. -(void)topicViewSelected:(int) type _id: (int) _id
  758. {
  759. [self switchToCagegory:nil];
  760. if(type==0)
  761. {
  762. // [self.categoryViewController showDetailat:_id];
  763. }
  764. else
  765. {
  766. [self.categoryViewController showCategory];
  767. }
  768. }
  769. -(void)categoryMenuSelected:(NSString*)_id
  770. {
  771. [self switchToCagegory:_id];
  772. // [self.categoryViewController showCategory];
  773. }
  774. - (void)switchToItemSearch:(NSString* )coverttype {
  775. // NSString* ttt =[@"Category" stringByAppendingString:[self categoryString:categoryid node:self.categoryMenu level:0]];
  776. // UIApplication * app = [UIApplication sharedApplication];
  777. // AppDelegate *appDelegate = (AppDelegate *)[app delegate];
  778. self.itemSearchViewController.default_filter = nil;
  779. self.itemSearchViewController.covertype = coverttype;
  780. self.itemSearchViewController.saved_covertype = coverttype;
  781. // self.categoryViewController.p_available = nil;
  782. // self.categoryViewController.p_price = nil;
  783. // self.categoryViewController.p_QTY = nil;
  784. // self.categoryViewController.p_bestseller = nil;
  785. // [self.itemSearchViewController reload_container_getdata:true];
  786. self.itemSearchViewController.p_available = nil;
  787. self.itemSearchViewController.p_price = nil;
  788. self.itemSearchViewController.p_QTY = nil;
  789. self.itemSearchViewController.p_bestseller = nil;
  790. #ifdef RA_NOTIFICATION
  791. [ActiveViewController Notify:@"ItemSearchViewController" Message:RA_NOTIFICATION_RELOAD_DATA];
  792. #else
  793. [self.itemSearchViewController reload_container_getdata:true];
  794. #endif
  795. // .categoryString = [@"Category" stringByAppendingString:[self categoryString:categoryid node:appDelegate.categoryMenu level:0]];
  796. // self.categoryViewController.cagegoryLabel.text =self.categoryViewController.categoryString;
  797. // // NSString* sss =[@"Category" stringByAppendingString:[self categoryString:categoryid node:appDelegate.categoryMenu level:0]];
  798. // self.categoryViewController.categoryid = categoryid ;
  799. // [self.itemSearchViewController reload];
  800. // [self.itemSearchViewController showCategory];
  801. if([self.current_VC isKindOfClass:[ItemSearchViewController class]])
  802. return;
  803. [self flipFromViewController:self.current_VC toViewController:self.itemSearchViewController withDirection:UIViewAnimationOptionTransitionCrossDissolve];
  804. [[self navigationController] setNavigationBarHidden:YES animated:NO];
  805. // self.is_home = false;
  806. // self.current_vc = VC_CATEGORY;
  807. // [self.homeViewController willMoveToParentViewController:nil]; //1
  808. // [self.homeViewController.view removeFromSuperview]; //2
  809. // [self.homeViewController removeFromParentViewController]; //3
  810. //
  811. // [self.container addSubview:self.cagegoryViewController.view]; //2
  812. // [self.cagegoryViewController didMoveToParentViewController:self];
  813. }
  814. - (void)switchToCagegory:(NSString* )categoryid {
  815. // NSString* ttt =[@"Category" stringByAppendingString:[self categoryString:categoryid node:self.categoryMenu level:0]];
  816. UIApplication * app = [UIApplication sharedApplication];
  817. AppDelegate *appDelegate = (AppDelegate *)[app delegate];
  818. // NSString* aaa =[@"Category" stringByAppendingString:[self categoryString:categoryid node:appDelegate.categoryMenu level:0]];;
  819. self.categoryViewController.categoryString = [@"Category" stringByAppendingString:[self categoryString:categoryid node:appDelegate.categoryMenu level:0]];
  820. self.categoryViewController.cagegoryLabel.text =self.categoryViewController.categoryString;
  821. // NSString* sss =[@"Category" stringByAppendingString:[self categoryString:categoryid node:appDelegate.categoryMenu level:0]];
  822. self.categoryViewController.categoryid = categoryid ;
  823. self.categoryViewController.loadall=false;
  824. // self.categoryViewController.collectionview
  825. self.categoryViewController.p_alert = nil;
  826. self.categoryViewController.p_available = nil;
  827. self.categoryViewController.p_price = nil;
  828. self.categoryViewController.p_QTY = nil;
  829. self.categoryViewController.p_bestseller = nil;
  830. self.categoryViewController.modelname = nil;
  831. self.categoryViewController.modeldescrip = nil;
  832. #ifdef RA_NOTIFICATION
  833. [ActiveViewController Notify:@"CategoryViewController" Message:RA_NOTIFICATION_RELOAD_DATA];
  834. #else
  835. [self.categoryViewController reload_container_getdata:true];
  836. #endif
  837. [self.categoryViewController showCategory];
  838. if([self.current_VC isKindOfClass:[CategoryViewController class]])
  839. return;
  840. [self flipFromViewController:self.current_VC toViewController:self.categoryViewController withDirection:UIViewAnimationOptionTransitionCrossDissolve];
  841. [[self navigationController] setNavigationBarHidden:YES animated:NO];
  842. // self.is_home = false;
  843. // self.current_vc = VC_CATEGORY;
  844. // [self.homeViewController willMoveToParentViewController:nil]; //1
  845. // [self.homeViewController.view removeFromSuperview]; //2
  846. // [self.homeViewController removeFromParentViewController]; //3
  847. //
  848. // [self.container addSubview:self.cagegoryViewController.view]; //2
  849. // [self.cagegoryViewController didMoveToParentViewController:self];
  850. }
  851. - (IBAction)switchToHome:(UIButton *)sender {
  852. [self switchToHome];
  853. // self.current_vc = VC_HOME;
  854. // self.is_home = true;
  855. //
  856. // [self.cagegoryViewController willMoveToParentViewController:nil]; //1
  857. // [self.cagegoryViewController.view removeFromSuperview]; //2
  858. // [self.cagegoryViewController removeFromParentViewController]; //3
  859. //
  860. // [self.container addSubview:self.homeViewController.view]; //2
  861. // [self.homeViewController didMoveToParentViewController:self];
  862. }
  863. -(void)switchToHome
  864. {
  865. if([self.current_VC isKindOfClass:[HomeViewController class]])
  866. return;
  867. if(self.homeViewController == nil)
  868. {
  869. self.homeViewController =[[UIStoryboard storyboardWithName:@"Main" bundle:nil] instantiateViewControllerWithIdentifier:@"HomeViewController"];
  870. self.homeViewController.view.frame = self.container.bounds;
  871. }
  872. [self flipFromViewController:self.current_VC toViewController:self.homeViewController withDirection:UIViewAnimationOptionTransitionCrossDissolve];
  873. }
  874. -(void) switchToPreviousVC
  875. {
  876. if(self.previous_VC==nil)
  877. return;
  878. if([self.current_VC isKindOfClass:[self.previous_VC class]])
  879. return;
  880. [self flipFromViewController:self.current_VC toViewController:self.previous_VC withDirection:UIViewAnimationOptionTransitionCrossDissolve];
  881. }
  882. - (IBAction)switchToCart:(UIButton *)sender {
  883. [self switchToCart];
  884. // self.current_vc = VC_HOME;
  885. }
  886. -(void) switchToCart
  887. {
  888. if([self.current_VC isKindOfClass:[CartViewController class]])
  889. return;
  890. UIApplication * app = [UIApplication sharedApplication];
  891. AppDelegate *appDelegate = (AppDelegate *)[app delegate];
  892. // MainViewController* main_vc=(MainViewController*)appDelegate.main_vc;
  893. if(appDelegate.bLogin==false)
  894. {
  895. LoginViewController * loginvc =[[UIStoryboard storyboardWithName:@"Main" bundle:nil] instantiateViewControllerWithIdentifier:@"LoginViewController"];
  896. // loginvc.delegate = self;
  897. // loginvc.modalPresentationStyle = UIModalPresentationFormSheet;//有三种状态,自己看看是哪种
  898. loginvc.returnValue = ^(bool blogin){
  899. // UIApplication * app = [UIApplication sharedApplication];
  900. // AppDelegate *appDelegate = (AppDelegate *)[app delegate];
  901. if(blogin)
  902. {
  903. if(/*appDelegate.user_type==USER_ROLE_EMPLOYEE*/true)
  904. {
  905. [self checklogin:false];
  906. if(appDelegate.can_create_order)
  907. {
  908. NSString* msg =@"";
  909. if(appDelegate.contact_id.length>0)
  910. {
  911. msg = [msg stringByAppendingString:@"\n\nCustomer:"];
  912. msg = [msg stringByAppendingString:appDelegate.customerInfo[@"customer_name"]];
  913. }
  914. UIAlertView * alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Switch To Cart", nil) message:msg delegate:self cancelButtonTitle:NSLocalizedString(@"Cancel", nil) otherButtonTitles:NSLocalizedString(@"Check for saved order", nil),NSLocalizedString(@"Create new order", nil), nil];
  915. // alert.
  916. [alert show];
  917. }
  918. else
  919. {
  920. UIAlertView * alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Switch To Cart", nil) message:NSLocalizedString(@"Do you want to switch to a pending order?", nil) delegate:self cancelButtonTitle:NSLocalizedString(@"Cancel", nil) otherButtonTitles:NSLocalizedString(@"Check for saved order", nil), nil];
  921. // alert.
  922. [alert show];
  923. }
  924. }
  925. else
  926. {
  927. [self checklogin:true];
  928. self.previous_VC = self.current_VC;
  929. [self flipFromViewController:self.current_VC toViewController:self.cartViewController withDirection:UIViewAnimationOptionTransitionCrossDissolve];
  930. }
  931. }
  932. // self.offset = 0;
  933. // [self.content_data removeAllObjects];
  934. // [self loadpage];
  935. //
  936. // [[self navigationController] setNavigationBarHidden:YES animated:NO];
  937. };
  938. UINavigationController* navi = [[UINavigationController alloc] initWithRootViewController:loginvc] ;
  939. // [self hackModalSheetSize:CGSizeMake(450, 200) ofVC:navi];
  940. navi.modalPresentationStyle = UIModalTransitionStyleCrossDissolve;//有三种状态,自己看看是哪种
  941. [self presentViewController:navi animated:YES completion:^{
  942. // navi.view.superview.bounds = CGRectMake(0, 0, 480, 320);
  943. DebugLog(@"LoginViewController present.........");
  944. // self.btop = false;
  945. // <#code#>
  946. }];
  947. }
  948. else
  949. {
  950. // if(/*appDelegate.user_type==USER_ROLE_EMPLOYEE&&/*appDelegate.contact_id==nil&&*/appDelegate.order_code==nil)
  951. if(appDelegate.order_code==nil)
  952. {
  953. // [self checklogin:false];
  954. if(appDelegate.can_create_order)
  955. {
  956. NSString* msg =@"";
  957. if(appDelegate.contact_id.length>0)
  958. {
  959. msg = [msg stringByAppendingString:@"\n\nCustomer:"];
  960. msg = [msg stringByAppendingString:appDelegate.customerInfo[@"customer_name"]];
  961. }
  962. UIAlertView * alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Switch to cart", nil) message:msg delegate:self cancelButtonTitle:NSLocalizedString(@"Cancel", nil) otherButtonTitles:NSLocalizedString(@"Check for saved order", nil),NSLocalizedString(@"Create new order", nil), nil];
  963. // alert.
  964. [alert show];
  965. }
  966. else
  967. {
  968. UIAlertView * alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Switch to cart", nil) message:NSLocalizedString(@"Do you want to Switch to a pending order?", nil) delegate:self cancelButtonTitle:NSLocalizedString(@"Cancel", nil) otherButtonTitles:NSLocalizedString(@"Switch to pending order", nil), nil];
  969. // alert.
  970. [alert show];
  971. }
  972. }
  973. else
  974. {
  975. self.previous_VC = self.current_VC;
  976. [self flipFromViewController:self.current_VC toViewController:self.cartViewController withDirection:UIViewAnimationOptionTransitionCrossDissolve];
  977. }
  978. }
  979. }
  980. -(void) switchToOrder
  981. {
  982. if([self.current_VC isKindOfClass:[OrderListViewController class]])
  983. return;
  984. UIApplication * app = [UIApplication sharedApplication];
  985. AppDelegate *appDelegate = (AppDelegate *)[app delegate];
  986. if(appDelegate.bLogin==false)
  987. {
  988. LoginViewController * loginvc =[[UIStoryboard storyboardWithName:@"Main" bundle:nil] instantiateViewControllerWithIdentifier:@"LoginViewController"];
  989. // loginvc.delegate = self;
  990. // loginvc.modalPresentationStyle = UIModalPresentationFormSheet;//有三种状态,自己看看是哪种
  991. loginvc.returnValue = ^(bool blogin){
  992. if(blogin)
  993. {
  994. [self checklogin:true];
  995. [self flipFromViewController:self.current_VC toViewController:self.orderViewController withDirection:UIViewAnimationOptionTransitionCrossDissolve];
  996. }
  997. };
  998. UINavigationController* navi = [[UINavigationController alloc] initWithRootViewController:loginvc] ;
  999. // [self hackModalSheetSize:CGSizeMake(450, 200) ofVC:navi];
  1000. navi.modalPresentationStyle = UIModalTransitionStyleCrossDissolve;//有三种状态,自己看看是哪种
  1001. [self presentViewController:navi animated:YES completion:^{
  1002. // navi.view.superview.bounds = CGRectMake(0, 0, 480, 320);
  1003. DebugLog(@"LoginViewController present.........");
  1004. // self.btop = false;
  1005. // <#code#>
  1006. }];
  1007. }
  1008. else
  1009. [self flipFromViewController:self.current_VC toViewController:self.orderViewController withDirection:UIViewAnimationOptionTransitionCrossDissolve];
  1010. }
  1011. - (IBAction)switchToOrder:(id)sender {
  1012. [self switchToOrder];
  1013. }
  1014. #pragma mark - CategoryMenuDelegate
  1015. -(void)SelectCategory:(NSString *)category
  1016. {
  1017. [self switchToCagegory:category];
  1018. }
  1019. - (IBAction)showCategoryMenu:(id)sender {
  1020. RAViewController * categorymenuVC =[[UIStoryboard storyboardWithName:@"ERP_Mobile_Search" bundle:nil] instantiateViewControllerWithIdentifier:@"RAViewController"];
  1021. // categorymenuVC.rootViewController = self;
  1022. categorymenuVC.CateMenu_delegate = self;
  1023. // categorymenuVC.modalPresentationStyle = UIModalPresentationFormSheet;//有三种状态,自己看看是哪种
  1024. // [self presentViewController:categorymenuVC animated:YES completion:^{
  1025. //
  1026. // DebugLog(@"login.........");
  1027. // // <#code#>
  1028. // }];
  1029. UINavigationController* navi = [[UINavigationController alloc] initWithRootViewController:categorymenuVC] ;
  1030. navi.modalPresentationStyle = UIModalTransitionStyleCrossDissolve;//有三种状态,自己看看是哪种
  1031. [self presentViewController:navi animated:YES completion:^{
  1032. // navi.view.superview.bounds = CGRectMake(0, 0, 480, 320);
  1033. DebugLog(@"bundle present.........");
  1034. // self.btop = false;
  1035. // <#code#>
  1036. }];
  1037. // if ([[UIDevice currentDevice].systemVersion floatValue] >= 8.0) {
  1038. // categorymenuVC.providesPresentationContextTransitionStyle = YES;
  1039. // categorymenuVC.definesPresentationContext = YES;
  1040. // categorymenuVC.modalPresentationStyle = UIModalPresentationFormSheet;
  1041. // [self presentViewController:categorymenuVC animated:YES completion:nil];
  1042. // } else {
  1043. // categorymenuVC.modalPresentationStyle = UIModalPresentationFormSheet;
  1044. // [self presentViewController:categorymenuVC animated:NO completion:nil];
  1045. //// self.view.window.rootViewController.modalPresentationStyle = UIModalPresentationFullScreen;
  1046. // }
  1047. UIApplication * app = [UIApplication sharedApplication];
  1048. AppDelegate *appDelegate = (AppDelegate *)[app delegate];
  1049. if(appDelegate.categoryMenu == nil)
  1050. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  1051. NSDictionary* category=[RANetwork request_Cagegory];
  1052. dispatch_async(dispatch_get_main_queue(), ^{
  1053. if([[category valueForKey:@"result"] intValue]==2)
  1054. {
  1055. appDelegate.categoryMenu = category;
  1056. [categorymenuVC SetMenu:appDelegate.categoryMenu ];
  1057. }
  1058. else
  1059. if([[category valueForKey:@"result"] intValue]==RESULT_NET_ERROR)
  1060. {
  1061. [categorymenuVC SetMenu:nil ];
  1062. }
  1063. else
  1064. {
  1065. [RAUtils message_alert:[category valueForKey:@"err_msg"] title:@"Load Category Menu" controller:self] ;
  1066. }
  1067. });
  1068. });
  1069. else
  1070. [categorymenuVC SetMenu:appDelegate.categoryMenu];
  1071. }
  1072. -(NSString*) categoryString:(NSString*) categoryid node:(NSDictionary*) json level:(int) level;
  1073. {
  1074. if(categoryid.length==0)
  1075. return @">All Products>";
  1076. //NSString* idString = [NSString stringWithFormat:@"%d",categoryid];
  1077. NSString* categoryString =@">";
  1078. int count = [[json valueForKey:@"count"] intValue];
  1079. for(int i=0;i<count;i++)
  1080. {
  1081. NSDictionary * category_json = [json objectForKey:[NSString stringWithFormat:@"category_%d",i]];
  1082. NSString* cid = [category_json valueForKey:@"id"] ;
  1083. // NSString* ttt =[categoryid substringToIndex:2+level*2];
  1084. // NSString * qqq =[cid substringToIndex:2+level*2];
  1085. // NSString *ds1=[categoryid substringToIndex:3+level*3];
  1086. // NSString*ds2 = [cid substringToIndex:3+level*3];
  1087. if(cid.length<3+level*3)
  1088. continue;
  1089. if(categoryid.length<3+level*3)
  1090. continue;
  1091. if([[categoryid substringToIndex:3+level*3] isEqualToString: [cid substringToIndex:3+level*3]])
  1092. {
  1093. //categoryString = [categoryString stringByAppendingString:@">"];
  1094. categoryString =[categoryString stringByAppendingString: [category_json valueForKey:@"title" ] ];
  1095. categoryString = [categoryString stringByAppendingString:[ self categoryString:categoryid node:category_json level:level+1]];
  1096. break;
  1097. }
  1098. }
  1099. return categoryString;
  1100. }
  1101. - (void)didReceiveMemoryWarning
  1102. {
  1103. [super didReceiveMemoryWarning];
  1104. // Dispose of any resources that can be recreated.
  1105. }
  1106. - (IBAction)openMenu:(UIButton *)sender {
  1107. [self showMenu];
  1108. }
  1109. - (UIImage*)screen_shot
  1110. {
  1111. // CGRect r = self.view.frame;
  1112. // CGRect r1 = self.view.bounds;
  1113. // double width,height;
  1114. //
  1115. // UIInterfaceOrientation orientation =[UIApplication sharedApplication].statusBarOrientation;
  1116. // ;
  1117. // if(orientation == UIDeviceOrientationLandscapeLeft ||orientation == UIDeviceOrientationLandscapeRight)
  1118. // {
  1119. // width = self.view.frame.size.width>self.view.frame.size.height? self.view.frame.size.width:self.view.frame.size.height;
  1120. // height =self.view.frame.size.width<self.view.frame.size.height? self.view.frame.size.width:self.view.frame.size.height;
  1121. // }
  1122. // else
  1123. // {
  1124. // width = self.view.frame.size.width<self.view.frame.size.height? self.view.frame.size.width:self.view.frame.size.height;
  1125. // height =self.view.frame.size.width>self.view.frame.size.height? self.view.frame.size.width:self.view.frame.size.height;
  1126. // }
  1127. UIGraphicsBeginImageContext(CGSizeMake(self.view.bounds.size.width, self.view.bounds.size.height));
  1128. [self.view.layer renderInContext:UIGraphicsGetCurrentContext()];
  1129. UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();
  1130. UIGraphicsEndImageContext();
  1131. return viewImage;
  1132. }
  1133. - (IBAction)onhideMenuClick:(id)sender {
  1134. [self hideMenu];
  1135. self.backgroundButton.hidden=true;
  1136. self.openMenuButton.hidden = false;
  1137. self.sideMenu.hidden = true;
  1138. }
  1139. - (void)hideMenu
  1140. {
  1141. CGRect frame ;
  1142. frame.origin.x = -300;
  1143. frame.origin.y = 0;
  1144. frame.size.height = self.view.bounds.size.height;
  1145. frame.size.width = 364;
  1146. self.sideMenu.frame=frame;
  1147. self.sideMenu.hidden = true;
  1148. self.blurView.alpha = 0;
  1149. [self.menuButton setImage:[UIImage imageNamed:@"menu_open"] forState:UIControlStateNormal];
  1150. self.menuShown = false;
  1151. self.backgroundButton.hidden=true;
  1152. self.openMenuButton.hidden = false;
  1153. }
  1154. - (void)showMenu
  1155. {
  1156. [self.sideMenuTable reloadData];
  1157. UIImage* imgsource = [self screen_shot];
  1158. self.blurView.alpha = 0;
  1159. UIImage* imgBlur =[self applyBlurWithRadius:5 sourceImage:imgsource tintColor:[UIColor colorWithWhite:0.2 alpha:0.73] saturationDeltaFactor:1.8 maskImage:nil];
  1160. self.blurView.image = imgBlur;
  1161. // self.blurView.hidden = imgBlur;
  1162. // [self.sideMenu becomeFirstResponder];
  1163. self.sideMenu.hidden = false;
  1164. self.backgroundButton.hidden=false;
  1165. CGRect frame ;
  1166. frame.origin.x = 0;
  1167. frame.origin.y = 0;
  1168. frame.size.height = self.view.bounds.size.height;
  1169. frame.size.width = 364;
  1170. // [UIView animateWithDuration:1.0 animations:^{ self.sideMenu.frame=frame;
  1171. // self.blurView.alpha = 1;
  1172. // [self.menuButton setImage:[UIImage imageNamed:@"menu"] forState:UIControlStateNormal];
  1173. //
  1174. // }];
  1175. [UIView animateWithDuration:0.5 animations:^{ self.sideMenu.frame=frame;
  1176. self.blurView.alpha = 1;
  1177. }
  1178. completion:^(BOOL finished) {
  1179. [self.menuButton setImage:[UIImage imageNamed:@"menu"] forState:UIControlStateNormal];
  1180. }];
  1181. // UIImage* img= [UIImage imageNamed:@"menu"];
  1182. // self.menuButton.imageView.image = nil;
  1183. self.menuShown = true;
  1184. }
  1185. -(void)initMenuItems
  1186. {
  1187. UIApplication * app = [UIApplication sharedApplication];
  1188. AppDelegate *appDelegate = (AppDelegate *)[app delegate];
  1189. self.sideMenuItems = [[NSMutableArray alloc] init];
  1190. NSMutableDictionary* map = [[NSMutableDictionary alloc] init];
  1191. if(appDelegate.user!=nil)
  1192. {
  1193. [map setValue:@"Wish List" forKey:@"title"];
  1194. [map setValue:@"rect_market_news" forKey:@"img"];
  1195. [self.sideMenuItems addObject:map.copy];
  1196. }
  1197. #if !defined(BUILD_HOMER) && !defined(BUILD_GATIT)
  1198. //#ifndef BUILD_HOMER //homer 要求去掉cam scan 2017/12/20
  1199. // if(appDelegate.user_type==USER_ROLE_EMPLOYEE)
  1200. {
  1201. [map setValue:@"Cam Scan" forKey:@"title"];
  1202. [map setValue:@"rect_contact_list" forKey:@"img"];
  1203. [self.sideMenuItems addObject:map.copy];
  1204. }
  1205. #endif
  1206. if(appDelegate.user_type==USER_ROLE_EMPLOYEE || (appDelegate.user_type == USER_ROLE_CUSTOMER && appDelegate.customer_type == CustomerTypeCustomer))
  1207. {
  1208. // [map setValue:@"Contact" forKey:@"title"];
  1209. // [map setValue:@"rect_contact_list" forKey:@"img"];
  1210. // [self.sideMenuItems addObject:map.copy];
  1211. //#ifdef BUILD_UWAVER
  1212. // [map setValue:@"Hang Tag" forKey:@"title"];
  1213. //#else
  1214. [map setValue:@"Portfolio" forKey:@"title"];
  1215. //#endif
  1216. [map setValue:@"rect_market_news" forKey:@"img"];
  1217. [self.sideMenuItems addObject:map.copy];
  1218. //#ifdef BUILD_UWAVER
  1219. // [map setValue:@"View Hang Tags" forKey:@"title"];
  1220. //#else
  1221. [map setValue:@"View Portfolios" forKey:@"title"];
  1222. //#endif
  1223. [map setValue:@"rect_pdf_list" forKey:@"img"];
  1224. [self.sideMenuItems addObject:map.copy];
  1225. }
  1226. if(appDelegate.can_show_price)
  1227. {
  1228. if(appDelegate.price_hidden)
  1229. [map setValue:@"Show Price" forKey:@"title"];
  1230. else
  1231. [map setValue:@"Hide Price" forKey:@"title"];
  1232. [map setValue:@"rect_announcements" forKey:@"img"];
  1233. [self.sideMenuItems addObject:map.copy];
  1234. }
  1235. // [map setValue:@"Contact" forKey:@"title"];
  1236. // [map setValue:@"rect_market_news" forKey:@"img"];
  1237. // [self.sideMenuItems addObject:map.copy];
  1238. // [map setValue:@"Cache" forKey:@"title"];
  1239. // [map setValue:@"rect_announcements" forKey:@"img"];
  1240. //[self.sideMenuItems addObject:map.copy];
  1241. // NSUserDefaults *defaults =[NSUserDefaults standardUserDefaults];
  1242. // [map setValue:@"Message" forKey:@"title"];
  1243. // [map setValue:@"rect_search_history" forKey:@"img"];
  1244. // [self.sideMenuItems addObject:map.copy];
  1245. //
  1246. #if defined(BUILD_NPD) || defined(BUILD_USAI)
  1247. [map setValue:@"Scanner Setting" forKey:@"title"];
  1248. [map setValue:@"rect_change_password" forKey:@"img"];
  1249. [self.sideMenuItems addObject:map.copy];
  1250. #ifdef BUILD_NPD
  1251. if(appDelegate.user_type==USER_ROLE_EMPLOYEE)
  1252. {
  1253. [map setValue:@"Offline Setting" forKey:@"title"];
  1254. [map setValue:@"rect_market_news" forKey:@"img"];
  1255. [self.sideMenuItems addObject:map.copy];
  1256. }
  1257. #endif
  1258. if (appDelegate.user && appDelegate.user_type == USER_ROLE_CUSTOMER && appDelegate.customer_type == CustomerTypeStore ) {
  1259. [map setValue:@"Price Setting" forKey:@"title"];
  1260. // [map setValue:@"rect_market_news" forKey:@"img"];
  1261. [self.sideMenuItems addObject:map.copy];
  1262. }
  1263. if (appDelegate.user && appDelegate.user_type == USER_ROLE_CUSTOMER && appDelegate.customer_type == CustomerTypeStore ) {
  1264. if ([Singleton sharedInstance].global_lock) {
  1265. [map setValue:@"Unlock" forKey:@"title"];
  1266. } else {
  1267. [map setValue:@"Lock" forKey:@"title"];
  1268. }
  1269. [self.sideMenuItems addObject:map.copy];
  1270. }
  1271. # endif
  1272. #if defined(BUILD_HOMER) || defined(BUILD_GATIT)
  1273. /*
  1274. if(appDelegate.user_type==USER_ROLE_EMPLOYEE)
  1275. {
  1276. [map setValue:@"Offline Setting" forKey:@"title"];
  1277. [map setValue:@"rect_market_news" forKey:@"img"];
  1278. [self.sideMenuItems addObject:map.copy];
  1279. }
  1280. */
  1281. // if (appDelegate.user && appDelegate.user_type == USER_ROLE_CUSTOMER) {
  1282. // [map setValue:@"Price Setting" forKey:@"title"];
  1283. // // [map setValue:@"rect_market_news" forKey:@"img"];
  1284. // [self.sideMenuItems addObject:map.copy];
  1285. // }
  1286. if (appDelegate.user && appDelegate.user_type == USER_ROLE_CUSTOMER && appDelegate.customer_type == CustomerTypeStore ) {
  1287. if ([Singleton sharedInstance].global_lock) {
  1288. [map setValue:@"Unlock" forKey:@"title"];
  1289. } else {
  1290. [map setValue:@"Lock" forKey:@"title"];
  1291. }
  1292. [self.sideMenuItems addObject:map.copy];
  1293. }
  1294. # endif
  1295. #ifdef DEBUG
  1296. // if([[appDelegate.user lowercaseString] isEqualToString:@"larryl"]||[[appDelegate.user lowercaseString] isEqualToString:@"arpithat"])
  1297. {
  1298. // [map setValue:@"Contact" forKey:@"title"];
  1299. // [map setValue:@"rect_contact_list" forKey:@"img"];
  1300. // [self.sideMenuItems addObject:map.copy];
  1301. [map setValue:@"Function Test" forKey:@"title"];
  1302. [map setValue:@"rect_market_news" forKey:@"img"];
  1303. [self.sideMenuItems addObject:map.copy];
  1304. }
  1305. #endif
  1306. [map setValue:@"Privacy Policy" forKey:@"title"];
  1307. [map setValue:@"rect_change_password" forKey:@"img"];
  1308. [self.sideMenuItems addObject:map.copy];
  1309. [map setValue:@"About us" forKey:@"title"];
  1310. [map setValue:@"rect_change_password" forKey:@"img"];
  1311. [self.sideMenuItems addObject:map.copy];
  1312. #ifdef BUILD_HMLG
  1313. [map setValue:@"Homelegance Website" forKey:@"title"];
  1314. [map setValue:@"rect_change_password" forKey:@"img"];
  1315. [self.sideMenuItems addObject:map.copy];
  1316. #endif
  1317. #ifdef BUILD_NPD
  1318. [map setValue:@"BLOG" forKey:@"title"];
  1319. [map setValue:@"rect_change_password" forKey:@"img"];
  1320. [self.sideMenuItems addObject:map.copy];
  1321. [map setValue:[NSString stringWithFormat:@"%@ Website",COMPANY_SHORT_NAME] forKey:@"title"];
  1322. [map setValue:@"rect_change_password" forKey:@"img"];
  1323. [self.sideMenuItems addObject:map.copy];
  1324. [map setValue:[NSString stringWithFormat:@"%@ Policy",COMPANY_SHORT_NAME] forKey:@"title"];
  1325. [map setValue:@"rect_change_password" forKey:@"img"];
  1326. [self.sideMenuItems addObject:map.copy];
  1327. [map setValue:@"Simplified Buying Program" forKey:@"title"];
  1328. [map setValue:@"rect_change_password" forKey:@"img"];
  1329. [self.sideMenuItems addObject:map.copy];
  1330. #endif
  1331. #ifdef BUILD_USAI
  1332. // [map setValue:@"BLOG" forKey:@"title"];
  1333. // [map setValue:@"rect_change_password" forKey:@"img"];
  1334. // [self.sideMenuItems addObject:map.copy];
  1335. [map setValue:@"USAI Website" forKey:@"title"];
  1336. [map setValue:@"rect_change_password" forKey:@"img"];
  1337. [self.sideMenuItems addObject:map.copy];
  1338. #endif
  1339. #ifdef BUILD_HOMER
  1340. /*
  1341. [map setValue:@"BLOG" forKey:@"title"];
  1342. [map setValue:@"rect_change_password" forKey:@"img"];
  1343. [self.sideMenuItems addObject:map.copy];
  1344. */
  1345. [map setValue:@"HOMER Website" forKey:@"title"];
  1346. [map setValue:@"rect_change_password" forKey:@"img"];
  1347. [self.sideMenuItems addObject:map.copy];
  1348. #endif
  1349. #ifdef BUILD_GATIT
  1350. [map setValue:@"TITAN Website" forKey:@"title"];
  1351. [map setValue:@"rect_change_password" forKey:@"img"];
  1352. [self.sideMenuItems addObject:map.copy];
  1353. # endif
  1354. [self.sideMenuTable reloadData];
  1355. //
  1356. }
  1357. - (UIImage *)applyBlurWithRadius:(CGFloat)blurRadius sourceImage:(UIImage*)sourceImage tintColor:(UIColor *)tintColor saturationDeltaFactor:(CGFloat)saturationDeltaFactor maskImage:(UIImage *)maskImage
  1358. {
  1359. // Check pre-conditions.
  1360. if (sourceImage.size.width < 1 || sourceImage.size.height < 1) {
  1361. DebugLog (@"*** error: invalid size: (%.2f x %.2f). Both dimensions must be >= 1: %@", sourceImage.size.width, sourceImage.size.height, self);
  1362. return nil;
  1363. }
  1364. if (!sourceImage.CGImage) {
  1365. DebugLog (@"*** error: image must be backed by a CGImage: %@", self);
  1366. return nil;
  1367. }
  1368. if (maskImage && !maskImage.CGImage) {
  1369. DebugLog (@"*** error: maskImage must be backed by a CGImage: %@", maskImage);
  1370. return nil;
  1371. }
  1372. CGRect imageRect = { CGPointZero, sourceImage.size };
  1373. UIImage *effectImage = sourceImage;
  1374. BOOL hasBlur = blurRadius > __FLT_EPSILON__;
  1375. BOOL hasSaturationChange = fabs(saturationDeltaFactor - 1.) > __FLT_EPSILON__;
  1376. if (hasBlur || hasSaturationChange) {
  1377. UIGraphicsBeginImageContextWithOptions(sourceImage.size, NO, [[UIScreen mainScreen] scale]);
  1378. CGContextRef effectInContext = UIGraphicsGetCurrentContext();
  1379. CGContextScaleCTM(effectInContext, 1.0, -1.0);
  1380. CGContextTranslateCTM(effectInContext, 0, -sourceImage.size.height);
  1381. CGContextDrawImage(effectInContext, imageRect, sourceImage.CGImage);
  1382. vImage_Buffer effectInBuffer;
  1383. effectInBuffer.data = CGBitmapContextGetData(effectInContext);
  1384. effectInBuffer.width = CGBitmapContextGetWidth(effectInContext);
  1385. effectInBuffer.height = CGBitmapContextGetHeight(effectInContext);
  1386. effectInBuffer.rowBytes = CGBitmapContextGetBytesPerRow(effectInContext);
  1387. UIGraphicsBeginImageContextWithOptions(sourceImage.size, NO, [[UIScreen mainScreen] scale]);
  1388. CGContextRef effectOutContext = UIGraphicsGetCurrentContext();
  1389. vImage_Buffer effectOutBuffer;
  1390. effectOutBuffer.data = CGBitmapContextGetData(effectOutContext);
  1391. effectOutBuffer.width = CGBitmapContextGetWidth(effectOutContext);
  1392. effectOutBuffer.height = CGBitmapContextGetHeight(effectOutContext);
  1393. effectOutBuffer.rowBytes = CGBitmapContextGetBytesPerRow(effectOutContext);
  1394. if (hasBlur) {
  1395. // A description of how to compute the box kernel width from the Gaussian
  1396. // radius (aka standard deviation) appears in the SVG spec:
  1397. // http://www.w3.org/TR/SVG/filters.html#feGaussianBlurElement
  1398. //
  1399. // For larger values of 's' (s >= 2.0), an approximation can be used: Three
  1400. // successive box-blurs build a piece-wise quadratic convolution kernel, which
  1401. // approximates the Gaussian kernel to within roughly 3%.
  1402. //
  1403. // let d = floor(s * 3*sqrt(2*pi)/4 + 0.5)
  1404. //
  1405. // ... if d is odd, use three box-blurs of size 'd', centered on the output pixel.
  1406. //
  1407. CGFloat inputRadius = blurRadius * [[UIScreen mainScreen] scale];
  1408. NSUInteger radius = floor(inputRadius * 3. * sqrt(2 * M_PI) / 4 + 0.5);
  1409. if (radius % 2 != 1) {
  1410. radius += 1; // force radius to be odd so that the three box-blur methodology works.
  1411. }
  1412. vImageBoxConvolve_ARGB8888(&effectInBuffer, &effectOutBuffer, NULL, 0, 0, (unsigned int)radius, (unsigned int)radius, 0, kvImageEdgeExtend);
  1413. vImageBoxConvolve_ARGB8888(&effectOutBuffer, &effectInBuffer, NULL, 0, 0, (unsigned int)radius, (unsigned int)radius, 0, kvImageEdgeExtend);
  1414. vImageBoxConvolve_ARGB8888(&effectInBuffer, &effectOutBuffer, NULL, 0, 0, (unsigned int)radius, (unsigned int)radius, 0, kvImageEdgeExtend);
  1415. }
  1416. BOOL effectImageBuffersAreSwapped = NO;
  1417. if (hasSaturationChange) {
  1418. CGFloat s = saturationDeltaFactor;
  1419. CGFloat floatingPointSaturationMatrix[] = {
  1420. 0.0722 + 0.9278 * s, 0.0722 - 0.0722 * s, 0.0722 - 0.0722 * s, 0,
  1421. 0.7152 - 0.7152 * s, 0.7152 + 0.2848 * s, 0.7152 - 0.7152 * s, 0,
  1422. 0.2126 - 0.2126 * s, 0.2126 - 0.2126 * s, 0.2126 + 0.7873 * s, 0,
  1423. 0, 0, 0, 1,
  1424. };
  1425. const int32_t divisor = 256;
  1426. NSUInteger matrixSize = sizeof(floatingPointSaturationMatrix)/sizeof(floatingPointSaturationMatrix[0]);
  1427. int16_t saturationMatrix[matrixSize];
  1428. for (NSUInteger i = 0; i < matrixSize; ++i) {
  1429. saturationMatrix[i] = (int16_t)roundf(floatingPointSaturationMatrix[i] * divisor);
  1430. }
  1431. if (hasBlur) {
  1432. vImageMatrixMultiply_ARGB8888(&effectOutBuffer, &effectInBuffer, saturationMatrix, divisor, NULL, NULL, kvImageNoFlags);
  1433. effectImageBuffersAreSwapped = YES;
  1434. }
  1435. else {
  1436. vImageMatrixMultiply_ARGB8888(&effectInBuffer, &effectOutBuffer, saturationMatrix, divisor, NULL, NULL, kvImageNoFlags);
  1437. }
  1438. }
  1439. if (!effectImageBuffersAreSwapped)
  1440. effectImage = UIGraphicsGetImageFromCurrentImageContext();
  1441. UIGraphicsEndImageContext();
  1442. if (effectImageBuffersAreSwapped)
  1443. effectImage = UIGraphicsGetImageFromCurrentImageContext();
  1444. UIGraphicsEndImageContext();
  1445. }
  1446. // Set up output context.
  1447. UIGraphicsBeginImageContextWithOptions(sourceImage.size, NO, [[UIScreen mainScreen] scale]);
  1448. CGContextRef outputContext = UIGraphicsGetCurrentContext();
  1449. CGContextScaleCTM(outputContext, 1.0, -1.0);
  1450. CGContextTranslateCTM(outputContext, 0, -sourceImage.size.height);
  1451. // Draw base image.
  1452. CGContextDrawImage(outputContext, imageRect, sourceImage.CGImage);
  1453. // Draw effect image.
  1454. if (hasBlur) {
  1455. CGContextSaveGState(outputContext);
  1456. if (maskImage) {
  1457. CGContextClipToMask(outputContext, imageRect, maskImage.CGImage);
  1458. }
  1459. CGContextDrawImage(outputContext, imageRect, effectImage.CGImage);
  1460. CGContextRestoreGState(outputContext);
  1461. }
  1462. // Add in color tint.
  1463. if (tintColor) {
  1464. CGContextSaveGState(outputContext);
  1465. CGContextSetFillColorWithColor(outputContext, tintColor.CGColor);
  1466. CGContextFillRect(outputContext, imageRect);
  1467. CGContextRestoreGState(outputContext);
  1468. }
  1469. // Output image is ready.
  1470. UIImage *outputImage = UIGraphicsGetImageFromCurrentImageContext();
  1471. UIGraphicsEndImageContext();
  1472. return outputImage;
  1473. }
  1474. //- (IBAction)openMenu:(UIButton *)sender {
  1475. //}
  1476. #pragma mark - Table view data source
  1477. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
  1478. {
  1479. return 1;
  1480. }
  1481. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
  1482. {
  1483. return self.sideMenuItems.count;
  1484. }
  1485. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
  1486. {
  1487. UIApplication * app = [UIApplication sharedApplication];
  1488. AppDelegate *appDelegate = (AppDelegate *)[app delegate];
  1489. NSString *CellIdentifier = @"SideMenuItem";
  1490. UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
  1491. NSString* title = [self.sideMenuItems[indexPath.row] valueForKey:@"title"];
  1492. cell.backgroundColor = [UIColor clearColor];
  1493. // [cell.backgroundColor:[UIColor clearColor]];
  1494. // UIImageView* iv= [[UIImageView alloc] initWithImage:];
  1495. cell.textLabel.text = title;
  1496. cell.detailTextLabel.textColor =[UIColor redColor];
  1497. if([title isEqualToString:@"Wish List"]&&appDelegate.wish_count>0)
  1498. cell.detailTextLabel.text = [NSString stringWithFormat:@"%ld",appDelegate.wish_count];
  1499. else if(([title isEqualToString:@"Portfolio"] || [title isEqualToString:@"Hang Tag"])&&appDelegate.port_count>0)
  1500. cell.detailTextLabel.text = [NSString stringWithFormat:@"%ld",appDelegate.port_count];
  1501. else
  1502. {
  1503. cell.detailTextLabel.text =nil;
  1504. }
  1505. // cell.imageView.image = [UIImage imageNamed:[self.toolsinfo[indexPath.row] valueForKey:@"img"]];
  1506. return cell;
  1507. }
  1508. #pragma mark - Table view delegate
  1509. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
  1510. {
  1511. NSString* title = [self.sideMenuItems[indexPath.row] valueForKey:@"title"];
  1512. if([title isEqualToString:@"Cache"])
  1513. {
  1514. CacheViewController * settingvc=[[UIStoryboard storyboardWithName:@"Main" bundle:nil] instantiateViewControllerWithIdentifier:@"CacheViewController"];
  1515. PopupNavigationController * navi=[[PopupNavigationController alloc] initWithRootViewController:settingvc];
  1516. navi.modalPresentationStyle = UIModalPresentationFormSheet;//有三种状态,自己看看是哪种
  1517. [self presentViewController:navi animated:YES completion:^{
  1518. //DebugLog(@"login.........");
  1519. // <#code#>
  1520. }];
  1521. }
  1522. else if([title isEqualToString:@"Scanner Setting"])
  1523. {
  1524. UIApplication * app = [UIApplication sharedApplication];
  1525. //
  1526. #ifndef RA_NOTIFICATION
  1527. AppDelegate *appDelegate = (AppDelegate *)[app delegate];
  1528. UIViewController* active_vc = appDelegate.active_controller;
  1529. ScannerSettingViewController * gunVC =[[UIStoryboard storyboardWithName:@"Main" bundle:nil] instantiateViewControllerWithIdentifier:@"ScannerSettingViewController"];
  1530. appDelegate.active_controller = gunVC;
  1531. gunVC.onDismissVC = ^(){
  1532. appDelegate.active_controller = active_vc;
  1533. };
  1534. #else
  1535. ScannerSettingViewController * gunVC =[[UIStoryboard storyboardWithName:@"Main" bundle:nil] instantiateViewControllerWithIdentifier:@"ScannerSettingViewController"];
  1536. #endif
  1537. UINavigationController* navi = [[UINavigationController alloc] initWithRootViewController:gunVC] ;
  1538. // [self hackModalSheetSize:CGSizeMake(450, 200) ofVC:navi];
  1539. navi.modalPresentationStyle = UIModalTransitionStyleCrossDissolve;//有三种状态,自己看看是哪种
  1540. [self presentViewController:navi animated:YES completion:^{
  1541. // navi.view.superview.bounds = CGRectMake(0, 0, 480, 320);
  1542. DebugLog(@"about present.........");
  1543. // self.btop = false;
  1544. // <#code#>
  1545. }];
  1546. }
  1547. else if([title isEqualToString:@"Offline Setting"])
  1548. {
  1549. UIApplication * app = [UIApplication sharedApplication];
  1550. // AppDelegate *appDelegate = (AppDelegate *)[app delegate];
  1551. //UIViewController* active_vc = appDelegate.active_controller;
  1552. OfflineSettingViewController * offlineVC =[ [UIStoryboard storyboardWithName:@"OLM" bundle:nil] instantiateViewControllerWithIdentifier:@"OfflineSettingViewController"];
  1553. // loginvc.delegate = self;
  1554. // loginvc.modalPresentationStyle = UIModalPresentationFormSheet;//有三种状态,自己看看是哪种
  1555. // appDelegate.active_controller = gunVC;
  1556. // gunVC.onDismissVC = ^(){
  1557. // appDelegate.active_controller = active_vc;
  1558. // };
  1559. UINavigationController* navi = [[UINavigationController alloc] initWithRootViewController:offlineVC] ;
  1560. // [self hackModalSheetSize:CGSizeMake(450, 200) ofVC:navi];
  1561. navi.modalPresentationStyle = UIModalTransitionStyleCrossDissolve;//有三种状态,自己看看是哪种
  1562. [self presentViewController:navi animated:YES completion:^{
  1563. // navi.view.superview.bounds = CGRectMake(0, 0, 480, 320);
  1564. DebugLog(@"about present.........");
  1565. // self.btop = false;
  1566. // <#code#>
  1567. }];
  1568. // [iSalesDB testdata];
  1569. }
  1570. else if([title isEqualToString:@"Function Test"])
  1571. {
  1572. // NSString* url = @"https://shopla.homelegance.com/";
  1573. //
  1574. //
  1575. // NSString* title = @"NPD";
  1576. // UIApplication * app = [UIApplication sharedApplication];
  1577. // AppDelegate *appDelegate = (AppDelegate *)[app delegate];
  1578. // MainViewController* main_vc=(MainViewController*)appDelegate.main_vc;
  1579. //
  1580. //
  1581. FunctionTestViewController *ViewController = [[UIStoryboard storyboardWithName:@"Main" bundle:nil] instantiateViewControllerWithIdentifier:@"FunctionTestViewController"];
  1582. // ViewController.url = url;
  1583. // ViewController.title = title;
  1584. [self.navigationController pushViewController:ViewController animated:YES];
  1585. }
  1586. else if ([title isEqualToString:@"BLOG"]) {
  1587. NSString* url = URL_BLOG;
  1588. #ifdef BUILD_HOMER
  1589. NSString* title = @"HOMER BLOG";
  1590. #endif
  1591. #ifdef BUILD_GATIT
  1592. NSString* title = @"TITAN BLOG";
  1593. #endif
  1594. #ifdef BUILD_NPD
  1595. NSString* title = @"NPD BLOG";
  1596. #endif
  1597. #ifdef BUILD_USAI
  1598. NSString* title = @"USAI BLOG";
  1599. #endif
  1600. title = [NSString stringWithFormat:@"%@ BLOG",COMPANY_SHORT_NAME];
  1601. WebViewController *ViewController = [[UIStoryboard storyboardWithName:@"wkweb" bundle:nil] instantiateViewControllerWithIdentifier:@"WebViewController"];
  1602. ViewController.url = url;
  1603. ViewController.title = title;
  1604. [self.navigationController pushViewController:ViewController animated:YES];
  1605. }
  1606. else if([title isEqualToString:@"NPD Website"])
  1607. {
  1608. NSString* url = @"https://www.newpacificdirect.com";//@"https://shopla.homelegance.com/general.htm?websiteId=1";//
  1609. NSString* title = @"NPD";
  1610. // UIApplication * app = [UIApplication sharedApplication];
  1611. // AppDelegate *appDelegate = (AppDelegate *)[app delegate];
  1612. // MainViewController* main_vc=(MainViewController*)appDelegate.main_vc;
  1613. //
  1614. //
  1615. WebViewController *ViewController = [[UIStoryboard storyboardWithName:@"wkweb" bundle:nil] instantiateViewControllerWithIdentifier:@"WebViewController"];
  1616. ViewController.url = url;
  1617. ViewController.title = title;
  1618. [self.navigationController pushViewController:ViewController animated:YES];
  1619. }
  1620. else if([title isEqualToString:@"USAI Website"])
  1621. {
  1622. NSString* url = @"http://www.united-us.net/";//@"https://shopla.homelegance.com/general.htm?websiteId=1";//
  1623. NSString* title = @"USAI";
  1624. // UIApplication * app = [UIApplication sharedApplication];
  1625. // AppDelegate *appDelegate = (AppDelegate *)[app delegate];
  1626. // MainViewController* main_vc=(MainViewController*)appDelegate.main_vc;
  1627. //
  1628. //
  1629. WebViewController *ViewController = [[UIStoryboard storyboardWithName:@"wkweb" bundle:nil] instantiateViewControllerWithIdentifier:@"WebViewController"];
  1630. ViewController.url = url;
  1631. ViewController.title = title;
  1632. [self.navigationController pushViewController:ViewController animated:YES];
  1633. }
  1634. else if([title isEqualToString:@"Homelegance Website"])
  1635. {
  1636. NSString* url = @"http://207.140.24.83";//@"https://shopla.homelegance.com/general.htm?websiteId=1";//
  1637. NSString* title = @"Homelegance";
  1638. // UIApplication * app = [UIApplication sharedApplication];
  1639. // AppDelegate *appDelegate = (AppDelegate *)[app delegate];
  1640. // MainViewController* main_vc=(MainViewController*)appDelegate.main_vc;
  1641. //
  1642. //
  1643. WebViewController *ViewController = [[UIStoryboard storyboardWithName:@"wkweb" bundle:nil] instantiateViewControllerWithIdentifier:@"WebViewController"];
  1644. ViewController.url = url;
  1645. ViewController.title = title;
  1646. [self.navigationController pushViewController:ViewController animated:YES];
  1647. }
  1648. else if([title isEqualToString:@"HOMER Website"])
  1649. {
  1650. NSString* url = COMPANY_WEB;
  1651. NSString* title = @"HOMER";
  1652. WebViewController *ViewController = [[UIStoryboard storyboardWithName:@"wkweb" bundle:nil] instantiateViewControllerWithIdentifier:@"WebViewController"];
  1653. ViewController.url = url;
  1654. ViewController.title = title;
  1655. [self.navigationController pushViewController:ViewController animated:YES];
  1656. }
  1657. else if([title isEqualToString:@"TITAN Website"])
  1658. {
  1659. NSString* url = COMPANY_WEB;
  1660. NSString* title = @"TITAN";
  1661. WebViewController *ViewController = [[UIStoryboard storyboardWithName:@"wkweb" bundle:nil] instantiateViewControllerWithIdentifier:@"WebViewController"];
  1662. ViewController.url = url;
  1663. ViewController.title = title;
  1664. [self.navigationController pushViewController:ViewController animated:YES];
  1665. }
  1666. else if([title isEqualToString:@"NPD Policy"])
  1667. {
  1668. NSString* url = URL_NPD_POLICY;//@"https://shopla.homelegance.com/general.htm?websiteId=1";//
  1669. NSString* title = @"NPD Policy";
  1670. // UIApplication * app = [UIApplication sharedApplication];
  1671. // AppDelegate *appDelegate = (AppDelegate *)[app delegate];
  1672. // MainViewController* main_vc=(MainViewController*)appDelegate.main_vc;
  1673. //
  1674. //
  1675. WebViewController *ViewController = [[UIStoryboard storyboardWithName:@"wkweb" bundle:nil] instantiateViewControllerWithIdentifier:@"WebViewController"];
  1676. ViewController.url = url;
  1677. ViewController.title = title;
  1678. [self.navigationController pushViewController:ViewController animated:YES];
  1679. }
  1680. else if([title isEqualToString:@"USAI Policy"])
  1681. {
  1682. NSString* url = URL_NPD_POLICY;
  1683. NSString* title = @"USAI Policy";
  1684. WebViewController *ViewController = [[UIStoryboard storyboardWithName:@"wkweb" bundle:nil] instantiateViewControllerWithIdentifier:@"WebViewController"];
  1685. ViewController.url = url;
  1686. ViewController.title = title;
  1687. [self.navigationController pushViewController:ViewController animated:YES];
  1688. }
  1689. else if([title isEqualToString:@"HOMER Policy"])
  1690. {
  1691. NSString* url = URL_NPD_POLICY;
  1692. NSString* title = @"HOMER Policy";
  1693. WebViewController *ViewController = [[UIStoryboard storyboardWithName:@"wkweb" bundle:nil] instantiateViewControllerWithIdentifier:@"WebViewController"];
  1694. ViewController.url = url;
  1695. ViewController.title = title;
  1696. [self.navigationController pushViewController:ViewController animated:YES];
  1697. }
  1698. else if([title isEqualToString:@"Simplified Buying Program"])
  1699. {
  1700. SimplifiedBuyingProgramViewController *ViewController = [[UIStoryboard storyboardWithName:@"NPD_Mobile" bundle:nil] instantiateViewControllerWithIdentifier:@"SimplifiedBuyingProgramViewController"];
  1701. UINavigationController* navi = [[UINavigationController alloc] initWithRootViewController:ViewController] ;
  1702. // [self hackModalSheetSize:CGSizeMake(450, 200) ofVC:navi];
  1703. navi.modalPresentationStyle = UIModalTransitionStyleCrossDissolve;//有三种状态,自己看看是哪种
  1704. [self presentViewController:navi animated:YES completion:^{
  1705. // navi.view.superview.bounds = CGRectMake(0, 0, 480, 320);
  1706. DebugLog(@"about present.........");
  1707. // self.btop = false;
  1708. // <#code#>
  1709. }];
  1710. }
  1711. else if ([title isEqualToString:@"Privacy Policy"]) {
  1712. NSString* url = URL_PRIVACY;
  1713. NSString* title = @"Privacy Policy";
  1714. WebViewController *ViewController = [[UIStoryboard storyboardWithName:@"wkweb" bundle:nil] instantiateViewControllerWithIdentifier:@"WebViewController"];
  1715. ViewController.url = url;
  1716. ViewController.title = title;
  1717. [self.navigationController pushViewController:ViewController animated:YES];
  1718. }
  1719. else if([title isEqualToString:@"About us"])
  1720. {
  1721. AboutViewController * aboutVC =[[UIStoryboard storyboardWithName:@"Main" bundle:nil] instantiateViewControllerWithIdentifier:@"AboutViewController"];
  1722. // loginvc.delegate = self;
  1723. // loginvc.modalPresentationStyle = UIModalPresentationFormSheet;//有三种状态,自己看看是哪种
  1724. UINavigationController* navi = [[UINavigationController alloc] initWithRootViewController:aboutVC] ;
  1725. // [self hackModalSheetSize:CGSizeMake(450, 200) ofVC:navi];
  1726. navi.modalPresentationStyle = UIModalTransitionStyleCrossDissolve;//有三种状态,自己看看是哪种
  1727. [self presentViewController:navi animated:YES completion:^{
  1728. // navi.view.superview.bounds = CGRectMake(0, 0, 480, 320);
  1729. DebugLog(@"about present.........");
  1730. // self.btop = false;
  1731. // <#code#>
  1732. }];
  1733. }
  1734. else if([title isEqualToString:@"Wish List"])
  1735. {
  1736. [self hideMenu];
  1737. [self switchtowishlist];
  1738. }
  1739. else if([title isEqualToString:@"Show Price"])
  1740. {
  1741. UIApplication * app = [UIApplication sharedApplication];
  1742. AppDelegate *appDelegate = (AppDelegate *)[app delegate];
  1743. if (appDelegate.user_type == USER_ROLE_CUSTOMER && appDelegate.customer_type == CustomerTypeStore && [Singleton sharedInstance].global_lock) {
  1744. JKLockController *lockVC = [[JKLockController alloc] init];
  1745. [lockVC setPasswordKey:[NSString stringWithFormat:@"%@_password",appDelegate.user]];
  1746. __weak typeof(self) weakself = self;
  1747. lockVC.authoReturn = ^(BOOL failure) {
  1748. if (weakself) {
  1749. __strong typeof(weakself) strongself = weakself;
  1750. [appDelegate set_priceHidden:false];
  1751. [strongself initMenuItems];
  1752. [strongself hideMenu];
  1753. }
  1754. };
  1755. [self.navigationController pushViewController:lockVC animated:YES];
  1756. } else {
  1757. [appDelegate set_priceHidden:false];
  1758. [self initMenuItems];
  1759. [self hideMenu];
  1760. }
  1761. }
  1762. else if([title isEqualToString:@"Hide Price"])
  1763. {
  1764. UIApplication * app = [UIApplication sharedApplication];
  1765. AppDelegate *appDelegate = (AppDelegate *)[app delegate];
  1766. if (appDelegate.user_type == USER_ROLE_CUSTOMER && appDelegate.customer_type == CustomerTypeStore && [Singleton sharedInstance].global_lock) {
  1767. JKLockController *lockVC = [[JKLockController alloc] init];
  1768. [lockVC setPasswordKey:[NSString stringWithFormat:@"%@_password",appDelegate.user]];
  1769. __weak typeof(self) weakself = self;
  1770. lockVC.authoReturn = ^(BOOL failure) {
  1771. if (weakself) {
  1772. __strong typeof(weakself) strongself = weakself;
  1773. [appDelegate set_priceHidden:true];
  1774. [strongself initMenuItems];
  1775. [strongself hideMenu];
  1776. }
  1777. };
  1778. [self.navigationController pushViewController:lockVC animated:YES];
  1779. } else {
  1780. [appDelegate set_priceHidden:true];
  1781. [self initMenuItems];
  1782. [self hideMenu];
  1783. }
  1784. }
  1785. else if([title isEqualToString:@"Portfolio"] || [title isEqualToString:@"Hang Tag"])
  1786. {
  1787. [self hideMenu];
  1788. if([self.current_VC isKindOfClass:[PortfolioViewController class]])
  1789. return;
  1790. [self flipFromViewController:self.current_VC toViewController:self.portfolioViewController withDirection:UIViewAnimationOptionTransitionCrossDissolve];
  1791. }
  1792. else if([title isEqualToString:@"View Portfolios"] || [title isEqualToString:@"View Hang Tags"])
  1793. {
  1794. [self hideMenu];
  1795. if([self.current_VC isKindOfClass:[PortfolioListViewController class]])
  1796. return;
  1797. [self flipFromViewController:self.current_VC toViewController:self.pdfListViewController withDirection:UIViewAnimationOptionTransitionCrossDissolve];
  1798. }
  1799. else if([title isEqualToString:@"Contact"])
  1800. {
  1801. // UITableViewCell* cell =(UITableViewCell*) sender.superview.superview;
  1802. //
  1803. // NSIndexPath * indexPath = [self.detailTable indexPathForCell:cell];
  1804. //
  1805. // if(indexPath.section!=1)
  1806. // return ;
  1807. // // DebugLog(@"shouldchangeedit %d_%d",indexPath.section,indexPath.row);
  1808. // NSDictionary * item_json = [self.content_data objectForKey:[NSString stringWithFormat:@"item_%ld",(long)indexPath.row]];
  1809. //
  1810. // NSString* product_id = [item_json valueForKey:@"product_id"];
  1811. [self hideMenu];
  1812. [self switchtocontact];
  1813. }
  1814. else if([title isEqualToString:@"Cam Scan"])
  1815. {
  1816. // UITableViewCell* cell =(UITableViewCell*) sender.superview.superview;
  1817. //
  1818. // NSIndexPath * indexPath = [self.detailTable indexPathForCell:cell];
  1819. //
  1820. // if(indexPath.section!=1)
  1821. // return ;
  1822. // // DebugLog(@"shouldchangeedit %d_%d",indexPath.section,indexPath.row);
  1823. // NSDictionary * item_json = [self.content_data objectForKey:[NSString stringWithFormat:@"item_%ld",(long)indexPath.row]];
  1824. //
  1825. // NSString* product_id = [item_json valueForKey:@"product_id"];
  1826. [self hideMenu];
  1827. //
  1828. // [self switchtocontact];
  1829. ScannerViewController * scannerVC =[[UIStoryboard storyboardWithName:@"Main" bundle:nil] instantiateViewControllerWithIdentifier:@"ScannerViewController"];
  1830. [self.navigationController pushViewController:scannerVC animated:true];
  1831. } else if ([title isEqualToString:@"Price Setting"]) {
  1832. UIApplication * app = [UIApplication sharedApplication];
  1833. AppDelegate *appDelegate = (AppDelegate *)[app delegate];
  1834. if ([Singleton sharedInstance].global_lock) {
  1835. JKLockController *lockVC = [[JKLockController alloc] init];
  1836. [lockVC setPasswordKey:[NSString stringWithFormat:@"%@_password",appDelegate.user]];
  1837. __weak typeof(self) weakself = self;
  1838. lockVC.authoReturn = ^(BOOL failure) {
  1839. if (weakself) {
  1840. __strong typeof(weakself) strongself = weakself;
  1841. PriceSettingViewController *priceSettingVC =[ [UIStoryboard storyboardWithName:@"CUL" bundle:nil] instantiateViewControllerWithIdentifier:@"PriceSettingViewController"];
  1842. UINavigationController* navi = [[UINavigationController alloc] initWithRootViewController:priceSettingVC] ;
  1843. navi.navigationBar.translucent = NO;
  1844. navi.modalPresentationStyle = UIModalTransitionStyleCrossDissolve;//有三种状态,自己看看是哪种
  1845. [strongself presentViewController:navi animated:YES completion:^{
  1846. }];
  1847. }
  1848. };
  1849. [self.navigationController pushViewController:lockVC animated:YES];
  1850. } else {
  1851. PriceSettingViewController *priceSettingVC =[ [UIStoryboard storyboardWithName:@"CUL" bundle:nil] instantiateViewControllerWithIdentifier:@"PriceSettingViewController"];
  1852. UINavigationController* navi = [[UINavigationController alloc] initWithRootViewController:priceSettingVC] ;
  1853. navi.navigationBar.translucent = NO;
  1854. navi.modalPresentationStyle = UIModalTransitionStyleCrossDissolve;//有三种状态,自己看看是哪种
  1855. [self presentViewController:navi animated:YES completion:^{
  1856. }];
  1857. }
  1858. } else if ([title isEqualToString:@"Lock"] || [title isEqualToString:@"Unlock"]) {
  1859. UIApplication * app = [UIApplication sharedApplication];
  1860. AppDelegate *appDelegate = (AppDelegate *)[app delegate];
  1861. JKLockController *lockVC = [[JKLockController alloc] init];
  1862. [lockVC setPasswordKey:[NSString stringWithFormat:@"%@_password",appDelegate.user]];
  1863. __weak typeof(self) weakself = self;
  1864. lockVC.authoReturn = ^(BOOL failure) {
  1865. if (weakself) {
  1866. __strong typeof(weakself) strongself = weakself;
  1867. [Singleton sharedInstance].global_lock = ![Singleton sharedInstance].global_lock;
  1868. [strongself initMenuItems];
  1869. [strongself hideMenu];
  1870. }
  1871. };
  1872. [self.navigationController pushViewController:lockVC animated:YES];
  1873. }
  1874. }
  1875. #pragma mark - UIAlertViewDelegate
  1876. // Called when a button is clicked. The view will be automatically dismissed after this call returns
  1877. - (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
  1878. {
  1879. UIApplication * app = [UIApplication sharedApplication];
  1880. AppDelegate *appDelegate = (AppDelegate *)[app delegate];
  1881. // MainViewController* main_vc=(MainViewController*)appDelegate.main_vc;
  1882. if(buttonIndex==alertView.cancelButtonIndex)
  1883. {
  1884. }
  1885. else if(buttonIndex==1)
  1886. {
  1887. //open exist
  1888. OrderListViewController* ovc =[ [UIStoryboard storyboardWithName:@"ERP_Mobile_Order" bundle:nil] instantiateViewControllerWithIdentifier:@"OrderListViewController"];
  1889. ovc.showNavibar = true;
  1890. ovc.selectOrder = ^(NSMutableDictionary* order_detail){
  1891. if(appDelegate.order_code==nil)
  1892. {
  1893. [self neworderforCart];
  1894. }
  1895. else
  1896. {
  1897. self.previous_VC = self.current_VC;
  1898. [self flipFromViewController:self.current_VC toViewController:self.cartViewController withDirection:UIViewAnimationOptionTransitionCrossDissolve];
  1899. [self checklogin:true];
  1900. }
  1901. };
  1902. ovc.init_style = OL_OPEN;
  1903. ovc.onCancel = ^(){
  1904. [self checklogin:true];
  1905. };
  1906. ovc.title = @"SAVED ORDER";
  1907. [self.navigationController pushViewController:ovc animated:true];
  1908. }
  1909. else
  1910. {
  1911. //create new;
  1912. if(appDelegate.customerInfo==nil)// select contact if current contact not exist
  1913. {
  1914. ContactListViewController* cvc = [[UIStoryboard storyboardWithName:@"ERP_Mobile_Contact" bundle:nil] instantiateViewControllerWithIdentifier:@"ContactListViewController" ];
  1915. cvc.showNavibar = true;
  1916. cvc.contact_type = @"Sales_Order_Customer";
  1917. cvc.returnValue = ^(NSMutableDictionary* value,NSIndexPath* source){
  1918. appDelegate.contact_id=[value valueForKey:@"customer_cid"];
  1919. appDelegate.customerInfo = value;
  1920. if(appDelegate.order_code==nil)
  1921. [self neworderforCart];
  1922. };
  1923. cvc.onCancel = ^(){
  1924. [RAUtils message_alert:@"Cannot create order without cursomer infomation." title:@"" controller:self];
  1925. };
  1926. cvc.onReset = ^(){
  1927. [self checklogin:true];
  1928. };
  1929. [self.navigationController pushViewController:cvc animated:true];
  1930. }
  1931. else
  1932. {
  1933. [self neworderforCart];
  1934. }
  1935. }
  1936. }
  1937. -(void) neworderforCart
  1938. {
  1939. UIAlertView * waitalert = [RAUtils waiting_alert:@"Please wait" title:@"Create Order"];
  1940. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  1941. NSDictionary* return_json = [RANetwork new_Order];
  1942. dispatch_async(dispatch_get_main_queue(), ^{
  1943. [waitalert dismissWithClickedButtonIndex:0 animated:FALSE];
  1944. if([[return_json valueForKey:@"result"] intValue]==2)
  1945. {
  1946. int result=[[return_json valueForKey:@"result"] intValue];
  1947. if(result==2)
  1948. {
  1949. //successed.
  1950. NSString* order_code = [return_json valueForKey:@"orderCode"];
  1951. AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
  1952. appDelegate.order_code = order_code;
  1953. appDelegate.order_status = [[return_json valueForKey:@"orderStatus"] intValue];
  1954. self.previous_VC = self.current_VC;
  1955. [self flipFromViewController:self.current_VC toViewController:self.cartViewController withDirection:UIViewAnimationOptionTransitionCrossDissolve];
  1956. #ifdef RA_NOTIFICATION
  1957. [ActiveViewController Notify:@"CartViewController,OrderListViewController" Message:RA_NOTIFICATION_RELOAD_DATA];
  1958. #else
  1959. [self reloadCart:true immediately:false];
  1960. [self reloadOrder:true immediately:false];
  1961. #endif
  1962. }
  1963. }
  1964. else
  1965. {
  1966. [RAUtils message_alert:[return_json valueForKey:@"err_msg"] title:@"Add To Cart" controller:self] ;
  1967. }
  1968. });
  1969. });
  1970. }
  1971. - (void)showPriceAuth:(NSInteger)from {
  1972. }
  1973. @end