| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794 |
- //
- // CartViewController.m
- // RedAnt ERP Mobile
- //
- // Created by Ray on 14-6-6.
- // Copyright (c) 2014年 United Software Applications, Inc. All rights reserved.
- //
- #import "RAUtils.h"
- #import "CartViewController.h"
- #import "ModelItemCell.h"
- #import "RANetwork.h"
- //#import "CommonGridViewController.h"
- #import "CreateOrderViewController.h"
- #import "DetailViewController.h"
- #import "EditModelPriceViewController.h"
- #import "MainViewController.h"
- #import "LoginViewController.h"
- #import "ItemNotesViewController.h"
- #import "CartGeneralNotesViewController.h"
- #import "DefaultAppearance.h"
- #import "DefaultTableHeaderView.h"
- #import "SortItemViewController.h"
- #import "SortButton.h"
- #import "NotificationNameCenter.h"
- #import "RASingleton.h"
- #import "JKMessageBoxController.h"
- #import "RAPDFViewController.h"
- #ifdef SCANNER_ORDER
- #import "ScanCartItemCell.h"
- #import "ScanDiscountViewController.h"
- #else
- #endif
- #ifdef BUILD_CONTRAST
- #import "OrderDiscountViewController.h"
- #endif
- #ifdef BACKORDER_PROCESS
- #import "RAOrderEditorViewController.h"
- #endif
- #import "CustomerEditViewController.h"
- //#define ALERT_FREE 1024
- //#define ALERT_DEL 1025
- //#define ALERT_SET_FREE 1026
- //#define ALERT_RESTORE_FREE 1027
- @interface CartViewController ()
- {
- CGRect cancelButtonFrame;
-
- }
- @property (nonatomic,strong) SortItemViewController *sortItemController;
- @property (nonatomic,assign) int sortIndex;
- @property (nonatomic,strong) SortButton *sortButton;
- @property (strong, nonatomic) IBOutlet UIButton *placeOrderButton;
- @property (strong, nonatomic) IBOutlet UIButton *cancelOrderButton;
- @property (nonatomic,strong) NSOperationQueue *dataOperationQueue;
- @property (strong, nonatomic) IBOutlet UIButton *emailButton;
- @property (strong, nonatomic) IBOutlet UIButton *printButton;
- @property (weak, nonatomic) IBOutlet UIButton *editButton;
- @property (weak, nonatomic) IBOutlet UIButton *continueButton;
- @property (weak, nonatomic) IBOutlet UILabel *labelTotalcuft;
- @property (weak, nonatomic) IBOutlet UILabel *labelTotalWeight;
- @property (weak, nonatomic) IBOutlet UILabel *labelTotalCarton;
- @property (weak, nonatomic) IBOutlet UILabel *valuecuft;
- @property (weak, nonatomic) IBOutlet UILabel *valueweight;
- @property (weak, nonatomic) IBOutlet UILabel *valuecarton;
- @property (nonatomic,assign) BOOL currentOrderIsMerged;
- @property (nonatomic,strong) DefaultTableHeaderView *cartIndicatorBar;
- @property (nonatomic,assign) BOOL back_order_flag;
- @property (nonatomic,strong) NSDictionary *cart_json;
- @property (nonatomic,copy) NSString *print_url;
- @property (nonatomic,assign) BOOL available;///<所有Model均有库存,才能Place Order。
- @end
- @implementation CartViewController
- - (NSOperationQueue *)dataOperationQueue {
- if (!_dataOperationQueue) {
- _dataOperationQueue = [[NSOperationQueue alloc] init];
- _dataOperationQueue.maxConcurrentOperationCount = 1;
- }
- return _dataOperationQueue;
- }
- - (void)dealloc {
- #ifndef RA_NOTIFICATION
- [[NSNotificationCenter defaultCenter] removeObserver:self];
- #endif
- }
- -(void) logout
- {
- [super logout];
- [self.content_arr removeAllObjects];
- [self refresh_ui];
- self.cart_json = nil;
- }
- - (IBAction)OnEditSelectClick:(id)sender {
-
-
-
-
- NSMutableArray* arr_ids = [[NSMutableArray alloc] init];
-
-
- long count = self.content_arr.count;//[[self.content_data valueForKey:@"count"] intValue];
-
- if(count==0)
- {
- [RAUtils message_box:@"Cart" message:@"No item in the cart" completion:nil] ;
- return;
- }
- for(int i=0;i<count;i++)
- {
- NSMutableDictionary * item_json = [self.content_arr[i] mutableCopy];//[[self.content_data objectForKey:[NSString stringWithFormat:@"item_%d",i]] mutableCopy];
-
- [arr_ids addObject:[NSNumber numberWithInt:[[item_json valueForKey:@"cart_item_id"] intValue]]];
-
- }
-
- NSString * ids = [arr_ids componentsJoinedByString:@","];
-
-
-
- UIAlertController *alertControl = [UIAlertController alertControllerWithTitle:@"Select all model and" message:nil preferredStyle:UIAlertControllerStyleAlert];
- //block代码块取代了delegate
-
-
-
- UIAlertAction *actionOne = [UIAlertAction actionWithTitle:@"Delete" style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action) {
- UIAlertController *alertControl = [UIAlertController alertControllerWithTitle:@"Are you sure remove all models from cart?" message:nil preferredStyle:UIAlertControllerStyleAlert];
- //block代码块取代了delegate
-
-
-
- UIAlertAction *actionOne = [UIAlertAction actionWithTitle:@"Yes" style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action) {
- // __block UIAlertController * waitalert = [RAUtils waiting_alert:self title:@"Remove Models From Cart" completion:^{
-
- PopWaitAlert* pop = [RAUtils waiting_pop:@"Remove Models From Cart" completion:nil];
- [RANetwork request_remove_cart:ids completionHandler:^(NSMutableDictionary *result) {
- NSMutableDictionary* cart_json =result;
-
-
- // [waitalert dismissViewControllerAnimated:YES completion:nil];
- // [waitalert dismissViewControllerAnimated:YES completion:^{
-
- [pop hide];
- if([[cart_json valueForKey:@"result"] intValue]==2)
- {
-
- [self end_edit];
-
-
-
- #ifdef RA_NOTIFICATION
- [ActiveViewController Notify:@"CartViewController,CategoryViewController,OrderListViewController" Message:RA_NOTIFICATION_RELOAD_DATA];
- #else
- AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
- [((MainViewController*)appDelegate.main_vc) reloadCart:true immediately:true];
- [((MainViewController*)appDelegate.main_vc) reloadCategory:true immediately:true];
- [((MainViewController*)appDelegate.main_vc) reloadOrder:true immediately:false];
- #endif
- }
- else
- {
- [RAUtils message_box:@"Delete Model" message:[cart_json valueForKey:@"err_msg"] completion:nil] ;
- }
- // }];
-
-
-
-
-
-
- }];
- // }];
-
-
- }];
-
- UIAlertAction *alertthree = [UIAlertAction actionWithTitle:@"No" style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
- DebugLog(@"No");
- }];
- [alertControl addAction:actionOne];
-
- [alertControl addAction:alertthree];
-
- //UIAlertControllerStyle类型为UIAlertControllerStyleAlert可以添加addTextFieldWithConfigurationHandler:^(UITextField *textField)
-
-
- [self presentViewController:alertControl animated:YES completion:nil];
-
- DebugLog(@"%@",self.edit_select_arr);
-
-
- }];
- UIAlertAction *actionTwo = [UIAlertAction actionWithTitle:@"Move To Wish List" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
- // __block UIAlertController * waitalert = [RAUtils waiting_alert:self title:@"Move Models To Wish List" completion:^{
- PopWaitAlert* pop = [RAUtils waiting_pop:@"Move Models To Wish List" completion:nil];
- [RANetwork request_move_cart2wish:ids completionHandler:^(NSMutableDictionary *result) {
- NSDictionary* cart_json =result;
-
-
- // [waitalert dismissViewControllerAnimated:YES completion:^{
- [pop hide];
- if([[cart_json valueForKey:@"result"] intValue]==2)
- {
-
-
-
-
- #ifdef RA_NOTIFICATION
- [ActiveViewController Notify:@"WatchListViewController,CartViewController,OrderListViewController" Message:RA_NOTIFICATION_RELOAD_DATA];
- #else
- AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
- [((MainViewController*)appDelegate.main_vc) reloadWish:true immediately:false];
- [((MainViewController*)appDelegate.main_vc) reloadCart:true immediately:true];
- [((MainViewController*)appDelegate.main_vc) reloadOrder:true immediately:false];
- #endif
-
-
- [self end_edit];
- }
- else
- {
- [RAUtils message_box:@"Move Models To Wish List" message:[cart_json valueForKey:@"err_msg"] completion:nil] ;
- }
- // }];
-
-
-
-
-
- }];
- // }];
-
- }];
-
- UIAlertAction *alertthree = [UIAlertAction actionWithTitle:@"Cancel" style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
- DebugLog(@"No");
- }];
- [alertControl addAction:actionOne];
- [alertControl addAction:actionTwo];
- [alertControl addAction:alertthree];
-
- //UIAlertControllerStyle类型为UIAlertControllerStyleAlert可以添加addTextFieldWithConfigurationHandler:^(UITextField *textField)
-
-
- [self presentViewController:alertControl animated:YES completion:nil];
-
- DebugLog(@"%@",self.edit_select_arr);
-
-
-
- }
- - (IBAction)onEditAddWishClick:(id)sender {
- if(self.edit_select_arr.count==0)
- {
- [RAUtils message_box:@"Cannot Move To Wish List" message:@"You must select at least one model." completion:nil] ;
- return;
- }
-
- NSString * ids = [self.edit_select_arr componentsJoinedByString:@","];
-
- // UIAlertController *alertControl = [UIAlertController alertControllerWithTitle:@"Are you sure remove selected models from cart?" message:nil preferredStyle:UIAlertControllerStyleAlert];
- // //block代码块取代了delegate
- //
- //
- //
- // UIAlertAction *actionOne = [UIAlertAction actionWithTitle:@"Yes" style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action) {
- // __block UIAlertController * waitalert = [RAUtils waiting_alert:self title:@"Move Models To Wish List" completion:^{
- PopWaitAlert* pop = [RAUtils waiting_pop:@"Move Models To Wish List" completion:nil];
- [RANetwork request_move_cart2wish:ids completionHandler:^(NSMutableDictionary *result) {
- NSDictionary* cart_json = result;
-
-
- // [waitalert dismissViewControllerAnimated:YES completion:^{
- [pop hide];
- if([[cart_json valueForKey:@"result"] intValue]==2)
- {
-
- [self end_edit];
-
- #ifdef RA_NOTIFICATION
- [ActiveViewController Notify:@"WatchListViewController,CartViewController,OrderListViewController" Message:RA_NOTIFICATION_RELOAD_DATA];
- #else
- AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
- [((MainViewController*)appDelegate.main_vc) reloadWish:true immediately:false];
- [((MainViewController*)appDelegate.main_vc) reloadCart:true immediately:true];
- [((MainViewController*)appDelegate.main_vc) reloadOrder:true immediately:false];
- #endif
-
- }
- else
- {
- [RAUtils message_box:@"Move To Wish List" message:[cart_json valueForKey:@"err_msg"] completion:nil] ;
-
-
- }
- // }];
-
-
-
-
-
- }];
- // }];
-
-
-
- }
- - (IBAction)onEditDelClick:(id)sender {
-
-
- if(self.edit_select_arr.count==0)
- {
- [RAUtils message_box:@"Cannot Delete From Cart" message:@"You must select at least one model." completion:nil] ;
-
-
- return;
- }
-
- NSString * ids = [self.edit_select_arr componentsJoinedByString:@","];
-
- UIAlertController *alertControl = [UIAlertController alertControllerWithTitle:@"Are you sure remove selected models from cart?" message:nil preferredStyle:UIAlertControllerStyleAlert];
- //block代码块取代了delegate
-
-
-
- UIAlertAction *actionOne = [UIAlertAction actionWithTitle:@"Yes" style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action) {
- // __block UIAlertController * waitalert = [RAUtils waiting_alert:self title:@"Remove Models From Cart" completion:^{
- PopWaitAlert* pop = [RAUtils waiting_pop:@"Remove Models From Cart" completion:nil];
- [RANetwork request_remove_cart:ids completionHandler:^(NSMutableDictionary *result) {
- NSMutableDictionary* cart_json =result;
-
-
- // [waitalert dismissViewControllerAnimated:YES completion:^{
-
- [pop hide];
- if([[cart_json valueForKey:@"result"] intValue]==2)
- {
-
- [self end_edit];
-
-
- #ifdef RA_NOTIFICATION
- [ActiveViewController Notify:@"CartViewController,CategoryViewController,OrderListViewController" Message:RA_NOTIFICATION_RELOAD_DATA];
- #else
- AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
- [((MainViewController*)appDelegate.main_vc) reloadCart:true immediately:true];
- [((MainViewController*)appDelegate.main_vc) reloadCategory:true immediately:true];
- [((MainViewController*)appDelegate.main_vc) reloadOrder:true immediately:false];
- #endif
- }
- else
- {
- [RAUtils message_box:@"Delete Model" message:[cart_json valueForKey:@"err_msg"] completion:nil] ;
- }
- // }];
-
-
-
-
-
- }];
- // }];
-
- }];
-
- UIAlertAction *alertthree = [UIAlertAction actionWithTitle:@"No" style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
- DebugLog(@"No");
- }];
- [alertControl addAction:actionOne];
-
- [alertControl addAction:alertthree];
-
- //UIAlertControllerStyle类型为UIAlertControllerStyleAlert可以添加addTextFieldWithConfigurationHandler:^(UITextField *textField)
-
-
- [self presentViewController:alertControl animated:YES completion:nil];
-
- DebugLog(@"%@",self.edit_select_arr);
- }
- - (IBAction)onEndEditClick:(id)sender {
- [self end_edit];
- }
- -(void)begin_edit
- {
- self.toolpanel.hidden = true;
- self.toolbar.hidden = false;
-
- // DebugLog(@"begin edit %@",NSStringFromCGRect(self.cartItemView.frame));
- // NSArray *scenes=[[[UIApplication sharedApplication] connectedScenes] allObjects];
- // NSArray *windows=[[scenes objectAtIndex:0] windows];
- //
- // UIWindow* w=windows[0];
-
- UIInterfaceOrientation orientation = [RAUtils query_orientation:self];
-
- // if (@available(iOS 13, *)) {
- // orientation= [RAUtils query_orientation:self];
- // }
- // else
- // orientation=[[UIApplication sharedApplication] statusBarOrientation];
-
- if ( UIInterfaceOrientationIsPortrait(orientation))
- self.cartItemView.frame = CGRectMake(0,40,768,840);
- else
- self.cartItemView.frame = CGRectMake(0,40,1024,584);
- [self.itemListTable setEditing:true animated:YES];
- [self.itemListTable reloadData];
- }
- -(void) end_edit
- {
- self.toolpanel.hidden=false;
- self.toolbar.hidden=true;
- // DebugLog(@"end edit %@",NSStringFromCGRect(self.cartItemView.frame));
-
-
- UIInterfaceOrientation orientation= [RAUtils query_orientation:self];// = [[UIApplication sharedApplication]statusBarOrientation];
- if ( UIInterfaceOrientationIsPortrait(orientation))
- self.cartItemView.frame = CGRectMake(0,40,768,760);
- else
- self.cartItemView.frame = CGRectMake(0,40,1024,508);
-
- [self.itemListTable setEditing:false animated:YES];
- [self.edit_select_arr removeAllObjects];
- [self.itemListTable reloadData];
- // [self reload_data];
- }
- - (IBAction)onEditClick:(id)sender {
-
- // AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
- //
- // [appDelegate test_onDecodedDataResult:@"4400022"];
- //
- //
- // return;
-
-
- [self begin_edit];
- }
- #ifndef RA_NOTIFICATION
- -(void) reload_container_getdata:(bool) update_data
- {
-
- [super reload_container_getdata:update_data];
- if(update_data)
- [self reload_data];
- else
- {
- [self.itemListTable reloadData];
- [self refresh_total];
- }
- }
- #endif
- -(void) showHidePrice
- {
- #ifndef RA_NOTIFICATION
- [self reload_container_getdata:false];
- #endif
- // [self refresh_total];
-
- }
- - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
- {
- self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
- if (self) {
- // Custom initialization
-
- }
- return self;
- }
- - (IBAction)imgbtnClick:(UIButton *)sender {
-
- #ifdef SCANNER_ORDER
-
- return;
- #endif
- // UITableViewCell* cell =(UITableViewCell*) sender.superview.superview;
- //
- // NSIndexPath * indexPath = [self.itemListTable indexPathForCell:cell];
- // // DebugLog(@"shouldchangeedit %d_%d",indexPath.section,indexPath.row);
- // NSDictionary * item_json = nil;
- // if (self.back_order_flag) {
- // item_json = [self itemJsonAtIndexPath:indexPath];
- // } else {
- // item_json = self.content_arr[indexPath.row];//[self.content_data objectForKey:[NSString stringWithFormat:@"item_%ld",(long)indexPath.row]];
- // }
- //
- // NSString* product_id = [item_json valueForKey:@"product_id"];
- // NSString *name = [item_json valueForKey:@"model"];
- //
- // int is_rate = [item_json[@"is_rate"] intValue];
- // if(is_rate==1)
- // return;
- //
- // DetailViewController* dvc = [[UIStoryboard storyboardWithName:@"ERP_Mobile_Model" bundle:nil] instantiateViewControllerWithIdentifier:@"DetailViewController" ];
- // // dvc
- //
- // dvc.product_id=product_id;
- // dvc.category_id=nil;
- // dvc.ispush=true;
- // dvc.model_name = name;
- //
- // [dvc reload];
- // [self.navigationController pushViewController:dvc animated:true];
- }
- -(void)viewWillLayoutSubviews
- {
- // if(self.showDetail==true)
- // {
- // UIInterfaceOrientation orientation =[UIApplication sharedApplication].statusBarOrientation;
- // int width=175;
- // // int height;
- // if(orientation == UIDeviceOrientationLandscapeLeft ||orientation == UIDeviceOrientationLandscapeRight)
- // {
- // width = 370;
- // // height = 400;
- // }
- // else
- // {
- // // height = 300;
- // width = 175;
- // }
- //
- //
- // CGRect frame = CGRectMake(0, 64, width, self.view.bounds.size.height-64);
- //
- // self.collectionview.frame=frame;
- //
- //
- //
- // CGRect framedetail = CGRectMake(width,64 ,self.view.bounds.size.width-width,self.view.bounds.size.height-64);
- // self.detailView.frame = framedetail;
- // }
-
-
- self.toolpanel.layer.shadowPath =[UIBezierPath bezierPathWithRect:self.toolpanel.bounds].CGPath;
-
-
- // self.collectionview.layer.shadowPath =[UIBezierPath bezierPathWithRect:self.collectionview.bounds].CGPath;
- }
- - (void)viewWillAppear:(BOOL)animated
- {
-
- [super viewWillAppear:animated];
-
- // print 13 email 19 cancel 24 place order
- // Shop 权限检查
- AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
- if (RASingleton.sharedInstance.user && appDelegate.user_type == USER_ROLE_CUSTOMER && appDelegate.customer_type == CustomerTypeStore) {
- if (![RASingleton sharedInstance].permissions_edit_order) {
-
- CGRect frame0 = self.cancelOrderButton.frame;
- CGRect frame1 = self.placeOrderButton.frame;
- CGRect frame2 = self.emailButton.frame;
- CGRect frame3 = self.printButton.frame;
-
- CGFloat x = CGRectGetMaxX(frame1) - frame0.size.width;
- frame0.origin.x = x;
- self.cancelOrderButton.frame = frame0;
-
- x -= 20 + CGRectGetWidth(frame2);
- frame2.origin.x = x;
- self.emailButton.frame = frame2;
-
- x -= 20 + CGRectGetWidth(frame3);
- frame3.origin.x = x;
- self.printButton.frame = frame3;
-
- self.placeOrderButton.hidden = YES;
- } else {
- self.placeOrderButton.hidden = NO;
- CGSize size = cancelButtonFrame.size;
- CGFloat x = CGRectGetMinX(self.placeOrderButton.frame) - 24 - size.width;
- CGFloat y = CGRectGetMinY(self.placeOrderButton.frame);
- self.cancelOrderButton.frame = CGRectMake(x, y, size.width, size.height);
-
- CGRect frame2 = self.emailButton.frame;
- x -= 20 + CGRectGetWidth(frame2);
- frame2.origin.x = x;
- self.emailButton.frame = frame2;
-
- CGRect frame3 = self.printButton.frame;
- x -= 20 + CGRectGetWidth(frame3);
- frame3.origin.x = x;
- self.printButton.frame = frame3;
- }
- } else {
- // self.cancelOrderButton.frame = cancelButtonFrame;
- self.placeOrderButton.hidden = NO;
- CGSize size = cancelButtonFrame.size;
- CGFloat x = CGRectGetMinX(self.placeOrderButton.frame) - 24 - size.width;
- CGFloat y = CGRectGetMinY(self.placeOrderButton.frame);
- self.cancelOrderButton.frame = CGRectMake(x, y, size.width, size.height);
-
- CGRect frame2 = self.emailButton.frame;
- x -= 20 + CGRectGetWidth(frame2);
- frame2.origin.x = x;
- self.emailButton.frame = frame2;
-
- CGRect frame3 = self.printButton.frame;
- x -= 20 + CGRectGetWidth(frame3);
- frame3.origin.x = x;
- self.printButton.frame = frame3;
- }
- #ifdef OFFLINE_MODE
- // 离线隐藏Email
- self.emailButton.hidden = appDelegate.offline_mode;
- // 离线隐藏Print
- self.printButton.hidden = appDelegate.offline_mode;
- #endif
- [[self navigationController] setNavigationBarHidden:YES animated:NO];
-
-
- #ifdef SCANNER_ORDER
- if(appDelegate.user_type == USER_ROLE_EMPLOYEE)
- {
- self.btnBulkDiscount.hidden = false;
- }
- else
- self.btnBulkDiscount.hidden = true;
- #endif
- }
- - (void)checkProductAvailable:(NSArray *)contents {
- if (contents == nil) {
- self.available = NO;
- return;
- }
- [contents enumerateObjectsUsingBlock:^(id _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
-
- if ([obj isKindOfClass:[NSDictionary class]]) {
-
- NSDictionary *item_json = (NSDictionary *)obj;
- BOOL isAvailable = ![[item_json valueForKey:@"is_out_of_stock"] boolValue];
- self.available = self.available && isAvailable;
- }
-
- }];
- }
- - (void)clearContent {
- dispatch_async(dispatch_get_main_queue(), ^{
- self.freejson = nil;
- self.notes = nil;
- self.content_arr = nil;
- self.currentOrderIsMerged = nil;
- self.cart_json = nil;
- [RASingleton sharedInstance].currentOrderIsMerged = NO;
- self.print_url = nil;
-
- [self checkProductAvailable:self.content_arr];
- [self refresh_total];
- [self.itemListTable reloadData];
-
- AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
- appDelegate.cart_count = 0;
- [appDelegate update_count_mark];
- });
- }
- -(void) operation_reload_data
- {
- if (self.dataOperationQueue.operationCount > 1) {
- return;
- }
- __block AppDelegate *appDelegate = nil;
-
- dispatch_sync(dispatch_get_main_queue(), ^{
- //some UI methods ej
- appDelegate=(AppDelegate*)[[UIApplication sharedApplication] delegate];
- });
- // AppDelegate *appDelegate = (AppDelegate *)[UIApplication sharedApplication].delegate;
- #ifndef SCANNER_ORDER
-
- //扫码订单允许后建订单
- if (appDelegate.order_code == nil || appDelegate.order_code.length == 0) {
- [self clearContent];
- return;
- }
- #endif
-
- __weak typeof(self) weakself = self;
- dispatch_async(dispatch_get_main_queue(), ^{
- if(weakself.isrefreshing)
- return;
-
- weakself.available = YES;
- weakself.itemListTable.hidden = true;
- weakself.label_net_err.hidden=true;
- weakself.isrefreshing=true;
- // [self.content_data removeAllObjects];
- // [self.itemListTable reloadData];
- // UIRefreshControl *reF = (UIRefreshControl *)[self.view viewWithTag:200];
- //
- // [reF endRefreshing];
- //
- // reF.attributedTitle = [[NSAttributedString alloc]initWithString:@"Pull to refresh"];
-
- weakself.mum.center = weakself.view.center;
- weakself.mum.hidden = YES;
- // [self.mum startAnimating];
- DebugLog(@"reloading...");
- // __block UIAlertController *loadingView = [RAUtils waiting_alert:self title:@"Loading" completion:^{
- PopWaitAlert* pop = [RAUtils waiting_pop:@"Loading" completion:nil];
- [RANetwork request_cart:weakself.sortIndex completionHandler:^(NSMutableDictionary *result) {
- DebugLog(@"BEGIN LOAD CART");
- NSDictionary* cart_json = result;
-
- //
- // [self.mum stopAnimating];
- // [loadingView dismissViewControllerAnimated:YES completion:^{
- [pop hide];
- // [loadingView dismissWithClickedButtonIndex:0 animated:YES];
-
- // self.content_data = [cart_json mutableCopy];
- #ifdef BACKORDER_PROCESS
- weakself.back_order_flag = [[cart_json objectForKey:@"back_order_version"] boolValue];
- #else
- weakself.back_order_flag = NO;
- #endif
-
- if (!weakself.back_order_flag) {
- weakself.freejson = [cart_json objectForKey:@"freeGiveaway"];
- weakself.notes = [cart_json valueForKey:@"general_note"];
- weakself.content_arr = [RAUtils dictionary2array:cart_json count_fields:@"count" item_mark:@"item_" items_mark:nil];
- weakself.currentOrderIsMerged = [[cart_json valueForKey:@"is_merged_order"] boolValue];
- [RASingleton sharedInstance].currentOrderIsMerged = weakself.currentOrderIsMerged;
- [weakself.itemListTable reloadData];
- weakself.print_url = [cart_json valueForKey:@"cart_print_url"];
-
-
- [weakself checkProductAvailable:weakself.content_arr];
-
-
- [weakself refresh_total];
- } else {
- // v1.94
- weakself.freejson = [cart_json objectForKey:@"freeGiveaway"];
- weakself.notes = [cart_json valueForKey:@"general_note"];
- weakself.cart_json = cart_json;
- [weakself.itemListTable reloadData];
- weakself.print_url = [cart_json valueForKey:@"cart_print_url"];
- [weakself checkProductAvailable:weakself.content_arr];
- }
-
- int result_code=[[cart_json valueForKey:@"result"] intValue];
-
- if (weakself.dataOperationQueue.operationCount > 1) {
- weakself.isrefreshing=false;
- return;
- }
-
- if(result_code==2||result_code==1||result_code==0)
- {
-
- [weakself.edit_select_arr removeAllObjects];
-
- weakself.itemListTable.hidden = false;
- // UIApplication * app = [UIApplication sharedApplication];
- // AppDelegate *appDelegate = (AppDelegate *)[app delegate];
- // appDelegate.cart_count =weakself.content_arr.count;//[[self.content_data valueForKey:@"count"] intValue];
- weakself.itemListTable.hidden=false;
- if(weakself.onFinishLoad)
- weakself.onFinishLoad();
- }
- else
- if(result_code==RESULT_NET_ERROR)
- {
- weakself.label_net_err.hidden=false;
- weakself.itemListTable.hidden=true;
- }
- else
- {
- if(result_code!=1)
- [RAUtils message_box:@"Loading Cart" message:[cart_json valueForKey:@"err_msg"] completion:nil] ;
- }
-
- weakself.isrefreshing=false;
- DebugLog(@"FINISH LOAD CART");
- // }];
-
-
- }];
- // }];
-
-
- });
- // [[self navigationController] setNavigationBarHidden:YES animated:NO];
- }
- -(void)manually_refresh
- {
- UIRefreshControl *reF = (UIRefreshControl *)[self.view viewWithTag:200];
-
- if(self.isrefreshing)
- {
- [reF endRefreshing];
- return;
- }
-
- reF.attributedTitle = [[NSAttributedString alloc]initWithString:@"Refreshing"];
- [self performSelector:@selector(ReloadData) withObject:nil afterDelay:1];
- // DebugLog(@"refresh!!!!!!!!");
-
- }
- -(void) ReloadData
- {
- UIRefreshControl *reF = (UIRefreshControl *)[self.view viewWithTag:200];
-
- [reF endRefreshing];
-
- reF.attributedTitle = [[NSAttributedString alloc]initWithString:@"Pull to refresh"];
- [self reload_data];
-
-
- }
- - (void)viewDidLayoutSubviews {
- [super viewDidLayoutSubviews];
-
- [self layoutCartIndicatorBar];
- }
- - (DefaultTableHeaderView *)setupCartIndicatorBar {
-
- NSString* value =[DefaultAppearance get_noneappearance_value:@"DefaultTableHeaderView" valuename:@"title_text_color"];
-
- if(value==nil)
- value=@"";
- unsigned long color = strtoul([value UTF8String],0,16);
- DefaultTableHeaderView* myView = [[DefaultTableHeaderView alloc] initWithFrame:CGRectMake(0, 0, self.view.bounds.size.width, 40)];
- // myView.backgroundColor = UIColorFromRGB(0x996633);
- myView.autoresizingMask = UIViewAutoresizingFlexibleWidth;
-
- myView.layer.shadowPath =[UIBezierPath bezierPathWithRect:myView.bounds].CGPath;
-
- myView.layer.shadowColor = [UIColor blackColor].CGColor;
- myView.layer.shadowOffset = CGSizeMake(0, 0);
- myView.layer.shadowOpacity = 0.5;
- myView.layer.shadowRadius = 2.0;
-
- #ifndef SCANNER_ORDER
- self.sortButton.tag = 5678 + 0;
- [myView addSubview:self.sortButton];
- #endif
- UILabel *solabel = [[UILabel alloc] initWithFrame:CGRectMake(130, 9, 90, 22)];
- solabel.tag = 5678 + 1;
-
- solabel.textColor=UIColorFromRGB(color);
- solabel.backgroundColor = [UIColor clearColor];
- solabel.autoresizingMask=UIViewAutoresizingFlexibleRightMargin;
- solabel.text=NSLocalizedString(@"Description", nil);
- [solabel sizeToFit];
- [myView addSubview:solabel];
- CGFloat x = self.itemListTable.bounds.size.width - (768 - 320);
-
- UILabel *contactlabel = [[UILabel alloc] initWithFrame:CGRectMake(x, 9, 90, 22)];
- contactlabel.tag = 5678 + 2;
-
- contactlabel.textColor=UIColorFromRGB(color);
- contactlabel.autoresizingMask=UIViewAutoresizingFlexibleRightMargin;
- contactlabel.backgroundColor = [UIColor clearColor];
-
- #ifdef SCANNER_ORDER
-
- NSString* pricename;
-
- NSDictionary *addressDic = [[NSUserDefaults standardUserDefaults] valueForKey:@"ScanAddress"];
-
- NSString* servername = [addressDic objectForKey:@"show_name"];
- NSArray* arrsn = [RAConvertor string2arr:servername separator:@","];
-
- NSString * shortname = arrsn[0];
- if(shortname.length==0)
- shortname = servername;
-
- AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
-
- NSDictionary* price_group = [RADataProvider get_price_group:appDelegate.price_group];
- // self.labelPrice0.text = price_group[@"price_0"][@"display"];//appDelegate.price0_name;
- // self.labelPrice1.text = price_group[@"price_1"][@"display"];//appDelegate.price1_name;
-
-
- switch(RASingleton.sharedInstance.price_type)
- {
- case 0:
- // pricename =[NSString stringWithFormat:@"%@_DDP",shortname];
- pricename = price_group[@"price_0"][@"display"];
- break;;
- case 1:
- // pricename = [NSString stringWithFormat:@"%@_WHSE",shortname];;
- pricename=price_group[@"price_1"][@"display"];//@"WHSE";
- break;;
- // case 2: pricename = @"25%";
- // break;
- }
- contactlabel.text=pricename;
- // contactlabel.frame= CGRectMake(x-100, 9, 90, 22);
- // contactlabel.tran
- #else
- contactlabel.text=NSLocalizedString(@"Unit price", nil);
- #endif
- [contactlabel sizeToFit];
- [myView addSubview:contactlabel];
-
- x = self.itemListTable.bounds.size.width - (768 - 470);
- UILabel *modellabel = [[UILabel alloc] initWithFrame:CGRectMake(x, 9, 90, 22)];
- modellabel.tag = 5678 + 3;
-
- modellabel.textColor=UIColorFromRGB(color);
- modellabel.autoresizingMask=UIViewAutoresizingFlexibleLeftMargin;
- modellabel.backgroundColor = [UIColor clearColor];
- modellabel.text=NSLocalizedString(@"Discount/QTY", nil);
- [modellabel sizeToFit];
- [myView addSubview:modellabel];
- x = self.itemListTable.bounds.size.width - (768 - 640);
-
- UILabel *pricelabel = [[UILabel alloc] initWithFrame:CGRectMake(x, 9, 90, 22)];
- pricelabel.tag = 5678 + 4;
-
- pricelabel.textColor=UIColorFromRGB(color);
- pricelabel.autoresizingMask=UIViewAutoresizingFlexibleLeftMargin;
- pricelabel.backgroundColor = [UIColor clearColor];
- pricelabel.text=NSLocalizedString(@"Set/Subtotal", nil);
- [pricelabel sizeToFit];
- [myView addSubview:pricelabel];
-
- return myView;
- }
- - (void)layoutCartIndicatorBar {
- CGFloat x = self.itemListTable.bounds.size.width - (768 - 320);
-
- UILabel *solabel = [self.cartIndicatorBar viewWithTag:5678 + 1];
- [solabel sizeToFit];
-
- UILabel *contactlabel = [self.cartIndicatorBar viewWithTag:5678 + 2];
- contactlabel.frame = CGRectMake(x, 9, 90, 22);
- [contactlabel sizeToFit];
-
- x = self.itemListTable.bounds.size.width - (768 - 470);
- UILabel *modellabel = [self.cartIndicatorBar viewWithTag:5678 + 3];
- modellabel.frame = CGRectMake(x, 9, 90, 22);
- [modellabel sizeToFit];
-
- x = self.itemListTable.bounds.size.width - (768 - 640);
- UILabel *pricelabel = [self.cartIndicatorBar viewWithTag:5678 + 4];
- pricelabel.frame = CGRectMake(x, 9, 90, 22);
- [pricelabel sizeToFit];
- }
- - (void)viewDidLoad
- {
- [super viewDidLoad];
-
- #ifdef BUILD_CONTRAST
- self.btnOrderDiscount.hidden=false;
- #endif
-
- #ifdef SCANNER_ORDER
- self.printButton.hidden = true;
- self.emailButton.hidden = true;
- self.editButton.hidden = true;
- self.continueButton.hidden = true;
-
- self.labelTotalcuft.hidden = false;
- self.labelTotalWeight.hidden = true;
- self.labelTotalCarton.hidden = true;
- self.valuecuft.hidden = false;
- self.valueweight.hidden = true;
- self.valuecarton.hidden = true;
-
-
- #endif
- #ifdef RA_NOTIFICATION
- self.support_scanner = true;
- #endif
- self.edit_select_arr= [[NSMutableArray alloc] init];
- self.label_net_err.layer.borderColor = [UIColor darkGrayColor].CGColor;
- self.label_net_err.layer.borderWidth = 2.0;
- self.label_net_err.layer.cornerRadius=15;
- self.label_net_err.layer.masksToBounds=true;
-
-
-
- #ifdef SCANNER_ORDER
- [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(cartrefresh:) name:@"RA_NOTIFICATION_CART_REFRESH" object:nil];
- #endif
-
- #ifndef RA_NOTIFICATION
- [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(priceTypeChanged:) name:Change_Price_Type_Notification object:nil];
-
- #endif
-
- UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(refresh_btn_click:)];
- // tap.minimumPressDuration = 0.8; //定义按的时间
- [self.label_net_err addGestureRecognizer:tap];
-
- UIRefreshControl *ref = [[UIRefreshControl alloc]init];
- ref.tag = 200 ;
- ref.attributedTitle = [[NSAttributedString alloc]initWithString:@"Pull to refresh"];
- ref.tintColor = [UIColor colorWithRed:0.10 green:0.68 blue:0.94 alpha:0.7];
- // ref.hidden = true;
- [ref addTarget:self action:@selector(manually_refresh) forControlEvents:UIControlEventValueChanged];
- [self.itemListTable addSubview:ref];
-
-
- self.sortIndex = 0;
- self.currentOrderIsMerged = NO;
-
- self.toolpanel.layer.shadowPath =[UIBezierPath bezierPathWithRect:self.toolpanel.bounds].CGPath;
- self.toolpanel.layer.masksToBounds = false;
- //添加四个边阴影
-
- self.toolpanel.layer.shadowColor = [UIColor blackColor].CGColor;
- self.toolpanel.layer.shadowOffset = CGSizeMake(0, 0);
- self.toolpanel.layer.shadowOpacity = 0.5;
- self.toolpanel.layer.shadowRadius = 2.0;
-
-
- cancelButtonFrame = self.cancelOrderButton.frame;
-
- // CGRect frame =self.orderInfoTableView.tableHeaderView.frame;
- // self.orderInfoTableView.tableHeaderView = [[UIView alloc] initWithFrame:CGRectMake(0.0f, 0.0f, self.orderInfoTableView.bounds.size.width, 0.0001)];
- // self.orderInfoTableView.tableHeaderView.backgroundColor = [UIColor redColor];
- // // self.detailTable.sectionHeaderHeight = 0.0001;
- // self.orderInfoTableView.sectionFooterHeight = 0.0001;
- // Do any additional setup after loading the view.
-
-
- self.cartIndicatorBar = [self setupCartIndicatorBar];
- [self.view addSubview:self.cartIndicatorBar];
-
- }
- -(void) cartrefresh: (NSNotification *)notification
- {
- [OLDataProvider scanRefreshCart];
- [ActiveViewController Notify:@"CartViewController" Message:RA_NOTIFICATION_RELOAD_DATA];
- // [self refresh_total];
- // [self refresh_ui];
- }
- //-(void)SelectOrder:(NSString *)orderid
- //{
- //// self.editOrderID.text=orderid;
- //// self.btnAddToOrder.enabled = true;
- //}
- - (void)didReceiveMemoryWarning
- {
- [super didReceiveMemoryWarning];
- // Dispose of any resources that can be recreated.
- }
- //- (IBAction)stepperAction:(UIStepper *)sender {
- //
- //
- //}
- - (IBAction)onContinueShoppingClick:(id)sender {
-
- AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
-
- [appDelegate switchToPreviousVC];
-
- }
- - (IBAction)onOrderDiscount:(id)sender {
-
- }
- - (IBAction)onPlaceOrder:(UIButton *)sender {
-
-
- #ifndef SCANNER_ORDER
- if (![self isOrderAvailable]) {
- return;
- }
- #endif
- [self placeOrder];
-
-
- }
- -(void) scanPlaceOrder
- {
- AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
- NSMutableDictionary * params= [[NSMutableDictionary alloc] init];
- // NSString * string = [checked componentsJoinedByString:@","];
- // [params setValue:string forKey:@"cart2Checkbox"];
-
- // NSData* data=[NSData dataWithContentsOfFile:[[NSBundle mainBundle] pathForResource:URL_SO_ORDER ofType:@"json" ]];
- // NSError *error=nil;
- // NSMutableDictionary* dict=[[NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableLeaves error:&error] mutableCopy];
- //
-
-
- // NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
- // NSString *documents = [paths objectAtIndex:0];
-
-
-
- NSString *orderdir = [OLDataProvider getScanPath];
-
-
- NSMutableDictionary* dict= [[RAUtils dictfromfile:[orderdir stringByAppendingPathComponent:@"order.json"]] mutableCopy];
-
- int section_count = [dict[@"section_count"] intValue];
-
- for(int i=0;i<section_count;i++)
- {
- NSMutableDictionary* section = [dict[[NSString stringWithFormat:@"section_%d",i]] mutableCopy];
- NSString* title = section[@"title"];
- if([title isEqualToString:@"Model Information"])
- {
-
- NSMutableDictionary* cart_section = RASingleton.sharedInstance.scan_cart[@"section_0"];
- int cart_count = [cart_section[@"count"] intValue];
- for(int j=0;j<cart_count;j++)
- {
- NSMutableDictionary* cart_item = [cart_section[[NSString stringWithFormat:@"item_%d",j]] mutableCopy];
- cart_item[@"description"]= [NSString stringWithFormat:@"%@\n%@\n%@",cart_item[@"model"],cart_item[@"description"],cart_item[@"dimension"] ];
- cart_item[@"control"]=@"model";
- section[[NSString stringWithFormat:@"item_%d",j]] = cart_item;
-
- }
- section[@"count"] = @(cart_count);
- dict[[NSString stringWithFormat:@"section_%d",i]] = section;
- }
- else
- if([title isEqualToString:@"Customer"])
- {
-
- int scount = [section[@"count"] intValue];
- for(int j=0;j<scount;j++)
- {
- NSMutableDictionary * item = [section[[NSString stringWithFormat:@"item_%d",j]] mutableCopy];
- NSString * name = item[@"name"];
-
- if([name isEqualToString:@"business_card"])
- {
- NSArray*arr =[RAConvertor string2arr:appDelegate.customerInfo[name] separator:@","];
- for(int l=0;l<arr.count;l++)
- {
- item[[NSString stringWithFormat:@"img_url_%d",l] ]=arr[l];
- }
- }
- else
- {
- if(item[@"value"]==nil ||[item[@"value"] stringValue].length==0) //order 内没有值才从customer 复制
- item[@"value"]=appDelegate.customerInfo[name];
- }
- section[[NSString stringWithFormat:@"item_%d",j]] = item;
- }
-
- // NSDictionary* item_0=@{@"control":@"text",@"name":@"customer_cid",@"aname":@"Contact",@"value":appDelegate.contact_id};
- dict[[NSString stringWithFormat:@"section_%d",i]] = section;
-
-
- }
- else
- if([title isEqualToString:@"Remarks Content"])
- {
-
- int scount = [section[@"count"] intValue];
- for(int j=0;j<scount;j++)
- {
- NSMutableDictionary * item = [section[[NSString stringWithFormat:@"item_%d",j]] mutableCopy];
- NSString * name = item[@"name"];
-
-
- if([name isEqualToString:@"comments"])
- {
- item[@"value"] = RASingleton.sharedInstance.scan_cart[@"general_note"];
- section[[NSString stringWithFormat:@"item_%d",j]] = item;
- }
-
-
- }
-
- // NSDictionary* item_0=@{@"control":@"text",@"name":@"customer_cid",@"aname":@"Contact",@"value":appDelegate.contact_id};
- dict[[NSString stringWithFormat:@"section_%d",i]] = section;
-
-
- }
- else if([title isEqualToString:@"Order Total"])
- {
-
- int scount = [section[@"count"] intValue];
- for(int j=0;j<scount;j++)
- {
- NSMutableDictionary * item = [section[[NSString stringWithFormat:@"item_%d",j]] mutableCopy];
- NSString * name = item[@"name"];
-
-
- if([name isEqualToString:@"totalPrice"])
- {
- item[@"value"] = [RAConvertor currencyNumber:self.total+self.surcharge];//[NSString stringWithFormat:@"%.2f",self.total+self.surcharge];
- section[[NSString stringWithFormat:@"item_%d",j]] = item;
- }
- else if([name isEqualToString:@"subtotalPrice"])
- {
- item[@"value"] = [RAConvertor currencyNumber:self.total];//[NSString stringWithFormat:@"%.2f",self.total];
- section[[NSString stringWithFormat:@"item_%d",j]] = item;
- }
- else if([name isEqualToString:@"surcharge"])
- {
- item[@"value"] = [RAConvertor currencyNumber:self.surcharge];//[NSString stringWithFormat:@"%.2f",self.surcharge];
- section[[NSString stringWithFormat:@"item_%d",j]] = item;
- }
-
- }
-
- // NSDictionary* item_0=@{@"control":@"text",@"name":@"customer_cid",@"aname":@"Contact",@"value":appDelegate.contact_id};
- dict[[NSString stringWithFormat:@"section_%d",i]] = section;
-
-
-
- }
-
-
-
-
- }
-
- // NSString *path = NSTemporaryDirectory();
- //
- // NSString* file=[NSString stringWithFormat:@"SO_%@.json",appDelegate.order_code];
- // NSString *filePath = [path stringByAppendingPathComponent:file];
- //
- //
- //
- [RAUtils dicttofile:[orderdir stringByAppendingPathComponent:@"order.json"] dict:dict];
-
- CreateOrderViewController * orderinfoVC = [[CreateOrderViewController alloc] initWithNibName:@"CommonEditor.iPad" bundle:nil];
-
-
-
- orderinfoVC.disable_dropdown_refresh=true;
- orderinfoVC.url_type = URL_FILE;
- orderinfoVC.request_url=[orderdir stringByAppendingPathComponent:@"order.json"];
-
- orderinfoVC.params = params;
- orderinfoVC.title=@"";
- orderinfoVC.delegate=self;
- //
- // if(checked.count==count)
- // {
- // orderinfoVC.have_tail = true
- // }
-
- [self.navigationController pushViewController:orderinfoVC animated:true];
-
- return;
- }
- - (IBAction)onBulkDiscount:(id)sender {
-
- #ifdef SCANNER_ORDER
-
- ScanDiscountViewController * vc =[[UIStoryboard storyboardWithName:@"SO" bundle:nil] instantiateViewControllerWithIdentifier:@"ScanDiscountViewController"];
-
-
-
- vc.bulk = true;
-
- vc.discount=0;
- // vc.price = 0;
- // vc.cart_id = [item_json valueForKey:@"cart_item_id"];//[NSString stringWithFormat:@"%d",[[item_json valueForKey:@"cart_item_id"] intValue]];
- // __block NSString* cartid=[item_json valueForKey:@"cart_item_id"];
- // vc.delegate = parentvc.self;
- // loginvc.modalPresentationStyle = UIModalPresentationFormSheet;//有三种状态,自己看看是哪种
- vc.onSetValue = ^(double price,double discount){
-
- bool bmodify=false;
- if(discount>0)
- bmodify=true;
-
-
- // __block UIAlertController * waitalert = [RAUtils waiting_alert:self title:@"Update Price" completion:^{
-
- PopWaitAlert* pop = [RAUtils waiting_pop:@"Update Price" completion:nil];
- [RANetwork request_scan_bulkdiscount:discount notes:nil completionHandler:^(NSMutableDictionary *result) {
- NSDictionary* cart_json = result;
-
- // [waitalert dismissViewControllerAnimated:YES completion:^{
- [pop hide];
- if([[cart_json valueForKey:@"result"] intValue]==2)
- {
-
- [self reload_data];
-
- #ifdef RA_NOTIFICATION
- [ActiveViewController Notify:@"OrderListViewController" Message:RA_NOTIFICATION_RELOAD_DATA];
- #else
- AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
- [((MainViewController*)appDelegate.main_vc) reloadOrder:true immediately:false];
- #endif
- }
- else
- {
- [RAUtils message_box:@"Update Price" message:[cart_json valueForKey:@"err_msg"] completion:nil] ;
- }
- // }];
-
-
-
-
-
-
- }];
- // }];
-
-
- };
-
- UINavigationController* navi = [[UINavigationController alloc] initWithRootViewController:vc] ;
-
-
-
-
-
- // [self hackModalSheetSize:CGSizeMake(450, 200) ofVC:navi];
-
- navi.modalPresentationStyle = UIModalPresentationFormSheet;//有三种状态,自己看看是哪种
- [self presentViewController:navi animated:YES completion:^{
-
- // navi.view.superview.bounds = CGRectMake(0, 0, 480, 320);
-
- DebugLog(@"EditModelPriceViewController present.........");
-
- // self.btop = false;
- // <#code#>
- }];
-
- #endif
- }
- - (IBAction)onChangePrice:(id)sender {
-
- #ifdef SCANNER_ORDER
- AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
-
- if(RASingleton.sharedInstance.scan_cart ==nil)
- {
- // NSData* json =[NSData dataWithContentsOfFile:[[NSBundle mainBundle] pathForResource:URL_SO_CART ofType:@"json" ]];
- NSMutableDictionary* cartTemplate=[OLDataProvider loadScanTemplate:@"scan_cart.json"];
- RASingleton.sharedInstance.scan_cart=cartTemplate;//[[RAConvertor data2dict:json] mutableCopy];
- }
-
-
- NSDictionary* price_group = [RADataProvider get_price_group:appDelegate.price_group];
- UIAlertController *alertControl = [UIAlertController alertControllerWithTitle:@"Change Price Type" message:nil preferredStyle:UIAlertControllerStyleAlert];
- UIAlertAction *action1 = [UIAlertAction actionWithTitle:price_group[@"price_0"][@"display"] style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
- self.btnBulkDiscount.hidden = true;
- // self.btnPrice.titleLabel.text = @"FOB CTNR";
- [self.btnPrice setTitle: price_group[@"price_0"][@"display"] forState:UIControlStateNormal];
- RASingleton.sharedInstance.price_type=0;
- NSMutableDictionary* section = [RASingleton.sharedInstance.scan_cart[@"section_0"] mutableCopy];
- int count = [section[@"count"] intValue];
- for(int i=0;i<count;i++)
- {
- NSMutableDictionary* item = [section[[NSString stringWithFormat:@"item_%d",i]] mutableCopy];
- item[@"price"]=item[ price_group[@"price_0"][@"name"]];
- item[@"unit_price"]= item[price_group[@"price_0"][@"name"]];
- item[@"erp_unit_price"]= item[price_group[@"price_0"][@"name"]];
- item[@"discount"]=@(0);
- item[@"note"]=@"";
- section[[NSString stringWithFormat:@"item_%d",i]] = item;
- }
- RASingleton.sharedInstance.scan_cart[@"section_0"] = section;
- RASingleton.sharedInstance.scan_cart[@"price_type"] = @0;
- [OLDataProvider saveScanCart:RASingleton.sharedInstance.scan_cart];
- [self.cartIndicatorBar removeFromSuperview];
- self.cartIndicatorBar = [self setupCartIndicatorBar];
- [self.view addSubview:self.cartIndicatorBar];
- [self reload_data];
- }];
- UIAlertAction *action2 = [UIAlertAction actionWithTitle:price_group[@"price_1"][@"display"] style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
- self.btnBulkDiscount.hidden = false;
- [self.btnPrice setTitle: price_group[@"price_1"][@"display"] forState:UIControlStateNormal];
- RASingleton.sharedInstance.price_type=1;
- NSMutableDictionary* section = [RASingleton.sharedInstance.scan_cart[@"section_0"] mutableCopy];
- int count = [section[@"count"] intValue];
- for(int i=0;i<count;i++)
- {
- NSMutableDictionary* item = [section[[NSString stringWithFormat:@"item_%d",i]] mutableCopy];
-
- NSString * unit_price;
-
- if(item [@"net_price"])
- unit_price=item[price_group[@"price_3"][@"name"]];
- else if(item [@"special_price"])
- {
- unit_price= item[price_group[@"price_2"][@"name"]];
- }
- else
- {
- unit_price= item[price_group[@"price_1"][@"name"]];
- }
- if([unit_price isEqualToString:@"N/A"])
- unit_price = @"0";
- else
- {
-
- unit_price = [NSString stringWithFormat:@"%.2f", [unit_price doubleValue]];
- }
-
-
- item[@"unit_price"] = unit_price;
- item[@"erp_unit_price"] = unit_price;
-
- item[@"price"]= unit_price;//item[@"price1"];
- // item[@"unit_price"]= item[@"price1"];
- section[[NSString stringWithFormat:@"item_%d",i]] = item;
- }
- RASingleton.sharedInstance.scan_cart[@"price_type"] = @1;
- RASingleton.sharedInstance.scan_cart[@"section_0"] = section;
- [OLDataProvider saveScanCart:RASingleton.sharedInstance.scan_cart];
- [self.cartIndicatorBar removeFromSuperview];
- self.cartIndicatorBar = [self setupCartIndicatorBar];
- [self.view addSubview:self.cartIndicatorBar];
- [self reload_data];
- }];
-
- //%25 逻辑应HMLG要求去掉
- /*
- UIAlertAction *action3 = [UIAlertAction actionWithTitle:@"%25" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
- // self.btnPrice.titleLabel.text = @"%25";
- [self.btnPrice setTitle: @"%25" forState:UIControlStateNormal];
- RASingleton.sharedInstance.price_type=2;
- NSMutableDictionary* section = [RASingleton.sharedInstance.scan_cart[@"section_0"] mutableCopy];
- int count = [section[@"count"] intValue];
- for(int i=0;i<count;i++)
- {
- NSMutableDictionary* item = [section[[NSString stringWithFormat:@"item_%d",i]] mutableCopy];
- item[@"price"]= item[price_group[@"price_2"][@"name"]];
- item[@"unit_price"]= item[price_group[@"price_2"][@"name"]];
- section[[NSString stringWithFormat:@"item_%d",i]] = item;
- }
- RASingleton.sharedInstance.scan_cart[@"section_0"] = section;
- RASingleton.sharedInstance.scan_cart[@"price_type"] = @2;
- [OLDataProvider saveScanCart:RASingleton.sharedInstance.scan_cart];
-
- [self.cartIndicatorBar removeFromSuperview];
- self.cartIndicatorBar = [self setupCartIndicatorBar];
- [self.view addSubview:self.cartIndicatorBar];
- [self reload_data];
- }];
- */
- UIAlertAction *alertCancel = [UIAlertAction actionWithTitle:@"Cancel" style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
-
- }];
-
- [alertControl addAction:action1];
- [alertControl addAction:action2];
- // [alertControl addAction:action3];
-
- // [alertControl addAction:alertthree];
- [alertControl addAction:alertCancel];
-
- [self presentViewController:alertControl animated:YES completion:nil];
- #endif
- }
- -(void) newoloorder
- {
-
- NSString *orderdir =[OLDataProvider getScanPath];
- AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
- appDelegate.can_set_cart_price = true;
- appDelegate.can_see_price = true;
-
-
- {
-
-
- if(appDelegate.user_type== USER_ROLE_EMPLOYEE)
- {
-
-
-
- UIAlertController *alertControl = [UIAlertController alertControllerWithTitle:@"Select Customer type" message:@"" preferredStyle:UIAlertControllerStyleAlert];
- //block代码块取代了delegate
-
-
-
- UIAlertAction *actionOne = [UIAlertAction actionWithTitle:@"Existing Customer" style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action) {
-
- NSMutableDictionary* dict = nil;
-
- // NSMutableDictionary* dict = nil;
-
- NSString* ordertemplate = nil;
- if([RADataProvider getSiteHasERP])
- ordertemplate =@"e_order.json";
- else
- ordertemplate =@"e_order_noerp.json";
-
- dict=[OLDataProvider loadScanTemplate:ordertemplate];
-
- NSString *orderPath = [orderdir stringByAppendingPathComponent:@"order.json"];
-
-
-
- [RAUtils dicttofile:orderPath dict:dict];
-
-
-
-
- NSString *contactpath = [orderdir stringByAppendingPathComponent:@"contact.json"];
-
-
-
- [RAUtils dicttofile:contactpath dict:appDelegate.customerInfo];
-
- [self scanPlaceOrder];
-
- }];
-
- UIAlertAction *alert2 = [UIAlertAction actionWithTitle:@"New customer" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
- NSMutableDictionary* dict = nil;
- dict=[OLDataProvider loadScanTemplate:@"n_order.json"];
-
- NSString *orderPath = [orderdir stringByAppendingPathComponent:@"order.json"];
-
-
-
- [RAUtils dicttofile:orderPath dict:dict];
-
-
-
-
- NSString *contactpath = [orderdir stringByAppendingPathComponent:@"contact.json"];
-
-
-
- [RAUtils dicttofile:contactpath dict:appDelegate.customerInfo];
- [self scanPlaceOrder];
- }];
- UIAlertAction *alertthree = [UIAlertAction actionWithTitle:@"Cancel" style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
- appDelegate.order_code = nil;
- DebugLog(@"No");
- }];
- [alertControl addAction:actionOne];
- [alertControl addAction:alert2];
- [alertControl addAction:alertthree];
-
- //UIAlertControllerStyle类型为UIAlertControllerStyleAlert可以添加addTextFieldWithConfigurationHandler:^(UITextField *textField)
-
-
- [self presentViewController:alertControl animated:YES completion:nil];
-
- DebugLog(@"%@",self.edit_select_arr);
-
- }
- else
- {
- NSMutableDictionary* dict = nil;
-
- if([appDelegate.customerInfo[@"customer_cid"] stringValue].length ==0 )
- {
- dict=[OLDataProvider loadScanTemplate:@"nc_order.json"];
- }
- else
- dict=[OLDataProvider loadScanTemplate:@"c_order.json"];
-
- NSString *orderPath = [orderdir stringByAppendingPathComponent:@"order.json"];
-
-
-
- [RAUtils dicttofile:orderPath dict:dict];
-
-
-
-
- NSString *contactpath = [orderdir stringByAppendingPathComponent:@"contact.json"];
-
-
-
- [RAUtils dicttofile:contactpath dict:appDelegate.customerInfo];
- [self scanPlaceOrder];
- }
-
- // NSMutableDictionary* dict=[OLDataProvider loadScanTemplate:@"scan_order.json"];
-
-
-
- }
- // MainViewController * mainvc=(MainViewController * )appDelegate.main_vc;
- // mainvc.btnScan.enabled = true;
-
- // [appDelegate updateScanButton:true];
-
-
- }
- -(void) newoloorder1
- {
- AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
- appDelegate.can_set_cart_price = true;
- appDelegate.can_see_price = true;
-
- // NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
- // NSString *documents = [paths objectAtIndex:0];
-
- {
-
-
- NSString *orderdir =[OLDataProvider getScanPath];
- if(appDelegate.user_type== USER_ROLE_EMPLOYEE)
- {
-
-
-
- UIAlertController *alertControl = [UIAlertController alertControllerWithTitle:@"Select Customer type" message:@"" preferredStyle:UIAlertControllerStyleAlert];
- //block代码块取代了delegate
-
-
-
- UIAlertAction *actionOne = [UIAlertAction actionWithTitle:@"Existing Customer" style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action) {
-
- NSMutableDictionary* dict = nil;
-
- NSString* ordertemplate = nil;
- if([RADataProvider getSiteHasERP])
- ordertemplate =@"e_order.json";
- else
- ordertemplate =@"e_order_noerp.json";
-
- dict=[OLDataProvider loadScanTemplate:ordertemplate];
-
- NSString *orderPath = [orderdir stringByAppendingPathComponent:@"order.json"];
-
-
-
- [RAUtils dicttofile:orderPath dict:dict];
-
-
-
-
- NSString *contactpath = [orderdir stringByAppendingPathComponent:@"contact.json"];
-
-
-
- [RAUtils dicttofile:contactpath dict:appDelegate.customerInfo];
-
- [self scanPlaceOrder];
-
- }];
-
- UIAlertAction *alert2 = [UIAlertAction actionWithTitle:@"New customer" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
- NSMutableDictionary* dict = nil;
- dict=[OLDataProvider loadScanTemplate:@"n_order.json"];
-
- NSString *orderPath = [orderdir stringByAppendingPathComponent:@"order.json"];
-
-
-
- [RAUtils dicttofile:orderPath dict:dict];
-
-
-
-
- NSString *contactpath = [orderdir stringByAppendingPathComponent:@"contact.json"];
-
-
-
- [RAUtils dicttofile:contactpath dict:appDelegate.customerInfo];
- [self scanPlaceOrder];
- }];
- UIAlertAction *alertthree = [UIAlertAction actionWithTitle:@"Cancel" style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
- appDelegate.order_code = nil;
- DebugLog(@"No");
- }];
- [alertControl addAction:actionOne];
- [alertControl addAction:alert2];
- [alertControl addAction:alertthree];
-
- //UIAlertControllerStyle类型为UIAlertControllerStyleAlert可以添加addTextFieldWithConfigurationHandler:^(UITextField *textField)
-
-
- [self presentViewController:alertControl animated:YES completion:nil];
-
- DebugLog(@"%@",self.edit_select_arr);
-
- }
- else
- {
- NSMutableDictionary* dict = nil;
- if([appDelegate.customerInfo[@"customer_cid"] stringValue].length ==0 )
- {
- dict=[OLDataProvider loadScanTemplate:@"nc_order.json"];
- }
- else
- dict=[OLDataProvider loadScanTemplate:@"c_order.json"];
-
- NSString *orderPath = [orderdir stringByAppendingPathComponent:@"order.json"];
-
-
-
- [RAUtils dicttofile:orderPath dict:dict];
-
-
-
-
- NSString *contactpath = [orderdir stringByAppendingPathComponent:@"contact.json"];
-
-
-
- [RAUtils dicttofile:contactpath dict:appDelegate.customerInfo];
- [self scanPlaceOrder];
- }
-
- // NSMutableDictionary* dict=[OLDataProvider loadScanTemplate:@"scan_order.json"];
-
-
-
- }
- // MainViewController * mainvc=(MainViewController * )appDelegate.main_vc;
- // mainvc.btnScan.enabled = true;
-
- // [appDelegate updateScanButton:true];
-
-
- }
- -(void)newScanOrder1
- {
-
- //
- // AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
- //
- //
- // if(appDelegate.order_code.length>0)
- // {
- //// 当前订单先关闭
- //// [OLDataProvider deleteScanOrder:appDelegate.order_code];
- // appDelegate.order_code = nil;
- // appDelegate.customerInfo = nil;
- // RASingleton.sharedInstance.scan_cart = nil;
- // appDelegate.contact_id = nil;
- //// [appDelegate updateScanButton:false];
- //
- // [appDelegate update_count_mark];
- // [appDelegate closeOrder];
- //
- // }
- //
- //
- {
- [self newoloorder1];
-
- }
- }
- -(void)newScanOrder
- {
-
-
- // AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
- {
- [self newoloorder];
-
- }
- }
- -(void)placeOrder
- {
- AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
- #ifndef SCANNER_ORDER
- if (appDelegate.user_type == USER_ROLE_CUSTOMER && appDelegate.customer_type == CustomerTypeStore) {
-
-
- if (![RASingleton sharedInstance].permissions_edit_order) {
-
- return;
- }
-
- }
- #endif
- // NSMutableArray* checked = [[NSMutableArray alloc] init];
-
- bool have_free = false;
-
- long count = self.content_arr.count;//[[self.content_data valueForKey:@"count"] intValue];
-
-
- if(count==0)
- {
- [RAUtils message_box:@"Cart Is Empty." message:@"Add some model first." completion:nil] ;
- return;
- }
- for(int i=0;i<count;i++)
- {
- NSMutableDictionary * item_json = [self.content_arr[i] mutableCopy];//[[self.content_data objectForKey:[NSString stringWithFormat:@"item_%d",i]] mutableCopy];
- // bool check = [[item_json valueForKey:@"check"] boolValue];
- NSString* product_id = [item_json valueForKey:@"product_id"];
- // if(check)
- // {
- // [checked addObject:[NSNumber numberWithInt:[[item_json valueForKey:@"cart_item_id"] intValue]]];
- //
- // }
- if(product_id.length==0)
- {
- [RAUtils message_box:@"No Such Model" message:@"Some models in cart does not exist, you must remove them before place order." completion:nil] ;
- return;
- }
- bool is_free = [[item_json valueForKey:@"is_free"]boolValue];
- if(is_free)
- have_free=true;
- }
- #ifdef SCANNER_ORDER
-
- if(appDelegate.bLogin==false)
- {
- LoginViewController * loginvc =[[UIStoryboard storyboardWithName:@"Main" bundle:nil] instantiateViewControllerWithIdentifier:@"LoginViewController"];
- // loginvc.delegate = self;
- // loginvc.modalPresentationStyle = UIModalPresentationFormSheet;//有三种状态,自己看看是哪种
-
- loginvc.returnValue = ^(bool blogin){
-
-
- if(blogin)
- {
- AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
- if(appDelegate.order_code.length==0)
- {
- [self newScanOrder];
- }
-
- }
-
-
- };
-
- UINavigationController* navi = [[UINavigationController alloc] initWithRootViewController:loginvc] ;
-
-
-
-
-
- // [self hackModalSheetSize:CGSizeMake(450, 200) ofVC:navi];
-
- navi.modalPresentationStyle = UIModalPresentationFormSheet;//有三种状态,自己看看是哪种
- [self presentViewController:navi animated:YES completion:^{
-
- // navi.view.superview.bounds = CGRectMake(0, 0, 480, 320);
-
- DebugLog(@"LoginViewController present.........");
-
- // self.btop = false;
- // <#code#>
- }];
- return;
- }
- else
- {
-
- NSString *orderdir =[OLDataProvider getScanPath];
- NSString *orderPath = [orderdir stringByAppendingPathComponent:@"order.json"];
-
- if(appDelegate.order_code.length==0 )
- {
- [self newScanOrder];
- }
- else if( ![[NSFileManager defaultManager] fileExistsAtPath:orderPath])
- {
- [self newScanOrder1];
- }
- else
- {
-
- [self scanPlaceOrder];
- //place order
- }
- return;
- }
-
-
-
-
-
-
-
-
-
- // if(RASingleton.sharedInstance.enable_OfflineOrder)
- // {
- //
- // NSMutableDictionary * params= [[NSMutableDictionary alloc] init];
- // // NSString * string = [checked componentsJoinedByString:@","];
- // // [params setValue:string forKey:@"cart2Checkbox"];
- //
- //// NSData* data=[NSData dataWithContentsOfFile:[[NSBundle mainBundle] pathForResource:URL_SO_ORDER ofType:@"json" ]];
- //// NSError *error=nil;
- //// NSMutableDictionary* dict=[[NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableLeaves error:&error] mutableCopy];
- ////
- //
- //
- // NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
- // NSString *documents = [paths objectAtIndex:0];
- //
- //
- //
- // NSString *orderdir = [documents stringByAppendingPathComponent:appDelegate.order_code];
- //
- // NSMutableDictionary* dict= [[RAUtils dictfromfile:[orderdir stringByAppendingPathComponent:@"order.json"]] mutableCopy];
- //
- // int section_count = [dict[@"section_count"] intValue];
- //
- // for(int i=0;i<section_count;i++)
- // {
- // NSMutableDictionary* section = [dict[[NSString stringWithFormat:@"section_%d",i]] mutableCopy];
- // NSString* title = section[@"title"];
- // if([title isEqualToString:@"Model Information"])
- // {
- //
- // NSMutableDictionary* cart_section = RASingleton.sharedInstance.scan_cart[@"section_0"];
- // int cart_count = [cart_section[@"count"] intValue];
- // for(int j=0;j<cart_count;j++)
- // {
- // NSMutableDictionary* cart_item = [cart_section[[NSString stringWithFormat:@"item_%d",j]] mutableCopy];
- // cart_item[@"control"]=@"model";
- // section[[NSString stringWithFormat:@"item_%d",j]] = cart_item;
- //
- // }
- // section[@"count"] = @(cart_count);
- // dict[[NSString stringWithFormat:@"section_%d",i]] = section;
- // }
- // else
- // if([title isEqualToString:@"Customer"])
- // {
- //
- // int scount = [section[@"count"] intValue];
- // for(int j=0;j<scount;j++)
- // {
- // NSMutableDictionary * item = [section[[NSString stringWithFormat:@"item_%d",j]] mutableCopy];
- // NSString * name = item[@"name"];
- //
- // if([name isEqualToString:@"business_card"])
- // {
- // NSArray*arr =[RAConvertor string2arr:appDelegate.customerInfo[name] separator:@","];
- // for(int l=0;l<arr.count;l++)
- // {
- // item[[NSString stringWithFormat:@"img_url_%d",l] ]=arr[l];
- // }
- // }
- // else
- // item[@"value"]=appDelegate.customerInfo[name];
- //
- // section[[NSString stringWithFormat:@"item_%d",j]] = item;
- // }
- //
- //// NSDictionary* item_0=@{@"control":@"text",@"name":@"customer_cid",@"aname":@"Contact",@"value":appDelegate.contact_id};
- // dict[[NSString stringWithFormat:@"section_%d",i]] = section;
- //
- //
- // }
- // else
- // if([title isEqualToString:@"Remarks Content"])
- // {
- //
- // int scount = [section[@"count"] intValue];
- // for(int j=0;j<scount;j++)
- // {
- // NSMutableDictionary * item = [section[[NSString stringWithFormat:@"item_%d",j]] mutableCopy];
- // NSString * name = item[@"name"];
- //
- //
- // if([name isEqualToString:@"comments"])
- // {
- // item[@"value"] = RASingleton.sharedInstance.scan_cart[@"general_note"];
- // section[[NSString stringWithFormat:@"item_%d",j]] = item;
- // }
- //
- //
- // }
- //
- // // NSDictionary* item_0=@{@"control":@"text",@"name":@"customer_cid",@"aname":@"Contact",@"value":appDelegate.contact_id};
- // dict[[NSString stringWithFormat:@"section_%d",i]] = section;
- //
- //
- // }
- // else if([title isEqualToString:@"Order Total"])
- // {
- //
- // int scount = [section[@"count"] intValue];
- // for(int j=0;j<scount;j++)
- // {
- // NSMutableDictionary * item = [section[[NSString stringWithFormat:@"item_%d",j]] mutableCopy];
- // NSString * name = item[@"name"];
- //
- //
- // if([name isEqualToString:@"totalPrice"])
- // {
- // item[@"value"] = [NSString stringWithFormat:@"%.2f",self.total];
- // section[[NSString stringWithFormat:@"item_%d",j]] = item;
- // }
- //
- //
- // }
- //
- //// NSDictionary* item_0=@{@"control":@"text",@"name":@"customer_cid",@"aname":@"Contact",@"value":appDelegate.contact_id};
- // dict[[NSString stringWithFormat:@"section_%d",i]] = section;
- //
- //
- //
- // }
- //
- //
- //
- //
- // }
- //
- //// NSString *path = NSTemporaryDirectory();
- ////
- //// NSString* file=[NSString stringWithFormat:@"SO_%@.json",appDelegate.order_code];
- //// NSString *filePath = [path stringByAppendingPathComponent:file];
- ////
- ////
- ////
- // [RAUtils dicttofile:[orderdir stringByAppendingPathComponent:@"order.json"] dict:dict];
- //
- // CreateOrderViewController * orderinfoVC = [[CreateOrderViewController alloc] initWithNibName:@"CommonEditor.iPad" bundle:nil];
- //
- //
- //
- // orderinfoVC.disable_dropdown_refresh=true;
- // orderinfoVC.url_type = URL_FILE;
- // orderinfoVC.request_url=[orderdir stringByAppendingPathComponent:@"order.json"];
- //
- // orderinfoVC.params = params;
- // orderinfoVC.title=@"";
- // orderinfoVC.delegate=self;
- // //
- // // if(checked.count==count)
- // // {
- // // orderinfoVC.have_tail = true
- // // }
- //
- // [self.navigationController pushViewController:orderinfoVC animated:true];
- //
- // return;
- // }
- #endif
-
- //#ifdef BACKORDER_PROCESS
- // if (self.back_order_flag) {
- //
- // NSMutableDictionary * params= [[NSMutableDictionary alloc] init];
- // [params setObject:@(0) forKey:@"step"];
- //
- //
- // RAOrderEditorViewController *orderEditorVC =[[UIStoryboard storyboardWithName:@"ERP_Mobile_Order" bundle:nil] instantiateViewControllerWithIdentifier:@"RAOrderEditorViewController"];
- //
- //
- // //[[RAOrderEditorViewController alloc] initWithNibName:@"CommonEditor.iPad" bundle:nil];
- //
- // orderEditorVC.disable_dropdown_refresh=true;
- // orderEditorVC.url_type = URL_REMOTE;
- // orderEditorVC.request_url=URL_CARTDELIVERY;
- // orderEditorVC.params = params;
- // orderEditorVC.delegate=self;
- // orderEditorVC.title=@"";
- // [self.navigationController pushViewController:orderEditorVC animated:true];
- //
- // }
- // else
- //#endif
- // {
- // NSMutableDictionary * params= [[NSMutableDictionary alloc] init];
- // // NSString * string = [checked componentsJoinedByString:@","];
- // // [params setValue:string forKey:@"cart2Checkbox"];
- //
- //
- //
- //
- //
- // CreateOrderViewController * orderinfoVC = [[CreateOrderViewController alloc] initWithNibName:@"CommonEditor.iPad" bundle:nil];
- //
- // orderinfoVC.disable_dropdown_refresh=true;
- // orderinfoVC.url_type = URL_REMOTE;
- // orderinfoVC.request_url=URL_CARTDELIVERY;
- //
- // orderinfoVC.params = params;
- // orderinfoVC.title=@"";
- // orderinfoVC.delegate=self;
- // //
- // // if(checked.count==count)
- // // {
- // // orderinfoVC.have_tail = true
- // // }
- //
- // [self.navigationController pushViewController:orderinfoVC animated:true];
- // }
-
- }
- - (BOOL)textFieldShouldBeginEditing:(UITextField *)textField
- {
- return NO;
- }
- - (IBAction)onScanDiscount:(UIButton*)sender {
-
-
- #ifdef SCANNER_ORDER
-
- UITableViewCell* cell =(UITableViewCell*) sender.superview.superview;
-
- NSIndexPath * indexPath = [self.itemListTable indexPathForCell:cell];
-
- UIViewController* parentvc=self;
-
-
- // EditModelPriceViewController
-
- ScanDiscountViewController * vc =[[UIStoryboard storyboardWithName:@"SO" bundle:nil] instantiateViewControllerWithIdentifier:@"ScanDiscountViewController"];
-
-
- NSMutableDictionary * item_json = nil;
- if (self.back_order_flag) {
- item_json = [[self itemJsonAtIndexPath:indexPath] mutableCopy];
- } else {
- item_json = [self.content_arr[indexPath.row] mutableCopy];//[[self.content_data objectForKey:[NSString stringWithFormat:@"item_%ld",(long)indexPath.row]] mutableCopy];
-
- }
-
-
-
-
- vc.discount=[[item_json valueForKey:@"discount"] floatValue];
- vc.price = [[item_json valueForKey:@"unit_price"] floatValue];
- vc.cart_id = [item_json valueForKey:@"cart_item_id"];//[NSString stringWithFormat:@"%d",[[item_json valueForKey:@"cart_item_id"] intValue]];
- __block NSString* cartid=[item_json valueForKey:@"cart_item_id"];
- // vc.delegate = parentvc.self;
- // loginvc.modalPresentationStyle = UIModalPresentationFormSheet;//有三种状态,自己看看是哪种
- vc.onSetValue = ^(double price,double discount){
-
- bool bmodify=false;
- if(discount>0)
- bmodify=true;
-
-
- // __block UIAlertController * waitalert = [RAUtils waiting_alert:self title:@"Update Price" completion:^{
- PopWaitAlert* pop = [RAUtils waiting_pop:@"Update Price" completion:nil];
- [RANetwork request_update_cart_modelprice:cartid price:price discount:discount notes:nil completionHandler:^(NSMutableDictionary *result) {
- NSDictionary* cart_json = result;
-
- // [waitalert dismissViewControllerAnimated:YES completion:^{
- [pop hide];
- if([[cart_json valueForKey:@"result"] intValue]==2)
- {
-
- [self reload_data];
-
- #ifdef RA_NOTIFICATION
- [ActiveViewController Notify:@"OrderListViewController" Message:RA_NOTIFICATION_RELOAD_DATA];
- #else
- AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
- [((MainViewController*)appDelegate.main_vc) reloadOrder:true immediately:false];
- #endif
- }
- else
- {
- [RAUtils message_box:@"Update Price" message:[cart_json valueForKey:@"err_msg"] completion:nil] ;
- }
- // }];
-
-
-
-
-
-
- }];
- // }];
-
-
- };
-
- UINavigationController* navi = [[UINavigationController alloc] initWithRootViewController:vc] ;
-
-
-
-
-
- // [self hackModalSheetSize:CGSizeMake(450, 200) ofVC:navi];
-
- navi.modalPresentationStyle = UIModalPresentationFormSheet;//有三种状态,自己看看是哪种
- [parentvc presentViewController:navi animated:YES completion:^{
-
- // navi.view.superview.bounds = CGRectMake(0, 0, 480, 320);
-
- DebugLog(@"EditModelPriceViewController present.........");
-
- // self.btop = false;
- // <#code#>
- }];
- #endif
-
- }
- -(void)refresh_total
- {
- self.total=0;
-
- self.total_carton=0;
- self.total_cuft=0;
- self.total_weight=0;
- self.total_QTY=0;
- self.total_item=0;
- self.surcharge=0;
-
- #ifdef SCANNER_ORDER
-
- NSString* pricename;
-
- NSDictionary *addressDic = [[NSUserDefaults standardUserDefaults] valueForKey:@"ScanAddress"];
- NSString* servername = [addressDic objectForKey:@"show_name"];
- NSArray* arrsn = [RAConvertor string2arr:servername separator:@","];
-
- NSString * shortname = arrsn[0];
- if(shortname.length==0)
- shortname = servername;
-
- AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
-
- NSDictionary* price_group = [RADataProvider get_price_group:appDelegate.price_group];
-
- switch(RASingleton.sharedInstance.price_type )
- {
- case 0: pricename =price_group[@"price_0"][@"display"];//@"DDP";//[NSString stringWithFormat:@"%@_DDP",shortname];
- break;;
- case 1: pricename =price_group[@"price_1"][@"display"];//@"WHSE";//[NSString stringWithFormat:@"%@_WHSE",shortname];;
- break;;
- // case 2: pricename = @"25%";
- // break;
- }
-
- [self.btnPrice setTitle:pricename forState:UIControlStateNormal];
- // self.cartIndicatorBar = [self setupCartIndicatorBar];
- [self.cartIndicatorBar removeFromSuperview];
- self.cartIndicatorBar = [self setupCartIndicatorBar];
- [self.view addSubview:self.cartIndicatorBar];
-
- #endif
-
- long count =self.content_arr.count;//[[self.content_data valueForKey:@"count"] intValue];
- for(int i=0;i<count;i++)
- {
- NSMutableDictionary * item_json = [self.content_arr[i] mutableCopy];// [[self.content_data objectForKey:[NSString stringWithFormat:@"item_%d",i]] mutableCopy];
-
- bool bcheck = [[item_json valueForKey:@"check"]boolValue];
-
- if(bcheck)
- {
- double unitprice = [[item_json valueForKey:@"unit_price"] doubleValue];
- double discount = [[item_json valueForKey:@"discount"] doubleValue];
-
- int count=[[item_json valueForKey:@"count"] intValue];
-
- double totalprice =count*unitprice*(1-discount/100.0);
-
- double cuft=[[item_json valueForKey:@"cuft"] doubleValue];
- double weight=[[item_json valueForKey:@"weight"] doubleValue];
- int carton=/*count**/[[item_json valueForKey:@"carton"] intValue];
-
- int item_count=1;
-
- int item_qty=1;
- // NSDictionary * bundle_item =[item_json objectForKey:@"combine"];
-
- double msurcharge =0;
- // remove net price
- // if(RASingleton.sharedInstance.price_type==1)
- // {
- // if([item_json[@"special_price"] boolValue])
- // {
- // msurcharge=([item_json[price_group[@"price_3"][@"name"]] doubleValue]-[item_json[price_group[@"price_2"][@"name"]] doubleValue])*count*(1-discount/100.0);
- // if(msurcharge<0)
- // msurcharge = 0;
- // }
- // else
- // {
- // msurcharge=([item_json[price_group[@"price_3"][@"name"]] doubleValue]-[item_json[price_group[@"price_1"][@"name"]] doubleValue])*count*(1-discount/100.0);
- // if(msurcharge<0)
- // msurcharge = 0;
- //
- //
- // }
- // }
-
- // double dprice=0;
-
- // if(bundle_item!=nil)
- // {
- // // int citem=0;
- //
- // int bcount=[[bundle_item valueForKey:@"count"] intValue];
- // for(int bc=0;bc<bcount;bc++)
- // {
- // NSDictionary * bitem = [bundle_item objectForKey:[NSString stringWithFormat:@"item_%d",bc]];
- // int modulus= [[bitem valueForKey:@"modulus"] intValue];
- // // citem+= modulus;
- // item_count+=1;
- // item_qty+=modulus;
- // double uprice= [[bitem valueForKey:@"unit_price"]doubleValue];
- // dprice+= uprice*modulus*count;
- //
- // }
- // }
- // totalprice+= dprice;
-
-
- self.surcharge+=msurcharge;
- self.total+=totalprice;
- self.total_cuft+=cuft;
- self.total_carton+=carton;
- self.total_weight+=weight;
- self.total_item+=item_count;
- self.total_QTY+=(item_qty)*count;
-
- }
-
-
-
- }
-
-
- NSString* subtotal = [RAConvertor currencyNumber:self.total];//[NSString stringWithFormat:@"$%@",];
- NSString* subcuft = [NSString stringWithFormat:@"%.2f",self.total_cuft];
- NSString* subcarton = [NSString stringWithFormat:@"%d",self.total_carton];
- NSString* subweight = [NSString stringWithFormat:@"%.2f lbs",self.total_weight];
- NSString* surcharge = [RAConvertor currencyNumber:self.surcharge];//[NSString stringWithFormat:@"$%@",];
- NSString* totalprice = [RAConvertor currencyNumber:(self.total+self.surcharge)];//[NSString stringWithFormat:@"$%@",];
-
- NSString* subitems = [NSString stringWithFormat:@"%d",self.total_item];
-
- NSString* subqty = [NSString stringWithFormat:@"%d",self.total_QTY];
- #ifndef SCANNER_ORDER
- AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
- if(appDelegate.can_see_price&&appDelegate.price_hidden==false)
- {
-
- }
- else
- {
- subtotal=nil;
-
- }
-
- #else
- // AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
- [OLDataProvider updateScanOrder:appDelegate.order_code];
- #endif
-
- self.labelTotalSurcharge.text = surcharge;
- self.labelTotalPrice.text = totalprice;
- self.labelTotal.text=subtotal;
- self.label_cuft.text=subcuft;
- self.label_carton.text=subcarton;
- self.label_weight.text=subweight;
- self.label_items.text = subitems;
- self.label_qty.text = subqty;
- self.label_notes.text = [self.notes stringByReplacingOccurrencesOfString:@"\n" withString:@" "];
-
- }
- - (IBAction)onEditGeneralNotes:(id)sender {
- #ifndef SCANNER_ORDER
- if (![self isOrderAvailable]) {
- return;
- }
- #endif
- UIViewController* parentvc=self;
-
-
-
-
- CartGeneralNotesViewController * vc =[[UIStoryboard storyboardWithName:@"ERP_Mobile_Cart" bundle:nil] instantiateViewControllerWithIdentifier:@"CartGeneralNotesViewController"];
-
-
- // NSMutableDictionary * item_json = [self.content_arr[indexPath.row ] mutableCopy];// [[self.content_data objectForKey:[NSString stringWithFormat:@"item_%ld",(long)indexPath.row]] mutableCopy];
-
-
-
-
- vc.notes=self.notes;
-
-
- // vc.delegate = parentvc.self;
- // loginvc.modalPresentationStyle = UIModalPresentationFormSheet;//有三种状态,自己看看是哪种
- vc.onSetValue = ^(NSString* notes){
- self.notes = notes;
-
- [self refresh_total];
- };
- //
-
- UINavigationController* navi = [[UINavigationController alloc] initWithRootViewController:vc] ;
-
-
-
-
-
- // [self hackModalSheetSize:CGSizeMake(450, 200) ofVC:navi];
-
- navi.modalPresentationStyle = UIModalPresentationFormSheet;//有三种状态,自己看看是哪种
- [parentvc presentViewController:navi animated:YES completion:^{
-
- // navi.view.superview.bounds = CGRectMake(0, 0, 480, 320);
-
- DebugLog(@"general notes editor present.........");
-
- // self.btop = false;
- // <#code#>
- }];
-
- }
- - (IBAction)OnCancelOrderClicked:(id)sender {
-
- }
- #pragma mark - Private
- - (BOOL)isOrderAvailable {
- AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
- if (appDelegate.order_code.length == 0) {
-
- UIAlertController *alertVC = [UIAlertController alertControllerWithTitle:@"Warning" message:@"please create a new order first" preferredStyle:UIAlertControllerStyleAlert];
- UIAlertAction *okAction = [UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
-
- }];
-
- [alertVC addAction:okAction];
-
- [self presentViewController:alertVC animated:YES completion:nil];
-
- return NO;
- }
- return YES;
- }
- #pragma mark - commoneditor controller delegate
- -(void) returnValue:(NSMutableDictionary *)value indexPath :(NSIndexPath*) indexPath
- {
- // [self reload_data];
- if([value[@"commitorder_logout"] boolValue])
- [self logout];
-
- [[self navigationController] setNavigationBarHidden:YES animated:NO];
- }
- #pragma mark - Table view data source
- - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath;
- {
- NSDictionary * item_json = nil;
- if (self.back_order_flag) {
- item_json = [self itemJsonAtIndexPath:indexPath];
- } else {
- item_json = self.content_arr[indexPath.row ];// [[self.content_data objectForKey:[NSString stringWithFormat:@"item_%ld",(long)indexPath.row]] mutableCopy];
-
- }
-
- NSString* notes =[item_json valueForKey:@"note"];
- if(notes.length>0)
- {
- return 146;
- }
- else
- return 120;
- }
- //- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
- //{
- // return 0;
- //}
- //- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section
- //{
- // return 0;
- //}
- //- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section
- //{
- // UIView* myView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, tableView.bounds.size.width, 0.0001)];
- // return myView;
- //
- //}
- //- (UIView *) tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
- //{
- // UIView* myView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, tableView.bounds.size.width, 0.0001)];
- //// myView.backgroundColor = [UIColor colorWithRed:0.10 green:0.68 blue:0.94 alpha:0.7];
- //// UILabel *titleLabel = [[UILabel alloc] initWithFrame:CGRectMake(10, 0, 90, 22)];
- //// titleLabel.textColor=[UIColor whiteColor];
- //// titleLabel.backgroundColor = [UIColor clearColor];
- //// if(section==0)
- //// titleLabel.text=NSLocalizedString(@"display_items", nil);
- //// else
- //// titleLabel.text=NSLocalizedString(@"hide_items", nil);
- //// [titleLabel sizeToFit];
- //// [myView addSubview:titleLabel];
- ////
- // return myView;
- //}
- //
- //- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {
- // if(section==0)
- // return nil;
- // else
- // return @"detail section";
- //}
- - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
- {
- if (self.back_order_flag) {
- return [[self.cart_json objectForKey:@"section_count"] integerValue];
- } else {
- return 1;
- }
- }
- - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
- {
- #ifdef SCANNER_ORDER
- return 0;
- #else
-
- if (self.back_order_flag) {
- return 50;
- } else {
- return 0;
- }
- #endif
- }
- - (UIView *) tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
- {
-
- #ifdef SCANNER_ORDER
- return nil;
- #else
-
- if (self.back_order_flag) {
- // UIView *header = [tableView dequeueReusableCellWithIdentifier:@"section_header_cell"];
- // UILabel *title_lb = [header viewWithTag:8520];
- UIView *header = [[UIView alloc] initWithFrame:CGRectMake(0, 0, CGRectGetWidth(tableView.bounds), 50.0f)];
- header.backgroundColor = [UIColor colorWithRed:128 / 255.0 green:95 / 255.0 blue:54 / 255.0 alpha:1];
- header.autoresizingMask = UIViewAutoresizingFlexibleWidth;
-
- UILabel *title_lb = [[UILabel alloc] initWithFrame:CGRectMake(10, 0, CGRectGetWidth(header.bounds) - 10, 50.0f)];
- title_lb.autoresizingMask = UIViewAutoresizingFlexibleWidth;
- title_lb.font = [UIFont systemFontOfSize:25.0f];
- title_lb.textColor = [UIColor whiteColor];
- [header addSubview:title_lb];
-
- title_lb.text = [self titleForSection:section];
- return header;
- } else {
- return nil;
- }
-
- #endif
- }
- #ifdef SCANNER_ORDER
- - (IBAction)onScanChangeCustomerType:(id)sender {
-
- return;
- // NSString *orderdir =[OLDataProvider getScanPath];
- //
- // UIAlertController *alertControl = [UIAlertController alertControllerWithTitle:@"Select Customer type" message:@"" preferredStyle:UIAlertControllerStyleAlert];
- // //block代码块取代了delegate
- //
- //
- //
- // UIAlertAction *actionOne = [UIAlertAction actionWithTitle:@"Existing Customer" style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action) {
- //
- // NSMutableDictionary* dict = nil;
- // NSString* ordertemplate = nil;
- // if([RADataProvider getSiteHasERP])
- // ordertemplate =@"e_order.json";
- // else
- // ordertemplate =@"e_order_noerp.json";
- //
- // dict=[OLDataProvider loadScanTemplate:ordertemplate];
- //
- // NSString *orderPath = [orderdir stringByAppendingPathComponent:@"order.json"];
- //
- //
- //
- // [RAUtils dicttofile:orderPath dict:dict];
- //
- //
- //
- //
- ////
- //// NSString *contactpath = [orderdir stringByAppendingPathComponent:@"contact.json"];
- ////
- ////
- ////
- //// [RAUtils dicttofile:contactpath dict:appDelegate.customerInfo];
- ////
- //// [self scanPlaceOrder];
- ////
- // }];
- //
- // UIAlertAction *alert2 = [UIAlertAction actionWithTitle:@"New customer" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
- // NSMutableDictionary* dict = nil;
- // dict=[OLDataProvider loadScanTemplate:@"n_order.json"];
- //
- // NSString *orderPath = [orderdir stringByAppendingPathComponent:@"order.json"];
- //
- //
- //
- // [RAUtils dicttofile:orderPath dict:dict];
- //
- //
- //
- ////
- ////
- //// NSString *contactpath = [orderdir stringByAppendingPathComponent:@"contact.json"];
- ////
- ////
- ////
- //// [RAUtils dicttofile:contactpath dict:appDelegate.customerInfo];
- //// [self scanPlaceOrder];
- // }];
- // UIAlertAction *alertthree = [UIAlertAction actionWithTitle:@"Cancel" style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
- // DebugLog(@"No");
- // }];
- // [alertControl addAction:actionOne];
- // [alertControl addAction:alert2];
- // [alertControl addAction:alertthree];
- //
- // //UIAlertControllerStyle类型为UIAlertControllerStyleAlert可以添加addTextFieldWithConfigurationHandler:^(UITextField *textField)
- //
- //
- // [self presentViewController:alertControl animated:YES completion:nil];
- //
- // DebugLog(@"%@",self.edit_select_arr);
-
- }
- #endif
- - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
- {
- if (self.back_order_flag) {
- return [self itemCountInSection:section];
- } else {
- // NSDictionary * item_json = [self.content_data objectForKey:@"items"];
- long count =self.content_arr.count;//[[self.content_data valueForKey:@"count"] intValue];
- return count;
- }
-
- }
- - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
- {
-
-
- // if(tableView==self.itemListTable)
- // {
-
- // AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
-
- NSString *CellIdentifier;
- #ifdef SCANNER_ORDER
- AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
- CellIdentifier = @"ScanCartItemCell";
- ScanCartItemCell * cell= [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
-
-
- NSDictionary * item_json = nil;//[self.content_data objectForKey:[NSString stringWithFormat:@"item_%ld",(long)indexPath.row]];
-
- item_json = [self itemJsonAtIndexPath:indexPath];
-
-
-
-
- NSString* notes = [item_json valueForKey:@"note"];
-
- if(notes.length>0)
- {
- cell.labelNotes.text = notes;
-
- }
- else
- {
- cell.labelNotes.text = nil;
-
- }
-
- NSString* description =[item_json valueForKey:@"description"];
- NSString* model =[item_json valueForKey:@"model"];
-
-
- NSString* dimension =[item_json valueForKey:@"dimension"] ;
- int count =[[item_json valueForKey:@"count"] intValue];
-
- int stockUom =[[item_json valueForKey:@"stockUom"] intValue];
-
-
- double unitprice=[[item_json valueForKey:@"unit_price"] doubleValue];
-
- double discount=[[item_json valueForKey:@"discount"] doubleValue];
- cell.discount = discount;
-
- if(appDelegate.user_type == USER_ROLE_CUSTOMER)
- {
- cell.btnScanDiscount.hidden = true;
- }
- else
- {
- switch(RASingleton.sharedInstance.price_type)
- {
- case 0: cell.btnScanDiscount.hidden = true;
- break;;
- case 1:
- {
- if(![item_json[@"special_price"] boolValue]&&![item_json[@"net_price"] boolValue])
- cell.btnScanDiscount.hidden = false;
- else
- cell.btnScanDiscount.hidden = true;
- }
- break;;
- // case 2: pricename = @"25%";
- // break;
- }
- }
-
-
- // NSString* product_id = [item_json valueForKey:@"product_id"];
- //
- //
- //
- //
- // CGRect frame = cell.frame;
- cell.labelMpack.text =[NSString stringWithFormat:@"Sold in QTY of:%d", stockUom];
-
-
-
-
- __weak typeof(self) weakSelf = self;
- cell.onReturnQTY=^(int qty,NSDictionary* ext)
- {
- int result = [[ext objectForKey:@"result"] intValue];
- BOOL refresh = [[ext objectForKey:@"refresh"] boolValue];
- if (result == 2 && refresh) {
- [self ReloadData];
- return;
- }
- NSMutableDictionary * item_json = nil;
- if (weakSelf.back_order_flag) {
- item_json = [[weakSelf itemJsonAtIndexPath:indexPath] mutableCopy];
- } else {
- item_json = [weakSelf.content_arr[indexPath.row] mutableCopy];//[[self.content_data objectForKey:[NSString stringWithFormat:@"item_%ld",(long)indexPath.row]] mutableCopy];
- }
- // int count=[[item_json valueForKey:@"count"] intValue];
- // if(count==qty)
- // return;
- if ([[ext valueForKey:@"result"] integerValue] == 8) {
- return ;
- }
- [item_json setValue:[NSString stringWithFormat:@"%d",qty] forKey:@"count"];
- double unit_cuft = [[item_json valueForKey:@"unit_cuft"] doubleValue];
- [item_json setValue:[NSString stringWithFormat:@"%f",unit_cuft*qty] forKey:@"cuft"];
- // [item_json setValue:[ext valueForKey:@"carton"] forKey:@"carton"];
- // [item_json setValue:[ext valueForKey:@"weight"] forKey:@"weight"];
- double unit_price = [[item_json valueForKey:@"unit_price"] doubleValue];
- // double sub_total=[[item_json valueForKey:@"subtotal_price"] doubleValue];
- [item_json setValue:[NSString stringWithFormat:@"%f",unit_price*qty*(1-discount/100.0)] forKey:@"subtotal_price"];
- if (weakSelf.back_order_flag) {
- [weakSelf updateItemJson:item_json atIndexPath:indexPath];
- } else {
- weakSelf.content_arr[indexPath.row]= item_json;
- }
- // [self.content_data setObject:item_json forKey:[NSString stringWithFormat:@"item_%ld",(long)indexPath.row]];
- [weakSelf refresh_total];
- #ifdef RA_NOTIFICATION
- [ActiveViewController Notify:@"OrderListViewController" Message:RA_NOTIFICATION_RELOAD_DATA];
- #else
- AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
- [((MainViewController*)appDelegate.main_vc) reloadOrder:true immediately:false];
- #endif
- };
- // cell.delegate=self;
- // cell.from=indexPath;
- NSDictionary* price_group = [RADataProvider get_price_group:appDelegate.price_group];
-
- if(RASingleton.sharedInstance.price_type==1&&([item_json[@"net_price"] boolValue]||[item_json[@"special_price"] boolValue]||discount>0))
- {
- cell.labelUnitPrice.textColor= [UIColor redColor];
- if([item_json[@"special_price"] boolValue]||discount>0)
- {
- cell.labelOldPrice.hidden = false;
- // if([item_json[@"special_price"] boolValue])
- // {
- cell.labelOldPrice.text=[RAConvertor currencyNumber:[item_json[price_group[@"price_1"][@"name"]] doubleValue]];//[NSString stringWithFormat:@"%.2f",[item_json[@"price1"] doubleValue]];
- // }
- // else
- // {
-
- // }
- }
- else
- cell.labelOldPrice.hidden = true;
- }
- else
- {
- cell.labelUnitPrice.textColor= [UIColor blackColor];
- cell.labelOldPrice.hidden = true;
- }
-
- // if(discount>0)
- // {
- // cell.labelNotes.text = [NSString stringWithFormat:@"Note: discount %d%% off.",(int)discount];
- // cell.labelOldPrice.hidden = false;
- //// cell.labelOldPrice.textColor = [UIColor redColor];
- // cell.labelUnitPrice.textColor= [UIColor redColor];
- // cell.labelOldPrice.text=[item_json[@"unit_price"] stringValue];
- // frame.size.height = 120;
- // }
- // else
- // {
- //
- //
- // cell.labelOldPrice.hidden = true;
- // cell.labelNotes.text = nil;
- // frame.size.height = 94;
- // }
-
-
-
- cell.unit_price = unitprice;
- // cell.labelAttribute.text = attribute;
- // cell.labelCurrency.text = currency;
-
-
- NSString* subtotal = [RAConvertor currencyNumber:unitprice*count*(1-discount/100)];//[NSString stringWithFormat:@"%.2f",unitprice*count*(1-discount/100)];
- NSString* newunitprice = [RAConvertor currencyNumber:unitprice*(1-discount/100)];//[NSString stringWithFormat:@"%.2f",unitprice*(1-discount/100)];
-
- cell.labelModel.text = model;
-
- cell.labelDescription.text = [NSString stringWithFormat:@"%@\n%@",description,dimension];
-
-
- // if(noprice&&unitprice==0.0)
- // {
- // cell.labelPrice.text = @"No Price";
- //
- // cell.labelUnitPrice.text = @"No Price";
- // }
- // else
- {
- cell.labelSubtotal.text = subtotal;
-
- cell.labelUnitPrice.text = newunitprice;
- }
- // bool check = [[item_json valueForKey:@"check"] boolValue];
-
- NSString* cart_item_id= [item_json valueForKey:@"cart_item_id"];
- cell.cart_id = cart_item_id;
-
- if(/*appDelegate.user_type==USER_ROLE_CUSTOMER*/ true)
- [cell init_Stepper:stockUom max:9999 min:stockUom value:count];
- // else
- // [cell init_Stepper:1 max:9999 min:1 value:count];
-
-
- [cell set_Count:count];
-
- // Button 设置了大小约束,Size就不会随内容变化
-
-
-
- cell.backgroundColor = [UIColor whiteColor];
-
- return cell;
-
- #else
- AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
- CellIdentifier = @"CartItemCell";
- ModelItemCell * cell= [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
-
-
- NSDictionary * item_json = nil;//[self.content_data objectForKey:[NSString stringWithFormat:@"item_%ld",(long)indexPath.row]];
-
- if (self.back_order_flag) {
- item_json = [self itemJsonAtIndexPath:indexPath];
- } else {
- item_json = self.content_arr[indexPath.row];
- }
-
- NSDictionary * combine_json =[item_json objectForKey:@"combine"];
- NSDictionary * master_json = [item_json objectForKey:@"combine_master"];
- if (cell.masterBtn != nil) {
- if (master_json == nil) {
- cell.masterBtn.hidden = YES;
- } else{
- cell.masterBtn.hidden = NO;
- cell.master_items = master_json;
- }
- }
-
-
- bool isfree = [[item_json valueForKey:@"is_free"]boolValue];
- NSString* notes = [item_json valueForKey:@"note"];
- BOOL is_out_of_stock = [[item_json valueForKey:@"is_out_of_stock"] boolValue];
- bool noprice =[[item_json valueForKey:@"is_no_price"]boolValue];
- cell.noprice = noprice;
- cell.enable_longpress = true;
- cell.bundle_item=combine_json;
- NSString* img_url = [item_json valueForKey:@"img_url"];
- NSString* description = [item_json valueForKey:@"description"];
- // NSString* identifier = [item_json valueForKey:@"identifier"];
- // NSString* attribute = [item_json valueForKey:@"attribute"];
- // NSString* currency = [item_json valueForKey:@"currency"];
- int count =[[item_json valueForKey:@"count"] intValue];
-
- int stockUom =[[item_json valueForKey:@"stockUom"] intValue];
-
- // double totalprice =[[item_json valueForKey:@"subtotal_price"] doubleValue];
-
- double unitprice=[[item_json valueForKey:@"unit_price"] doubleValue];
-
- double discount =[[item_json valueForKey:@"discount"] doubleValue];
-
-
- NSString* product_id = [item_json valueForKey:@"product_id"];
-
- // handle no such model
- if(product_id.length==0)
- cell.labelNoSuchModel.hidden=false;
- else
- cell.labelNoSuchModel.hidden=true;
-
- //if (appDelegate.user_type == USER_ROLE_CUSTOMER) {
- if (!is_out_of_stock) {
- cell.labelOutOfStock.hidden = YES;
- } else {
- cell.labelOutOfStock.hidden = NO;
- }
- // } else {
- // cell.labelOutOfStock.hidden = YES;
- // }
-
- // discount = 5.0;
- cell.discount = discount;
-
-
- CGRect frame = cell.frame;
-
-
- if(notes.length>0)
- {
- cell.labelNotes.text = [@"Note: " stringByAppendingString:[notes stringByReplacingOccurrencesOfString:@"\n" withString:@" "]];
- frame.size.height = 146;
- }
- else
- {
- cell.labelNotes.text = nil;
- frame.size.height = 120;
- }
-
- // cell.frame = frame;
-
- NSString* discountstr=[NSString stringWithFormat:@"%@%% off", [RAUtils FloatFormat:discount]];
-
- if(isfree)
- {
- cell.labelOldPrice.hidden = false;
- cell.labelOldPrice.textColor = [UIColor redColor];
- cell.labelOldPrice.text=@"Free";
- cell.labelOldPrice.hideline = true;
-
- cell.labelDiscount.hidden = true;
- }
- else
- {
- cell.labelOldPrice.textColor = [UIColor blackColor];
- cell.labelOldPrice.hideline = false;
- if(discount==0)
- {
- cell.labelOldPrice.hidden = true;
- cell.labelDiscount.hidden = true;
-
- }
- else
- {
- cell.labelOldPrice.hidden = false;
- cell.labelDiscount.hidden = false;
- }
- }
- __weak typeof(self) weakSelf = self;
- cell.onReturnQTY=^(int qty,NSDictionary* ext)
- {
- int result = [[ext objectForKey:@"result"] intValue];
- BOOL refresh = [[ext objectForKey:@"refresh"] boolValue];
-
- if (result == 2 && refresh) {
- [self ReloadData];
- return;
- }
-
- NSMutableDictionary * item_json = nil;
- if (weakSelf.back_order_flag) {
- item_json = [[weakSelf itemJsonAtIndexPath:indexPath] mutableCopy];
- } else {
- item_json = [weakSelf.content_arr[indexPath.row] mutableCopy];//[[self.content_data objectForKey:[NSString stringWithFormat:@"item_%ld",(long)indexPath.row]] mutableCopy];
- }
-
- // int count=[[item_json valueForKey:@"count"] intValue];
-
- // if(count==qty)
- // return;
-
- if ([[ext valueForKey:@"result"] integerValue] == 8) {
- return ;
- }
-
- [item_json setValue:[NSString stringWithFormat:@"%d",qty] forKey:@"count"];
- [item_json setValue:[ext valueForKey:@"cuft"] forKey:@"cuft"];
- [item_json setValue:[ext valueForKey:@"carton"] forKey:@"carton"];
- [item_json setValue:[ext valueForKey:@"weight"] forKey:@"weight"];
- double unit_price = [[item_json valueForKey:@"unit_price"] doubleValue];
- // double sub_total=[[item_json valueForKey:@"subtotal_price"] doubleValue];
- [item_json setValue:[NSString stringWithFormat:@"%f",unit_price*qty] forKey:@"subtotal_price"];
-
- if (weakSelf.back_order_flag) {
- [weakSelf updateItemJson:item_json atIndexPath:indexPath];
- } else {
- weakSelf.content_arr[indexPath.row]= item_json;
- }
- // [self.content_data setObject:item_json forKey:[NSString stringWithFormat:@"item_%ld",(long)indexPath.row]];
- [weakSelf refresh_total];
-
- #ifdef RA_NOTIFICATION
- [ActiveViewController Notify:@"OrderListViewController" Message:RA_NOTIFICATION_RELOAD_DATA];
- #else
- AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
- [((MainViewController*)appDelegate.main_vc) reloadOrder:true immediately:false];
- #endif
- };
- // cell.delegate=self;
- // cell.from=indexPath;
- cell.unit_price = unitprice;
- // cell.labelAttribute.text = attribute;
- // cell.labelCurrency.text = currency;
-
-
- NSString* oldprice =[NSString stringWithFormat:@"%.2f",unitprice];
- NSString* newprice = [NSString stringWithFormat:@"%.2f",unitprice* (1.0-discount/100)*count];
- NSString* newunitprice = [NSString stringWithFormat:@"%.2f",unitprice* (1.0-discount/100)];
- if(appDelegate.can_see_price&&appDelegate.price_hidden==false)
- {
-
- }
- else
- {
- oldprice=nil;
- newprice=nil;
- newunitprice=nil;
- }
-
-
- cell.labelDiscount.text = discountstr;
- cell.labelOldPrice.text = oldprice;
-
- cell.labelMasterpack.text =[NSString stringWithFormat:@"Sold in QTY of:%d", stockUom];
-
- cell.labelDescription.text = description;
- // cell.labelIdentifier.text = identifier;
-
- if(noprice&&unitprice==0.0)
- {
- cell.labelPrice.text = @"No Price";
-
- cell.labelUnitPrice.text = @"No Price";
- }
- else
- {
- cell.labelPrice.text = newprice;
-
- cell.labelUnitPrice.text = newunitprice;
- }
- bool check = [[item_json valueForKey:@"check"] boolValue];
- if(check)
- {
-
- cell.img_checkmark.hidden=false;
- // [item_json setValue:@"0" forKey:@"check"];
-
- }
- else
- {
- // [item_json setValue:@"1" forKey:@"check"];
-
- cell.img_checkmark.hidden=true;
- }
-
- NSString* cart_item_id= [item_json valueForKey:@"cart_item_id"];
- cell.cart_id = cart_item_id;
-
- if(/*appDelegate.user_type==USER_ROLE_CUSTOMER*/ true)
- {
- #ifdef IGNORE_SOLD_IN_QTY
- [cell init_Stepper:1 max:9999 min:1 value:count];
- #else
- [cell init_Stepper:stockUom max:9999 min:stockUom value:count];
- #endif
- }
- // else
- // [cell init_Stepper:1 max:9999 min:1 value:count];
-
-
- [cell set_Count:count];
-
- // Button 设置了大小约束,Size就不会随内容变化
- [cell.btnImage setContentMode:UIViewContentModeScaleAspectFit];
- #if __IPHONE_OS_VERSION_MIN_REQUIRED <150000
- [cell.btnImage setContentEdgeInsets:UIEdgeInsetsMake(0, 0, 0, 0)];
- #endif
- [cell.btnImage setContentHorizontalAlignment:UIControlContentHorizontalAlignmentFill];
- [cell.btnImage setContentVerticalAlignment:UIControlContentVerticalAlignmentFill];
- cell.btnImage.imageView.contentMode = UIViewContentModeScaleAspectFit;
-
- if (![cell.imageName isEqualToString:img_url]) {
- cell.imageName = img_url;
- // [cell.btnImage setBackgroundImage:[UIImage imageNamed:@"loading_s"] forState:UIControlStateNormal];
- [cell.btnImage setImage:[UIImage imageNamed:@"loading_s"] forState:UIControlStateNormal];
-
- NSString* file_name=[img_url lastPathComponent];
- NSData* img_data=[iSalesDB load_cached_img:file_name loadFrom:img_url];
- if(img_data!=nil)
- {
-
- UIImage * img =[UIImage imageWithData:img_data];
- // [cell.btnImage setBackgroundImage:img forState:UIControlStateNormal];
- [cell.btnImage setImage:img forState:UIControlStateNormal];
- }
- else
- {
-
- dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
-
- NSData* downloadimg_data = [NSData dataWithContentsOfURL:[NSURL URLWithString:img_url]];
-
- dispatch_async(dispatch_get_main_queue(), ^{
-
-
-
- if(downloadimg_data!=nil)
- {
-
- [iSalesDB cache_img:downloadimg_data filename:file_name saveTo:img_url];
-
- UIImage * img =[UIImage imageWithData:downloadimg_data];
- // [cell.btnImage setBackgroundImage:img forState:UIControlStateNormal];
- [cell.btnImage setImage:img forState:UIControlStateNormal];
- }
- else
- {
- // [cell.btnImage setBackgroundImage:[UIImage imageNamed:@"notfound_s"] forState:UIControlStateNormal];
- [cell.btnImage setImage:[UIImage imageNamed:@"notfound_s"] forState:UIControlStateNormal];
- }
-
- });
- });
-
-
- }
- }
- cell.backgroundColor = [UIColor whiteColor];
-
-
- if(self.itemListTable.editing)
- {
- cell.editCount.enabled = false;
- cell.stepper.hidden=true;
- }
- else
- {
- cell.editCount.enabled=true;
- cell.stepper.hidden=false;
-
- }
- return cell;
- // }
- // else
- // {
- // NSString *CellIdentifier = @"OrderInfoListItem";
- // UITableViewCell * cell= [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
- // return cell;
- // }
-
- #endif
- }
- -(void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath
- {
- if(!self.itemListTable.editing)
- return;
-
- // NSMutableDictionary * item_json = [self.content_arr[indexPath.row] mutableCopy];//[[self.content_data objectForKey:[NSString stringWithFormat:@"item_%ld",(long)indexPath.row]] mutableCopy];
-
- NSMutableDictionary * item_json = nil;
- if (self.back_order_flag) {
- item_json = [[self itemJsonAtIndexPath:indexPath] mutableCopy];
- } else {
- item_json = [self.content_arr[indexPath.row] mutableCopy];//[[self.content_data objectForKey:[NSString stringWithFormat:@"item_%ld",(long)indexPath.row]] mutableCopy];
-
- }
-
- NSString *cart_item_id=[NSString stringWithFormat:@"%d",[[item_json valueForKey:@"cart_item_id"] intValue]];
- if ([self.edit_select_arr containsObject:cart_item_id])
- {
- [self.edit_select_arr removeObject:cart_item_id];
- }
- }
- - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
- {
-
- #ifdef SCANNER_ORDER
-
- return;
-
- #endif
-
- NSMutableDictionary * item_json = nil;
- if (self.back_order_flag) {
- item_json = [[self itemJsonAtIndexPath:indexPath] mutableCopy];
- } else {
- item_json = [self.content_arr[indexPath.row] mutableCopy];//[[self.content_data objectForKey:[NSString stringWithFormat:@"item_%ld",(long)indexPath.row]] mutableCopy];
-
- }
-
- // NSMutableDictionary * item_json =[self.content_arr[indexPath.row] mutableCopy];// [[self.content_data objectForKey:[NSString stringWithFormat:@"item_%ld",(long)indexPath.row]] mutableCopy];
- if(self.itemListTable.editing)
- {
-
- NSString *cart_item_id=[NSString stringWithFormat:@"%d",[[item_json valueForKey:@"cart_item_id"] intValue]];
-
- if (![self.edit_select_arr containsObject:cart_item_id]) {
- [self.edit_select_arr addObject:cart_item_id];
- }
-
- return;
- }
-
- // no checkmark support anymore for cart
-
- return;
-
- }
- - (UITableViewCellEditingStyle)tableView:(UITableView *)tv editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath {
- if(self.itemListTable.editing)
- return UITableViewCellEditingStyleDelete | UITableViewCellEditingStyleInsert;
- else
- return UITableViewCellEditingStyleDelete;
- }
- #pragma mark 在滑动手势删除某一行的时候,显示出更多的按钮
- //- (NSArray *)tableView:(UITableView *)tableView editActionsForRowAtIndexPath:(NSIndexPath *)indexPath
- - (UISwipeActionsConfiguration *)tableView:(UITableView *)tableView trailingSwipeActionsConfigurationForRowAtIndexPath:(NSIndexPath *)indexPath
- {
- AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
- // 添加一个删除按钮
-
- self.indexPath=indexPath;
-
- NSMutableDictionary * item_json = nil;
- if (self.back_order_flag) {
- item_json = [[self itemJsonAtIndexPath:indexPath] mutableCopy];
- } else {
- item_json = [self.content_arr[indexPath.row] mutableCopy];//[[self.content_data objectForKey:[NSString stringWithFormat:@"item_%ld",(long)indexPath.row]] mutableCopy];
- }
-
- NSString* productID = [item_json valueForKey:@"product_id"];
- // BOOL outOfStock = [[item_json valueForKey:@"is_out_of_stock"] boolValue];
-
- __weak typeof(self) weakself = self;
-
-
- // UITableViewRowAction *deleteRowAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDestructive title:@" Delete " handler:^(UITableViewRowAction *action, NSIndexPath *indexPath) {
- UIContextualAction* deleteRowAction = [UIContextualAction contextualActionWithStyle:UIContextualActionStyleDestructive title:@" Delete " handler:^(UIContextualAction * _Nonnull action, __kindof UIView * _Nonnull sourceView, void (^ _Nonnull completionHandler)(BOOL)) {
- DebugLog(@"delete click");
-
- //[self.itemListTable setEditing:false animated:YES];
-
-
- UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"Confirm Deletion" message:@"Are you sure to delete this model?" preferredStyle:UIAlertControllerStyleAlert];
-
-
-
- UIAlertAction *action_2 = [UIAlertAction actionWithTitle:@"YES" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
-
- // [self.itemListTable reloadRowsAtIndexPaths:@[self.indexPath]withRowAnimation:UITableViewRowAnimationMiddle];
- NSMutableDictionary * item_json = nil;
- if (self.back_order_flag) {
- item_json = [[self itemJsonAtIndexPath:self.indexPath] mutableCopy];
- } else {
- item_json = [self.content_arr[self.indexPath.row] mutableCopy];//[[self.content_data objectForKey:[NSString stringWithFormat:@"item_%ld",(long)indexPath.row]] mutableCopy];
-
- }
-
- NSString *ids=[NSString stringWithFormat:@"%@",[item_json valueForKey:@"cart_item_id"] ];
-
- // __block UIAlertController * waitalert = [RAUtils waiting_alert:self title:@"Remove Model" completion:^{
- PopWaitAlert* pop = [RAUtils waiting_pop:@"Remove Model" completion:nil];
- [RANetwork request_remove_cart:ids completionHandler:^(NSMutableDictionary *result) {
- NSMutableDictionary* cart_json = result;
- // [waitalert dismissViewControllerAnimated:YES completion:^{
- [pop hide];
- if([[cart_json valueForKey:@"result"] intValue]==2)
- {
- // AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
- if (self.back_order_flag) {
-
- NSInteger section_count = [self sectionCount];
- for (int i = 0; i < section_count; i++) {
- NSInteger item_count = [self itemCountInSection:i];
- BOOL ready_break = NO;
-
- for (int j = 0; j < item_count; j++) {
- NSIndexPath *indexPath = [NSIndexPath indexPathForRow:j inSection:i];
- NSDictionary* obj_json = [self itemJsonAtIndexPath:indexPath];
- NSString* _id =[obj_json valueForKey:@"cart_item_id"];
- if([_id isEqualToString:ids])
- {
- [self updateItemJson:nil atIndexPath:indexPath];
- ready_break = YES;
- break;
- }
- }
-
- if (ready_break) {
- break;
- }
- }
-
- } else {
- for(int i=0;i<self.content_arr.count;i++)
- {
- NSDictionary* obj_json = self.content_arr[i];
- NSString* _id =[obj_json valueForKey:@"cart_item_id"];
- if([_id isEqualToString:ids])
- {
- [self.content_arr removeObjectAtIndex:i];
- // [self.itemListTable deleteRowsAtIndexPaths:[NSArray arrayWithObject:self.indexPath] withRowAnimation:UITableViewRowAnimationLeft];
- break;
- // appDelegate.cart_count--;
- // [appDelegate update_count_mark];
- }
-
- }
- }
- #ifdef SCANNER_ORDER
- self.cart_json = cart_json;
- #endif
- [self.itemListTable reloadData];
- [self refresh_total];
- #ifdef RA_NOTIFICATION
- [ActiveViewController Notify:@"OrderListViewController" Message:RA_NOTIFICATION_RELOAD_DATA];
- #else
- AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
- [((MainViewController*)appDelegate.main_vc) reloadOrder:true immediately:false];
- #endif
- // [self reload_data];
- }
- else
- {
- [RAUtils message_box:@"Delete Model" message:[cart_json valueForKey:@"err_msg"] completion:nil] ;
- }
- // }];
- }];
- // }];
-
-
- }];
- UIAlertAction *action_3 = [UIAlertAction actionWithTitle:@"NO" style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {
-
-
-
- }];
- [alertController addAction:action_2];
- [alertController addAction:action_3];
-
-
- [self presentViewController:alertController animated:YES completion:nil];
-
- // UIAlertView * alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Delete confirm", nil) message:NSLocalizedString(@"Are you sure remove model from cart?", nil) delegate:self cancelButtonTitle:NSLocalizedString(@"NO", nil) otherButtonTitles:NSLocalizedString(@"YES", nil), nil];
- // alert.tag = ALERT_DEL;
- // // alert.
- // [alert show];
-
-
-
-
-
-
- }];
-
- deleteRowAction.backgroundColor = [UIColor redColor];
-
- UIContextualAction* notifyMeAction = [UIContextualAction contextualActionWithStyle:UIContextualActionStyleDestructive title:@"Notify Me" handler:^(UIContextualAction * _Nonnull action, __kindof UIView * _Nonnull sourceView, void (^ _Nonnull completionHandler)(BOOL)) {
-
- {
-
- // __block UIAlertController *waitting_alert = [RAUtils waiting_alert:self title:@"Sending Email" completion:^{
- PopWaitAlert* pop = [RAUtils waiting_pop:@"Sending Email" completion:nil];
- [RANetwork request_notifymodel:productID emailAddr:nil withScreen:ScreenCodeCart completionHandler:^(NSMutableDictionary *result) {
- NSMutableDictionary *dic = result;
-
-
- // [waitting_alert dismissWithClickedButtonIndex:0 animated:NO];
- // [waitting_alert dismissViewControllerAnimated:YES completion:^{
- [pop hide];
- int result_code = [[dic valueForKey:@"result"] intValue];
-
- if (result_code != RESULT_TRUE && result_code != RESULT_NO_EMAIL_ADDRESS)
- {
-
- NSString *msg = [NSString stringWithFormat:@"The email send failed"];
-
- if ([dic valueForKey:@"err_msg"]) {
- msg = [dic valueForKey:@"err_msg"];
- }
-
-
- UIAlertController *errorAlertVC = [UIAlertController alertControllerWithTitle:@"Warning" message:msg preferredStyle:UIAlertControllerStyleAlert];
- UIAlertAction *action = [UIAlertAction actionWithTitle:@"ok" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
-
- }];
-
- [errorAlertVC addAction:action];
- [weakself presentViewController:errorAlertVC animated:YES completion:nil];
-
- } else if (result_code == RESULT_TRUE){
-
- [RAUtils message_box:@"Message" message:@"Notification is sent to default email address." completion:nil];
-
- } else if (result_code == RESULT_NO_EMAIL_ADDRESS) {
-
- [weakself showAddressBoxToEmailProduct:productID];
-
- }
- // }];
-
-
-
- }];
- // }];
-
- };
-
-
- }];
-
- // UITableViewRowAction *notifyMeAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDestructive title:@"Notify Me" handler:^(UITableViewRowAction * _Nonnull action, NSIndexPath * _Nonnull indexPath) {
- //
- // {
- //
- //// __block UIAlertController *waitting_alert = [RAUtils waiting_alert:self title:@"Sending Email" completion:^{
- // PopWaitAlert* pop = [RAUtils waiting_pop:@"Sending Email" completion:nil];
- // [RANetwork request_notifymodel:productID emailAddr:nil withScreen:ScreenCodeCart completionHandler:^(NSMutableDictionary *result) {
- // NSMutableDictionary *dic = result;
- //
- //
- // // [waitting_alert dismissWithClickedButtonIndex:0 animated:NO];
- //// [waitting_alert dismissViewControllerAnimated:YES completion:^{
- // [pop hide];
- // int result_code = [[dic valueForKey:@"result"] intValue];
- //
- // if (result_code != RESULT_TRUE && result_code != RESULT_NO_EMAIL_ADDRESS)
- // {
- //
- // NSString *msg = [NSString stringWithFormat:@"The email send failed"];
- //
- // if ([dic valueForKey:@"err_msg"]) {
- // msg = [dic valueForKey:@"err_msg"];
- // }
- //
- //
- // UIAlertController *errorAlertVC = [UIAlertController alertControllerWithTitle:@"Warning" message:msg preferredStyle:UIAlertControllerStyleAlert];
- // UIAlertAction *action = [UIAlertAction actionWithTitle:@"ok" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
- //
- // }];
- //
- // [errorAlertVC addAction:action];
- // [weakself presentViewController:errorAlertVC animated:YES completion:nil];
- //
- // } else if (result_code == RESULT_TRUE){
- //
- // [RAUtils message_box:@"Message" message:@"Notification is sent to default email address." completion:nil];
- //
- // } else if (result_code == RESULT_NO_EMAIL_ADDRESS) {
- //
- // [weakself showAddressBoxToEmailProduct:productID];
- //
- // }
- //// }];
- //
- //
- //
- // }];
- //
- //// }];
- //
- // };
- //
- //
- // }];
-
- notifyMeAction.backgroundColor = UIColorFromRGB(0x9BBF5A);
-
-
- // UITableViewRowAction *addWatchAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDestructive title:@"Move To Wish List" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath){
- UIContextualAction* addWatchAction = [UIContextualAction contextualActionWithStyle:UIContextualActionStyleDestructive title:@"Move To Wish List" handler:^(UIContextualAction * _Nonnull action, __kindof UIView * _Nonnull sourceView, void (^ _Nonnull completionHandler)(BOOL)) {
-
-
- DebugLog(@"Wishlist click");
-
-
- NSMutableDictionary * item_json = nil;
- if (self.back_order_flag) {
- item_json = [[self itemJsonAtIndexPath:indexPath] mutableCopy];
- } else {
- item_json = [self.content_arr[indexPath.row] mutableCopy];//[[self.content_data objectForKey:[NSString stringWithFormat:@"item_%ld",(long)indexPath.row]] mutableCopy];
-
- }
-
- NSString* cart_item_id = [item_json valueForKey:@"cart_item_id"];
- [tableView reloadRowsAtIndexPaths:@[indexPath]withRowAnimation:UITableViewRowAnimationMiddle];
-
- [RANetwork request_move_cart2wish:cart_item_id completionHandler:^(NSMutableDictionary *result) {
- NSDictionary* return_json = result;
-
-
- if([[return_json valueForKey:@"result"] intValue]==2)
- {
-
-
-
-
-
-
- #ifdef RA_NOTIFICATION
- [ActiveViewController Notify:@"WatchListViewController,OrderListViewController" Message:RA_NOTIFICATION_RELOAD_DATA];
- #else
- AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
- [((MainViewController*)appDelegate.main_vc) reloadWish:true immediately:false];
- [((MainViewController*)appDelegate.main_vc) reloadOrder:true immediately:false];
-
- #endif
-
-
- for(int i=0;i<self.content_arr.count;i++)
- {
- NSDictionary* obj_json = self.content_arr[i];
- NSString* _id =[obj_json valueForKey:@"cart_item_id"];
- if([_id isEqualToString:cart_item_id])
- {
- if (self.back_order_flag) {
- [self updateItemJson:nil atIndexPath:indexPath];
- } else {
- [self.content_arr removeObjectAtIndex:i];
- }
- [self.itemListTable deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationLeft];
- appDelegate.cart_count--;
- [appDelegate update_count_mark];
-
-
- [self refresh_total];
- }
-
- }
-
- [self.itemListTable reloadData];
-
- }
- else
- {
- [RAUtils message_box:@"Move To Wish List" message:[return_json valueForKey:@"err_msg"] completion:nil] ;
- }
-
-
-
-
- }];
-
-
-
-
-
- }];
-
- addWatchAction.backgroundColor = UIColorFromRGB(0x339966);
-
-
- // 添加一个编辑按钮
- // UITableViewRowAction *editRowAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDefault title:@"Edit Price"handler:^(UITableViewRowAction *action, NSIndexPath *indexPath){
-
- UIContextualAction* editRowAction = [UIContextualAction contextualActionWithStyle:UIContextualActionStyleNormal title:@"Edit Price" handler:^(UIContextualAction * _Nonnull action, __kindof UIView * _Nonnull sourceView, void (^ _Nonnull completionHandler)(BOOL)) {
-
-
-
- DebugLog(@"edit click");
- if (appDelegate.user_type == USER_ROLE_CUSTOMER && appDelegate.customer_type == CustomerTypeStore) {
-
-
- if (self.currentOrderIsMerged) { // 合并过的订单不能编辑价格
-
- UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"Warning" message:@"Purchase Order Can't Edit Price" preferredStyle:UIAlertControllerStyleAlert];
-
- UIAlertAction *action = [UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {
- [alert dismissViewControllerAnimated:YES completion:nil];
- }];
-
- [alert addAction:action];
-
- if (weakself) {
- __strong typeof(weakself) strongself = weakself;
- [strongself presentViewController:alert animated:YES completion:nil];
- }
-
- return ;
- }
-
- if ([RASingleton sharedInstance].npd_shop_price_type == 0) { // 提货价不能编辑价格
-
- UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"Warning" message:[NSString stringWithFormat:@"Current Price Type is %@,You Can't Change it",[RASingleton sharedInstance].deliveryString] preferredStyle:UIAlertControllerStyleAlert];
-
- UIAlertAction *action = [UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {
- [alert dismissViewControllerAnimated:YES completion:nil];
- }];
-
- [alert addAction:action];
-
- if (weakself) {
- __strong typeof(weakself) strongself = weakself;
- [strongself presentViewController:alert animated:YES completion:nil];
- }
-
- return ;
- }
-
- }
-
-
- UIViewController* parentvc=self;
-
-
-
-
- EditModelPriceViewController * vc =[[UIStoryboard storyboardWithName:@"ERP_Mobile_Cart" bundle:nil] instantiateViewControllerWithIdentifier:@"EditModelPriceViewController"];
-
-
- NSMutableDictionary * item_json = nil;
- if (self.back_order_flag) {
- item_json = [[self itemJsonAtIndexPath:indexPath] mutableCopy];
- } else {
- item_json = [self.content_arr[indexPath.row] mutableCopy];//[[self.content_data objectForKey:[NSString stringWithFormat:@"item_%ld",(long)indexPath.row]] mutableCopy];
-
- }
-
-
-
-
- vc.discount=[[item_json valueForKey:@"discount"] floatValue];
- vc.price = [[item_json valueForKey:@"unit_price"] floatValue];
- vc.cart_id = [item_json valueForKey:@"cart_item_id"];//[NSString stringWithFormat:@"%d",[[item_json valueForKey:@"cart_item_id"] intValue]];
- __block NSString* cartid=[item_json valueForKey:@"cart_item_id"];
- // vc.delegate = parentvc.self;
- // loginvc.modalPresentationStyle = UIModalPresentationFormSheet;//有三种状态,自己看看是哪种
- vc.onSetValue = ^(double price,double discount){
-
- bool bmodify=false;
- if(price!= [[item_json valueForKey:@"unit_price"] floatValue])
- bmodify=true;
-
- NSString* notes = [item_json valueForKey:@"note"];
- if(notes.length==0)
- notes=@"";
- if(bmodify)
- {
- if([notes isEqualToString:@""])
- notes=@"PRICE MODIFIED";
- NSRange range;
- range = [notes rangeOfString:@"PRICE MODIFIED"];
- if (range.location != NSNotFound) {
-
- }else{
- notes= [notes stringByAppendingString:@"\nPRICE MODIFIED"];
- }
- }
-
- // __block UIAlertController * waitalert = [RAUtils waiting_alert:self title:@"Update Price" completion:^{
- PopWaitAlert* pop = [RAUtils waiting_pop:@"Update Price" completion:nil];
- [RANetwork request_update_cart_modelprice:cartid price:price discount:discount notes:notes completionHandler:^(NSMutableDictionary *result) {
- NSDictionary* cart_json = result;
-
- // [waitalert dismissViewControllerAnimated:YES completion:^{
- [pop hide];
- if([[cart_json valueForKey:@"result"] intValue]==2)
- {
- [item_json setValue:[NSNumber numberWithDouble:price ] forKey:@"unit_price"];
-
- [item_json setValue:[NSNumber numberWithDouble:discount ] forKey:@"discount"];
- [item_json setValue:notes forKey:@"note"];
- if (self.back_order_flag) {
- [self updateItemJson:item_json atIndexPath:indexPath];
- } else {
- self.content_arr[indexPath.row ] = item_json;
- }
- tableView.editing = false;
- // [tableView reloadRowsAtIndexPaths:@[indexPath]withRowAnimation:UITableViewRowAnimationMiddle];
- // [self refresh_total];
-
-
- [weakself reload_data];
-
- #ifdef RA_NOTIFICATION
- [ActiveViewController Notify:@"OrderListViewController" Message:RA_NOTIFICATION_RELOAD_DATA];
- #else
- AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
- [((MainViewController*)appDelegate.main_vc) reloadOrder:true immediately:false];
- #endif
- }
- else
- {
- [RAUtils message_box:@"Update Price" message:[cart_json valueForKey:@"err_msg"] completion:nil] ;
- }
- // }];
-
-
-
-
-
-
- }];
- // }];
-
-
-
- // [self reload_data];//[main_vc checklogin:true];
- };
-
-
- UINavigationController* navi = [[UINavigationController alloc] initWithRootViewController:vc] ;
-
-
-
-
-
- // [self hackModalSheetSize:CGSizeMake(450, 200) ofVC:navi];
-
- navi.modalPresentationStyle = UIModalPresentationFormSheet;//有三种状态,自己看看是哪种
- [parentvc presentViewController:navi animated:YES completion:^{
-
- // navi.view.superview.bounds = CGRectMake(0, 0, 480, 320);
-
- DebugLog(@"EditModelPriceViewController present.........");
-
- // self.btop = false;
- // <#code#>
- }];
- // [self.itemListTable setEditing:false animated:YES];
- //[tableView reloadRowsAtIndexPaths:@[indexPath]withRowAnimation:UITableViewRowAnimationMiddle];
-
-
- }];
-
- editRowAction.backgroundColor = UIColorFromRGB(0xff9933);
-
-
- // // 添加一个更多按钮
- //
- // UITableViewRowAction *moreRowAction = [UITableView RowActionrowActionWithStyle:UITableViewRowActionStyleNormal title:@"更多" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath) {
- //
- // DebugLog(@点击了更多);
- //
- //
- // [tableView reloadRowsAtIndexPaths:@[indexPath]withRowAnimation:UITableViewRowAnimationMiddle];
- //
- // }];
- //
- // moreRowAction.backgroundEffect = [UIBlurEffecteffectWithStyle:UIBlurEffectStyleDark];
- //
-
- // 将设置好的按钮放到数组中返回
-
-
-
- // UITableViewRowAction *freeRowAction = nil;
- //
- //
- // NSDictionary * item_json = [self.content_arr[indexPath.row] mutableCopy];//[self.content_data objectForKey:[NSString stringWithFormat:@"item_%ld",(long)indexPath.row]];
- //
- // bool isfree = [[item_json valueForKey:@"is_free"]boolValue];
- //
- // if(!isfree)
- // {
- //
- // freeRowAction=[UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDestructive title:@"Set Free" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath) {
- //
- // DebugLog(@"free click");
- //
- //
- //
- // UIAlertView * alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Free give away confirm", nil) message:NSLocalizedString(@"Are you sure make this model free?", nil) delegate:self cancelButtonTitle:NSLocalizedString(@"NO", nil) otherButtonTitles:NSLocalizedString(@"YES", nil), nil];
- // alert.tag = ALERT_SET_FREE;
- // // alert.
- // [alert show];
- // }];
- // }
- // else
- // {
- //
- // freeRowAction=[UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDestructive title:@"Not Free" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath) {
- //
- // UIAlertView * alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Restore free model confirm", nil) message:NSLocalizedString(@"Are you sure restore free model?", nil) delegate:self cancelButtonTitle:NSLocalizedString(@"NO", nil) otherButtonTitles:NSLocalizedString(@"YES", nil), nil];
- // alert.tag = ALERT_RESTORE_FREE;
- // // alert.
- // [alert show];
- // }];
- // }
- //
- //
- //
- // freeRowAction.backgroundColor = [UIColor lightGrayColor];
-
- // UITableViewRowAction *noteRowAction = nil;
- //
- //
- // // NSDictionary * item_json = [self.content_arr[indexPath.row] mutableCopy];//[self.content_data objectForKey:[NSString stringWithFormat:@"item_%ld",(long)indexPath.row]];
- //
- //
- //
- //
- // noteRowAction=[UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDestructive title:@"Edit note" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath) {
-
- UIContextualAction* noteRowAction = [UIContextualAction contextualActionWithStyle:UIContextualActionStyleDestructive title:@"Edit note" handler:^(UIContextualAction * _Nonnull action, __kindof UIView * _Nonnull sourceView, void (^ _Nonnull completionHandler)(BOOL)) {
-
- DebugLog(@"item note click");
-
-
- UIViewController* parentvc=self;
-
-
-
-
- ItemNotesViewController * vc =[[UIStoryboard storyboardWithName:@"ERP_Mobile_Cart" bundle:nil] instantiateViewControllerWithIdentifier:@"ItemNotesViewController"];
-
-
- NSMutableDictionary * item_json = nil;
- if (self.back_order_flag) {
- item_json = [[self itemJsonAtIndexPath:indexPath] mutableCopy];
- } else {
- item_json = [self.content_arr[indexPath.row] mutableCopy];//[[self.content_data objectForKey:[NSString stringWithFormat:@"item_%ld",(long)indexPath.row]] mutableCopy];
-
- }
-
-
- vc.onSaveNote=^(NSString* notes){
- [item_json setValue:notes forKey:@"note"];
- if (self.back_order_flag) {
- [self updateItemJson:item_json atIndexPath:indexPath];
- } else {
- self.content_arr[indexPath.row ] = item_json;
- }
- tableView.editing = false;
- [tableView reloadRowsAtIndexPaths:@[indexPath]withRowAnimation:UITableViewRowAnimationMiddle];
- };
-
- vc.notes=[item_json valueForKey:@"note"];
- vc.cart_id = [item_json valueForKey:@"cart_item_id"];//[NSString stringWithFormat:@"%d",[[item_json valueForKey:@"cart_item_id"] intValue]];
- // vc.delegate = parentvc.self;
- // loginvc.modalPresentationStyle = UIModalPresentationFormSheet;//有三种状态,自己看看是哪种
- // vc.onSetValue = ^(){
- // [self reload_data];//[main_vc checklogin:true];
- // };
- //
-
- UINavigationController* navi = [[UINavigationController alloc] initWithRootViewController:vc] ;
-
-
-
-
-
- // [self hackModalSheetSize:CGSizeMake(450, 200) ofVC:navi];
-
- navi.modalPresentationStyle = UIModalPresentationFormSheet;//有三种状态,自己看看是哪种
- [parentvc presentViewController:navi animated:YES completion:^{
-
- // navi.view.superview.bounds = CGRectMake(0, 0, 480, 320);
-
- DebugLog(@"EditModelPriceViewController present.........");
-
- // self.btop = false;
- // <#code#>
- }];
- // [self.itemListTable setEditing:false animated:YES];
- // [tableView reloadRowsAtIndexPaths:@[indexPath]withRowAnimation:UITableViewRowAnimationMiddle];
-
-
- }];
-
-
-
- noteRowAction.backgroundColor = [UIColor lightGrayColor];
- // UITableViewRowAction *move2BackAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDefault title:@"Move to Back Order" handler:^(UITableViewRowAction * _Nonnull action, NSIndexPath * _Nonnull indexPath) {
-
- UIContextualAction* move2BackAction = [UIContextualAction contextualActionWithStyle:UIContextualActionStyleNormal title:@"Move to Back Order" handler:^(UIContextualAction * _Nonnull action, __kindof UIView * _Nonnull sourceView, void (^ _Nonnull completionHandler)(BOOL)) {
-
-
- NSDictionary *item_json = [self itemJsonAtIndexPath:indexPath];
- NSString* cart_item_id = [item_json valueForKey:@"cart_item_id"];
-
-
- // __block UIAlertController * waitalert = [RAUtils waiting_alert:self title:@"Move To Back Order" completion:^{
- PopWaitAlert* pop = [RAUtils waiting_pop:@"Move To Back Order" completion:nil];
- [RANetwork request_movetobackorder:cart_item_id completionHandler:^(NSMutableDictionary *result) {
- NSMutableDictionary* return_json =result ;
-
-
-
- // [waitalert dismissViewControllerAnimated:YES completion:^{
-
- [pop hide];
- if([[return_json valueForKey:@"result"] intValue]==2) {
-
- [self reload_data];
-
- } // if 2
- else {
- [RAUtils message_box:@"Move To Back Order" message:[return_json valueForKey:@"err_msg"] completion:nil] ;
- }
- // }];
-
-
-
- }];
- // }];
-
-
- }];
-
- move2BackAction.backgroundColor = UIColorFromRGB(0x336699);
-
- if(appDelegate.user_type==USER_ROLE_EMPLOYEE)
- {
- NSMutableDictionary * item_json = nil;
- if (self.back_order_flag) {
- item_json = [[self itemJsonAtIndexPath:indexPath] mutableCopy];
- } else {
- item_json = [self.content_arr[indexPath.row] mutableCopy];//[[self.content_data objectForKey:[NSString stringWithFormat:@"item_%ld",(long)indexPath.row]] mutableCopy];
-
- }
- NSString* product_id = [item_json valueForKey:@"product_id"];
-
-
- NSMutableArray* arr=[@[] mutableCopy];
-
-
-
- if(product_id.length>0)
- [arr addObject:noteRowAction];
-
- [arr addObject:deleteRowAction];
-
-
-
-
- // return arr;
- return [UISwipeActionsConfiguration configurationWithActions:arr];
- // return @[deleteRowAction,addWatchAction, editRowAction,freeRowAction];
- } else if (appDelegate.user_type == USER_ROLE_CUSTOMER) {
- if (appDelegate.customer_type == CustomerTypeStore) {
- // return @[deleteRowAction];
- return [UISwipeActionsConfiguration configurationWithActions:@[deleteRowAction]];
- } else {
-
- // normal
- // NSArray *actionArray = @[notifyMeAction,deleteRowAction,addWatchAction];
-
- NSMutableArray *actionArray = [NSMutableArray array];
-
- // move to backorder
- NSDictionary *section_json = [self jsonAtSection:indexPath.section];
- BOOL available = [[section_json objectForKey:@"available"] boolValue]; // available list
- if (self.back_order_flag && available) {
- // actionArray = @[move2BackAction,notifyMeAction,deleteRowAction,addWatchAction];
- [actionArray addObject:move2BackAction];
- }
-
- [actionArray addObjectsFromArray:@[notifyMeAction,deleteRowAction,addWatchAction]];
-
- // edit price
- NSMutableDictionary * item_json = nil;
- if (self.back_order_flag) {
- item_json = [[self itemJsonAtIndexPath:indexPath] mutableCopy];
- } else {
- item_json = [self.content_arr[indexPath.row] mutableCopy];
- }
- NSString* product_id = [item_json valueForKey:@"product_id"];
- int is_rate = [item_json[@"is_rate"] intValue];
- if(appDelegate.can_set_cart_price && product_id.length>0&& is_rate==0) {
- // actionArray = @[move2BackAction,notifyMeAction,deleteRowAction,addWatchAction,editRowAction];
- [actionArray addObject:editRowAction];
- }
-
- // return actionArray;
- return [UISwipeActionsConfiguration configurationWithActions:actionArray];
- }
- }
- else
- // return @[deleteRowAction];
- return [UISwipeActionsConfiguration configurationWithActions:@[deleteRowAction]];
-
-
- }
- - (void)tableView:(UITableView *)tableView
- commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
-
-
-
- }
- #pragma mark - Support scanner
- -(void) onDecodedData:(NSString*) value
- {
- int cqty=0;
-
-
-
- if (self.back_order_flag) {
-
- NSInteger section_count = [self sectionCount];
- for (int i = 0; i < section_count; i++) {
- NSInteger item_count = [self itemCountInSection:i];
-
- for (int j = 0; j < item_count; j++) {
- NSIndexPath *indexPath = [NSIndexPath indexPathForRow:j inSection:i];
- NSDictionary* item = [self itemJsonAtIndexPath:indexPath];
- if([item[@"model"] isEqualToString:value]) {
- cqty=[item[@"count"] intValue];
- }
- }
-
-
- }
-
- } else {
-
- for(int i=0;i<self.content_arr.count;i++)
- {
- NSDictionary* item= self.content_arr[i];
- if([item[@"model"] isEqualToString:value])
- cqty=[item[@"count"]intValue];
- }
-
- }
-
- if(cqty>0)
- {
-
-
- UIAlertController *alertControl = [UIAlertController alertControllerWithTitle:[NSString stringWithFormat:@"QTY: %d of this model already in cart. Continue ?",cqty] message:nil preferredStyle:UIAlertControllerStyleAlert];
- //block代码块取代了delegate
-
-
-
- UIAlertAction *actionOne = [UIAlertAction actionWithTitle:@"Yes" style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action) {
- [self addtocart:value];
- }];
-
- UIAlertAction *alertthree = [UIAlertAction actionWithTitle:@"No" style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
- DebugLog(@"No");
- }];
- [alertControl addAction:actionOne];
-
- [alertControl addAction:alertthree];
-
- //UIAlertControllerStyle类型为UIAlertControllerStyleAlert可以添加addTextFieldWithConfigurationHandler:^(UITextField *textField)
-
-
- [self presentViewController:alertControl animated:YES completion:nil];
-
-
- }
- else
- [self addtocart:value];
-
-
- }
- -(void) addtocart:(NSString*) modelname
- {
-
-
- [RANetwork request_addto_cart_byname:modelname withScreen:ScreenCodeCart completionHandler:^(NSMutableDictionary *result) {
-
-
- NSDictionary* return_json =result;
- if([[return_json valueForKey:@"result"] intValue]==2)
- {
- NSDictionary* newitem = [return_json objectForKey:@"item_0"];
- NSString* item_id = [newitem valueForKey:@"cart_item_id"];
- // bool isnew=false;
- //
- // [((MainViewController*)appDelegate.main_vc) reloadWish:true immediately:false];
-
- if (self.back_order_flag) {
-
- NSInteger section_count = [self sectionCount];
- for (int i = 0; i < section_count; i++) {
- NSInteger item_count = [self itemCountInSection:i];
- BOOL ready_break = NO;
- for (int j = 0; j < item_count; j++) {
- NSIndexPath *indexPath = [NSIndexPath indexPathForRow:j inSection:i];
- NSDictionary* obj_json = [self itemJsonAtIndexPath:indexPath];
- NSString* _id =[obj_json valueForKey:@"cart_item_id"];
- if([_id isEqualToString:item_id])
- {
- [self updateItemJson:nil atIndexPath:indexPath];
- ready_break = YES;
- break;
- }
- }
- if (ready_break) {
- break;
- }
-
-
- }
-
- } else {
-
- for(int i=0;i<self.content_arr.count;i++)
- {
- NSDictionary* obj_json = self.content_arr[i];
- NSString* _id =[obj_json valueForKey:@"cart_item_id"];
- if([_id isEqualToString:item_id])
- {
- // self.content_arr[i] = newitem;
-
-
- [self.content_arr removeObjectAtIndex:i];
-
- break;
- // [self.content_arr removeObjectAtIndex:i];
- // [self.itemListTable deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationLeft];
- // appDelegate.cart_count--;
- // [appDelegate update_count_mark];
- }
-
-
- }
- }
-
- AppDelegate *appDelegate =nil;
- appDelegate=(AppDelegate*)[[UIApplication sharedApplication] delegate];
- #ifdef OFFLINE_MODE
-
- if(appDelegate.offline_mode)
- {
-
- [self ReloadData];
-
- }
- else
- #endif
- {
-
- if (self.back_order_flag) {
- [self ReloadData];
- } else {
- [self.content_arr insertObject:newitem atIndex:0];
-
- [self.itemListTable reloadData];
- [self refresh_total];
- }
-
- }
-
- // AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
-
-
-
-
- #ifdef RA_NOTIFICATION
- [ActiveViewController Notify:@"CartViewController,OrderListViewController" Message:RA_NOTIFICATION_RELOAD_DATA];
- #else
- [((MainViewController*)appDelegate.main_vc) reloadCart:true immediately:false];
- [((MainViewController*)appDelegate.main_vc) reloadOrder:true immediately:false];
- #endif
-
-
- }
- else
- {
-
- [RAUtils message_box:@"Add To Cart" message:[return_json valueForKey:@"err_msg"] completion:nil] ;
- }
-
-
-
-
- }];
-
-
-
- }
- #pragma mark - sort button
- - (void)cartSortButtonClicked:(UIButton *)sender {
- DebugLog(@"cart sort button clicked");
-
- [self.view addSubview:self.sortItemController.view];
- }
- - (SortItemViewController *)sortItemController {
- if (!_sortItemController) {
- _sortItemController = [[SortItemViewController alloc] initWithTableOrigin:CGPointMake(20, 50)];
- _sortItemController.sortIndex = self.sortIndex;
-
-
- _sortItemController.sortData = @[
- @{@"title":@"Last",@"icon":@"TX_18"},
- @{@"title":@"First",@"icon":@"TS_18"},
- @{@"title":@"Item number a-z",@"icon":@"IX_18"},
- @{@"title":@"Item number z-a",@"icon":@"IS_18"},
- @{@"title":@"Description",@"icon":@"DX_18"},
- ];
-
- __weak typeof(self) weakSelf = self;
- _sortItemController.sortBlock = ^(int sort){
- weakSelf.sortIndex = sort;
-
- [weakSelf reload_data];
-
- };
- }
- // _sortItemController.sortIndex = self.sortIndex;
-
- return _sortItemController;
- }
- - (SortButton *)sortButton {
- if (!_sortButton) {
- _sortButton = [SortButton sortButtonWithHeight:40];
- _sortButton.autoresizingMask=UIViewAutoresizingFlexibleRightMargin;
- [_sortButton addTarget:self action:@selector(cartSortButtonClicked:) forControlEvents:UIControlEventTouchUpInside];
- }
- return _sortButton;
- }
- - (void)setSortIndex:(int)sortIndex {
- _sortIndex = sortIndex;
-
- NSString *selectedImageName = @"";
- switch (sortIndex) {
- case 0:{
- selectedImageName = @"TX_22";
- }
- break;
- case 1:{
- selectedImageName = @"TS_22";
- }
- break;
- case 2:{
- selectedImageName = @"IX_22";
- }
- break;
- case 3:{
- selectedImageName = @"IS_22";
- }
- break;
- case 4:{
- selectedImageName = @"DX_22";
- }
- break;
-
- default:
- break;
- }
-
- self.sortButton.imageView.image = [UIImage imageNamed:selectedImageName];
-
- }
- #pragma mark - rotation
- //- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration {
- //
- // self.sortItemController.view.frame = self.view.bounds;
- //}
- - (void)viewWillTransitionToSize:(CGSize)size withTransitionCoordinator:(id<UIViewControllerTransitionCoordinator>)coordinator {
- [super viewWillTransitionToSize:size withTransitionCoordinator:coordinator];
- [coordinator animateAlongsideTransition:^(id<UIViewControllerTransitionCoordinatorContext> _Nonnull context) {
- // what ever you want to prepare
- } completion:^(id<UIViewControllerTransitionCoordinatorContext> _Nonnull context) {
- // self.sortItemController.view.frame = self.view.bounds;
- self.sortItemController.view.frame = self.view.bounds;
- self.toolpanel.layer.shadowPath =[UIBezierPath bezierPathWithRect:self.toolpanel.bounds].CGPath;
-
- // [self.itemListTable reloadData];
-
- self.cartIndicatorBar.layer.shadowPath =[UIBezierPath bezierPathWithRect:self.cartIndicatorBar.bounds].CGPath;
- [self layoutCartIndicatorBar];
- }];
- }
- -(BOOL) shouldAutorotate
- {
- return YES;
- }
- //- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
- // return YES;
- //}
- //- (void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration {
- // self.sortItemController.view.frame = self.view.bounds;
- // self.toolpanel.layer.shadowPath =[UIBezierPath bezierPathWithRect:self.toolpanel.bounds].CGPath;
- //
- //// [self.itemListTable reloadData];
- //
- // self.cartIndicatorBar.layer.shadowPath =[UIBezierPath bezierPathWithRect:self.cartIndicatorBar.bounds].CGPath;
- // [self layoutCartIndicatorBar];
- //}
- #pragma mark - notification action
- - (void)priceTypeChanged:(id)notification {
- [self reload_data];
- #ifdef RA_NOTIFICATION
- [ActiveViewController Notify:@"OrderListViewController" Message:RA_NOTIFICATION_RELOAD_DATA];
- #else
- AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
- [((MainViewController*)appDelegate.main_vc) reloadOrder:true immediately:false];
- #endif
- }
- #pragma mark - button action
- - (IBAction)emailButtonClick:(UIButton *)sender {
-
- if (![self isOrderAvailable]) {
- return;
- }
-
- AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
- JKMessageBoxController *emailAddrVC = [JKMessageBoxController messageBoxControllerWithTip:@"Please enter email address"];
- emailAddrVC.textFiled.secureTextEntry = NO;
- emailAddrVC.yesButtonTitle = @"send";
-
- __weak typeof(emailAddrVC) weakVC = emailAddrVC;
- __weak typeof(self) weakself = self;
-
- emailAddrVC.textHandler = ^(NSString *text){
-
- // 验证邮箱格式是否正确
- // NSString *match = EMAIL_MATCHES;
- // NSPredicate *predicate = [NSPredicate predicateWithFormat:@"SELF MATCHES %@",match];
- // BOOL isEmailAddr = [predicate evaluateWithObject:text];
- BOOL isEmailAddr = YES;
- if (isEmailAddr) {
-
- // 验证是邮件地址,发送邮件
- [weakVC dismissViewControllerAnimated:YES completion:^{
-
- // __block UIAlertController *waitting_alert = [RAUtils waiting_alert:self title:@"Sending Email" completion:^{
- PopWaitAlert* pop = [RAUtils waiting_pop:@"Sending Email" completion:nil];
- [RANetwork request_qouteorder:appDelegate.order_code emailAddr:text completionHandler:^(NSMutableDictionary *result) {
- DebugLog(@"email cart result: %@",result);
-
- // [waitting_alert dismissViewControllerAnimated:YES completion:^{
- [pop hide];
- // [waitting_alert dismissWithClickedButtonIndex:0 animated:YES];
-
- if ([[result objectForKey:@"result"] integerValue] != RESULT_TRUE) {
-
- UIAlertController *errorAlertVC = [UIAlertController alertControllerWithTitle:@"Warning" message:[NSString stringWithFormat:@"The email send to %@ failed",text] preferredStyle:UIAlertControllerStyleAlert];
- UIAlertAction *action = [UIAlertAction actionWithTitle:@"ok" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
-
- }];
-
- [errorAlertVC addAction:action];
- [weakself presentViewController:errorAlertVC animated:YES completion:nil];
-
- }else {
-
- [RAUtils message_box:@"Message" message:@"Send Email Success" completion:nil];
-
- }
- // }];
-
-
- }];
- // }];
-
-
- }];
-
- } else {
-
- // 非邮件地址,警告
- [weakVC warning:@"Please enter right email address"];
-
- }
-
- };
-
- [self presentViewController:emailAddrVC animated:YES completion:nil];
-
- }
- - (IBAction)printCartButtonClick:(UIButton *)sender {
-
- if (![self isOrderAvailable]) {
- return;
- }
-
- RAPDFViewController *ViewController = [[UIStoryboard storyboardWithName:@"wkweb" bundle:nil] instantiateViewControllerWithIdentifier:@"RAPDFViewController"];
-
- ViewController.url = self.print_url;
- ViewController.canSave = false;
- ViewController.isLocalfile=NO;
- NSString* subject;
-
- subject =@"Cart Print";
- AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
- NSString* customer_email= [appDelegate.customerInfo valueForKey:@"customer_email"];
-
-
- NSMutableArray* send_to = [[NSMutableArray alloc]init];
- if(customer_email.length>0)
- {
- send_to=[[customer_email componentsSeparatedByString:NSLocalizedString(@";", nil)] mutableCopy];
-
- }
- ViewController.mail_to = send_to;
-
- ViewController.filename = [NSString stringWithFormat:@"%@_Product_List.pdf",COMPANY_SHORT_NAME];
- ViewController.mail_subject = subject;
-
- ViewController.hidenavi = false;
- [self.navigationController pushViewController:ViewController animated:YES];
-
- }
- - (void)showAddressBoxToEmailProduct:(NSString *)productID {
- // AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
-
- JKMessageBoxController *emailAddrVC = [JKMessageBoxController messageBoxControllerWithTip:@"E-mail not setup, please enter your default e-mail address" ContentSize:CGSizeMake(400, 150)];
- emailAddrVC.textFiled.secureTextEntry = NO;
- emailAddrVC.yesButtonTitle = @"send";
-
- __weak typeof(emailAddrVC) weakVC = emailAddrVC;
- __weak typeof(self) weakself = self;
-
- emailAddrVC.textHandler = ^(NSString *text){
-
- // 验证邮箱格式是否正确
- // NSString *match = EMAIL_MATCHES;
- // NSPredicate *predicate = [NSPredicate predicateWithFormat:@"SELF MATCHES %@",match];
- // BOOL isEmailAddr = [predicate evaluateWithObject:text];
- BOOL isEmailAddr = YES;
- if (isEmailAddr) {
-
- // 验证是邮件地址,发送邮件
- [weakVC dismissViewControllerAnimated:YES completion:^{
-
- // __block UIAlertController *waitting_alert = [RAUtils waiting_alert:self title:@"Sending Email" completion:^{
- PopWaitAlert* pop = [RAUtils waiting_pop:@"Sending Email" completion:nil];
- [RANetwork request_notifymodel:productID emailAddr:text withScreen:ScreenCodeCart completionHandler:^(NSMutableDictionary *result) {
-
-
- // [waitting_alert dismissWithClickedButtonIndex:0 animated:NO];
- // [waitting_alert dismissViewControllerAnimated:YES completion:^{
- [pop hide];
- int resultStatus = [[result objectForKey:@"result"] intValue];
- if (resultStatus != RESULT_TRUE && resultStatus != RESULT_NO_EMAIL_ADDRESS) {
-
- NSString *msg = [NSString stringWithFormat:@"The email send failed"];
- if ([result valueForKey:@"err_msg"]) {
- msg = [result valueForKey:@"err_msg"];
- }
-
-
- UIAlertController *errorAlertVC = [UIAlertController alertControllerWithTitle:@"Warning" message:msg preferredStyle:UIAlertControllerStyleAlert];
- UIAlertAction *action = [UIAlertAction actionWithTitle:@"ok" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
-
- }];
-
- [errorAlertVC addAction:action];
- [weakself presentViewController:errorAlertVC animated:YES completion:nil];
-
- }else if(resultStatus == RESULT_TRUE){
-
- [RAUtils message_box:@"Message" message:@"Notification is sent to default email address." completion:nil];
-
- } else if (resultStatus == RESULT_NO_EMAIL_ADDRESS) {
-
- [weakself showAddressBoxToEmailProduct:productID];
-
- }
- // }];
-
-
-
- }];
- // }];
-
-
- }];
-
- } else {
-
- // 非邮件地址,警告
- [weakVC warning:@"Please enter right email address"];
-
- }
-
- };
-
- [self presentViewController:emailAddrVC animated:YES completion:nil];
- }
- #pragma mark - Back Order
- - (void) setCart_json:(NSDictionary *)cart_json {
- _cart_json = cart_json;
- [self fillContentArray];
-
- }
- - (void)fillContentArray {
- NSMutableArray *arr = [NSMutableArray array];
- for (int i = 0; i < [self sectionCount]; i++) {
- NSInteger item_count = [self itemCountInSection:i];
- for (int j = 0; j < item_count; j++) {
- NSDictionary *item = [self itemJsonAtIndexPath:[NSIndexPath indexPathForRow:j inSection:i]];
- [arr addObject:item];
- }
- }
- self.content_arr = arr;
- [self refresh_total];
- }
- - (NSInteger)sectionCount {
- return [[self.cart_json objectForKey:@"section_count"] integerValue];
- }
- - (NSDictionary *)jsonAtSection:(NSInteger)section {
- return [self.cart_json objectForKey:[NSString stringWithFormat:@"section_%ld",section]];
- }
- - (NSInteger)itemCountInSection:(NSInteger)section {
- NSDictionary *section_json = [self jsonAtSection:section];
- return [[section_json objectForKey:@"count"] integerValue];
- }
- - (NSString *)titleForSection:(NSInteger)section {
- NSDictionary *section_json = [self jsonAtSection:section];
- return [section_json objectForKey:@"title"];
- }
- - (NSDictionary *)itemJsonAtIndexPath:(NSIndexPath *)indexPath {
- NSDictionary *section = [self jsonAtSection:indexPath.section];
- return [section objectForKey:[NSString stringWithFormat:@"item_%ld",indexPath.row]];
- }
- - (void)updateItemJson:(NSDictionary *)new_item_json atIndexPath:(NSIndexPath *)indexPath {
-
- NSMutableDictionary *new_cart_json = [self.cart_json mutableCopy];
- NSMutableDictionary *new_section_json = [[self jsonAtSection:indexPath.section] mutableCopy];
-
- NSString *section_key = [NSString stringWithFormat:@"section_%ld",indexPath.section];
- NSString *item_key = [NSString stringWithFormat:@"item_%ld",indexPath.row];
-
- if (new_item_json) {
- // 更新Item
- [new_section_json setObject:new_item_json forKey:item_key];
- } else {
- // 删除Item
- NSInteger item_count = [self itemCountInSection:indexPath.section];
- for (NSInteger i = 0; i < item_count; i++) {
- if (i >= indexPath.row) {
- if (i < item_count - 1) {
- item_key = [NSString stringWithFormat:@"item_%ld",i + 1];
- NSDictionary *followed_item_json = [new_section_json objectForKey:item_key];
-
- item_key = [NSString stringWithFormat:@"item_%ld",i];
- [new_section_json setObject:followed_item_json forKey:item_key];
- } else {
- item_key = [NSString stringWithFormat:@"item_%ld",i];
- [new_section_json removeObjectForKey:item_key];
- }
- }
- }
- [new_section_json setObject:@(item_count - 1) forKey:@"count"];
- }
- [new_cart_json setObject:new_section_json forKey:section_key];
-
- self.cart_json = [new_cart_json copy];
- }
- - (void)reRefreshView {
- [self.itemListTable reloadData];
- }
- #pragma mark - RA_NOTIFICAITON
- -(void) refresh_ui
- {
- [self.itemListTable reloadData];
- [self refresh_total];
- }
- -(void) refresh_price
- {
- [self refresh_ui];
- }
- - (void) reload_data {
-
-
-
-
- __weak typeof(self) weakself = self;
- self.currentOrderIsMerged = NO;
- NSBlockOperation *operation = [NSBlockOperation blockOperationWithBlock:^{
-
- if (weakself) {
- __strong typeof(weakself) strongself = weakself;
- [strongself operation_reload_data];
- }
-
- }];
-
- [self.dataOperationQueue addOperation:operation];
- }
- @end
|