Fullorder.php 239 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789
  1. <?php defined('BASEPATH') OR exit('No direct script access allowed');
  2. class Fullorder extends Start_Controller {
  3. public function __construct(){
  4. parent::__construct();
  5. $this->load->library('session');
  6. $this->load->_model('Model_fullorder','fullorder');
  7. $this->load->_model('Model_fullordertt','fullordertt');
  8. $this->load->_model('Model_fullorderexcel','fullorderexcel');
  9. $this->load->_model('Model_shop','shop');
  10. $this->load->_model('Model_typeclass','typeclass');
  11. $this->load->_model('Model_express','express');
  12. $this->load->_model('Model_country','country');
  13. $this->load->_model('Model_productdescribe','productdescribe');
  14. $this->load->_model('Model_customs','customs');
  15. $this->load->_model('Model_detailed','detailed');
  16. $this->load->_model('Model_productdescription','productdescription');
  17. $this->load->_model('Model_logistics','logistics');
  18. $this->load->_model('Model_hl','hl');
  19. $this->load->_model('Model_excel','excel');
  20. $this->load->_model('Model_warehouse','warehouse');
  21. $this->load->_model('Model_customer','customer');
  22. $this->load->_model('Model_user','user');
  23. $this->load->_model('Model_dhl','dhl');
  24. $this->load->_model('Model_ali','ali');
  25. $this->load->_model('Model_notice','notice');
  26. $this->load->_model('Model_api','api');
  27. $this->load->_model('Model_usps','usps');
  28. $this->load->_model('Model_fullorder_smt','fullorder_smt');
  29. $this->load->_model('Model_whlabel','whlabel');
  30. $this->load->_model('Model_reset','fullreset');
  31. $this->load->_model('Model_specialstock','specialstock');
  32. $this->load->_model('Model_systemwigsout','systemwigsout');
  33. $this->load->_model('Model_colourorderts','colourorderts');
  34. $this->load->_model('Model_paypal','paypal');
  35. $this->load->_model('Model_ck','ck');
  36. $this->load->_model('Model_weight','weight');
  37. $this->load->_model('Model_pay','pay');
  38. $this->load->_model('Model_setting','setting');
  39. $this->load->_model('Model_whlabel_fc','whlabel_fc');
  40. $this->load->_model('Model_transfer','transfer');
  41. $this->load->_model('Model_systemtransfer','systemtransfer');
  42. $this->load->_model('Model_power','power');
  43. $this->load->_model('Model_awlgx','awlgx');
  44. $this->load->_model('Model_fullorderhb','fullorderhb');
  45. $this->load->_model('Model_notice','notice');
  46. $this->load->_model('Model_producttitle','producttitle');
  47. $this->load->_model('Model_emaildata','emaildata');
  48. $this->load->_model('Model_afspaypal','afspaypal');
  49. $this->load->_model('Model_returngoods','returngoods');
  50. $this->load->_model('Model_message','message');
  51. $this->load->_model("Model_logic_order","logic_order");
  52. $this->load->_model("Model_logic_ding","logic_ding");
  53. $this->load->_model("Model_fullordererrors","fullordererrors");
  54. $this->load->_model("Model_logic_whlabel","logic_whlabel");
  55. $this->load->_model("Model_retreatlogs","retreatlogs");
  56. }
  57. //定义方法的调用规则 获取URI第二段值
  58. public function _remap($arg,$arg_array)
  59. {
  60. if($arg == 'add')//添加
  61. {
  62. $this->_add();
  63. }
  64. else if($arg == 'edit')//修改
  65. {
  66. $this->_edit($arg_array);
  67. }
  68. else if($arg == 'readonly')//修改
  69. {
  70. $this->_readonly($arg_array);
  71. }
  72. else if($arg == 'readlist')
  73. {
  74. $this->_readlist();
  75. }
  76. else if($arg == 'readlistdown')
  77. {
  78. $this->_readlistdown();
  79. }
  80. else if($arg == 'del')//修改
  81. {
  82. $this->_del();
  83. }
  84. else if($arg == 'price')//价格明细
  85. {
  86. $this->_price();
  87. }
  88. else if($arg == 'customs')
  89. {
  90. $this->_customs();
  91. }
  92. else if($arg == 'express')
  93. {
  94. $this->_express();
  95. }
  96. else if($arg == 'hl')
  97. {
  98. $this->_hl();
  99. }
  100. else if($arg == 'repeat')
  101. {
  102. $this->_repeat();
  103. }
  104. else if($arg == 'operation')
  105. {
  106. $this->_operation();
  107. }
  108. else if($arg == 'merge')
  109. {
  110. $this->_merge();
  111. }
  112. else if($arg == 'fmexcel')
  113. {
  114. $this->_fmexcel();
  115. }
  116. else if($arg == 'fdexcel')
  117. {
  118. $this->_fdexcel();
  119. }
  120. else if($arg == 'fdfexcel')
  121. {
  122. $this->_fdfexcel();
  123. }
  124. else if($arg == 'evaluate')
  125. {
  126. $this->_evaluate();
  127. }
  128. else if($arg == 'state')
  129. {
  130. $this->_state();
  131. }
  132. else if($arg == 'wl')
  133. {
  134. $this->_wl();
  135. }
  136. else if($arg == 'wlbz')
  137. {
  138. $this->_wlbz($arg_array);
  139. }
  140. else if($arg == 'review')
  141. {
  142. $this->_review();
  143. }
  144. else if($arg == 'black')
  145. {
  146. $this->_black();
  147. }
  148. else if($arg == 'ryf')
  149. {
  150. $this->_ryf();
  151. }
  152. else if($arg == 'expresstype')
  153. {
  154. $this->_expresstype();
  155. }
  156. else if($arg == 'fsstate')
  157. {
  158. $this->_fsstate();
  159. }
  160. else if($arg == 'power')
  161. {
  162. $this->_power();
  163. }
  164. else if($arg == 'error')
  165. {
  166. $this->_error();
  167. }
  168. else if($arg == 'yzaddress')
  169. {
  170. $this->_yzaddress();
  171. }
  172. else if($arg == 'return')
  173. {
  174. $this->_return();
  175. }
  176. else if($arg == 'clearreturn')
  177. {
  178. $this->_clearreturn();
  179. }
  180. else if($arg == 'ali')
  181. {
  182. $this->_ali();
  183. }
  184. else if($arg == 'dqpm')
  185. {
  186. $this->_dqpm();
  187. }
  188. else if($arg == 'ddpmdata')
  189. {
  190. $this->_ddpmdata($arg_array);
  191. }
  192. else if($arg == 'dqpmprovince')
  193. {
  194. $this->_dqpmprovince($arg_array);
  195. }
  196. else if($arg == 'ddpmexcel')
  197. {
  198. $this->_ddpmexcel($arg_array);
  199. }
  200. else if($arg == 'statedc')
  201. {
  202. $this->_statedc();
  203. }
  204. else if($arg == 'statedcwl')
  205. {
  206. $this->_statedcwl();
  207. }
  208. else if($arg == 'waybillemail')
  209. {
  210. $this->_waybillemail();
  211. }
  212. else if($arg == 'khdd')
  213. {
  214. $this->_khdd();
  215. }
  216. else if($arg == 'klarnadata')
  217. {
  218. $this->_klarnadata();
  219. }
  220. else if($arg == 'epod')
  221. {
  222. $this->_epod();
  223. }
  224. else if($arg == 'zw')
  225. {
  226. $this->_zw($arg_array);
  227. }
  228. else if($arg == 'thxz')
  229. {
  230. $this->_thxz($arg_array);
  231. }
  232. else if($arg == 'dcdxyz')
  233. {
  234. $this->_dcdxyz();
  235. }
  236. else if($arg == 'ddcf')
  237. {
  238. $this->_ddcf();
  239. }
  240. else if($arg == 'cf')
  241. {
  242. $this->_cf();
  243. }
  244. else
  245. {
  246. $this->_index();
  247. }
  248. }
  249. //管理
  250. public function _index()
  251. {
  252. $dt = 0;$fgshop = "shop = 0";$sid = 'id = 0';
  253. if(isset($_SESSION['api']))
  254. {
  255. $user = $this->user->get_api($_SESSION['api']);
  256. $usp = $user;
  257. $fgshop = "";$sid = "";
  258. $usersp = explode('|',trim($user['shop'],'|'));
  259. foreach ($usersp as $value)
  260. {
  261. $fgshop .= " shop = ".$value." or";
  262. $sid .= " id = ".$value." or";
  263. }
  264. if($user['vip'] == 1)
  265. {
  266. $vip = 1;
  267. }
  268. else
  269. {
  270. $vip = 0;
  271. }
  272. if(in_array($user['id'],[53241,10])){
  273. $this->data['yjtj'] = 1;
  274. }else{
  275. $this->data['yjtj'] = 0;
  276. }
  277. }
  278. else
  279. {
  280. $vip = 0;
  281. header('Location: /');exit;
  282. }
  283. $post = $this->input->post(NULL, TRUE);
  284. if(isset($post['page']))
  285. {
  286. $page = $this->input->post('page',true);
  287. $perpage = $this->input->post('perpage',true);
  288. $warehouse = $this->input->post('warehouse',true);
  289. $timetk = $this->input->post('timetk',true);
  290. $timetj = $this->input->post('timetj',true);
  291. $shop = $this->input->post('shop',true);
  292. $source = $this->input->post('source',true);
  293. $state = $this->input->post('state',true);
  294. $review = $this->input->post('review',true);
  295. $type = $this->input->post('type',true);
  296. $express = $this->input->post('express',true);
  297. $orderinfo = $this->input->post('orderinfo',true);
  298. $user = $this->input->post('user',true);
  299. $client = $this->input->post('name',true);
  300. $waybill = $this->input->post('waybill',true);
  301. $waybillid = $this->input->post('waybillid',true);
  302. $number = $this->input->post('number',true);
  303. $email = $this->input->post('email',true);
  304. $phone = $this->input->post('phone',true);
  305. $dlz = $this->input->post('dlz',true);
  306. $print = $this->input->post('print',true);
  307. $library = $this->input->post('library',true);
  308. $js = $this->input->post('js',true);
  309. $exstate = $this->input->post('exstate',true);
  310. $xztime = $this->input->post('xztime',true);
  311. $libraryconfirm = $this->input->post('libraryconfirm',true);
  312. $timetk = strtotime($timetk);
  313. $timetj = strtotime($timetj);
  314. $plorder = $this->input->post('pl',true);
  315. $paypal = $this->input->post('paypal',true);
  316. $pay = $this->input->post('pay',true);
  317. $klarna = $this->input->post('klarna',true);
  318. $orderremarks = $this->input->post('orderremarks',true);
  319. $zf = $this->input->post('zf',true);
  320. $where = "1=1 and (".rtrim($fgshop,'or').")";
  321. if($warehouse)
  322. {
  323. $where .= " and type = '$warehouse'";
  324. }
  325. if($timetk && $timetj)
  326. {
  327. $where .= " and ".$xztime." > '$timetk' and ".$xztime." < '$timetj'";
  328. }
  329. if($shop)
  330. {
  331. $where .= " and shop = '$shop'";
  332. }
  333. if($source)
  334. {
  335. if($source == '2d')
  336. {
  337. $where .= " and source >= '2'";
  338. }
  339. else
  340. {
  341. $where .= " and source = '$source'";
  342. }
  343. }
  344. if($state)
  345. {
  346. $where .= " and state = '$state'";
  347. }
  348. if($review)
  349. {
  350. $where .= " and review = '$review'";
  351. }
  352. if($type)
  353. {
  354. $where .= " and type = '$type'";
  355. }
  356. if($express)
  357. {
  358. $where .= " and express = '$express'";
  359. }
  360. if($orderinfo)
  361. {
  362. $where .= " and orderinfo = '$orderinfo' and orderinfo != '0'";
  363. }
  364. if($user)
  365. {
  366. $where .= " and user = '$user'";
  367. }
  368. if($client)
  369. {
  370. $where .= " and client like '%$client%'";
  371. }
  372. if($waybill)
  373. {
  374. $where .= " and waybill like '%$waybill%'";
  375. }
  376. if($waybillid){
  377. $where .= " and waybillid like '%".$waybillid."%'";
  378. }
  379. if($number)
  380. {
  381. $where .= " and number like '$number%'";
  382. }
  383. if($email)
  384. {
  385. $where .= " and ((email = '$email') or (send_email = '$email')) ";
  386. }
  387. if($phone)
  388. {
  389. $where .= " and phone like '%$phone%'";
  390. }
  391. if($library)
  392. {
  393. $where .= " and library = '$library'";
  394. }
  395. if($print)
  396. {
  397. $where .= " and print = '$print'";
  398. }
  399. if($dlz != '')
  400. {
  401. $where .= " and dlz = '$dlz'";
  402. }
  403. if($js)
  404. {
  405. $where .= " and js = '$js'";
  406. }
  407. if($exstate)
  408. {
  409. $where .= " and exstate = '$exstate'";
  410. }
  411. if($libraryconfirm)
  412. {
  413. $where .= " and libraryconfirm = '$libraryconfirm'";
  414. }
  415. if($klarna != '')
  416. {
  417. if($klarna == 2)
  418. {
  419. $where .= " and klarna >= '$klarna'";
  420. }
  421. else
  422. {
  423. $where .= " and klarna = '$klarna'";
  424. }
  425. }
  426. if($paypal)
  427. {
  428. $where .= " and paypal = '$paypal'";
  429. }
  430. if($pay)
  431. {
  432. $where .= " and pay = '$pay'";
  433. }
  434. if($zf)
  435. {
  436. if($zf == 1)
  437. {
  438. $where .= " and paypal not like '%-%-%-%'";
  439. }
  440. else
  441. {
  442. $where .= " and paypal like '%-%-%-%'";
  443. }
  444. }
  445. if($orderremarks){
  446. $where .= " and orderremarks like '%$orderremarks%'";
  447. }
  448. if($plorder)
  449. {
  450. $plorderinfo = '';$plnumber = '';$pln = 0;
  451. $plorder = explode(',',trim($plorder,','));
  452. foreach ($plorder as $value)
  453. {
  454. if(is_numeric($value))
  455. {
  456. $plorderinfo .= " orderinfo = ".$value." or";
  457. }
  458. else if($value != '')
  459. {
  460. $plorderinfo .= " number = '".$value."' or";
  461. }
  462. }
  463. if($pln > 0)
  464. {
  465. $where .= " and (".rtrim($plorderinfo,'or').") and (".rtrim($plnumber,'or').")";
  466. }
  467. else
  468. {
  469. $where .= " and (".rtrim($plorderinfo,'or').")";
  470. }
  471. }
  472. //数据排序
  473. $order_str = "dtime desc";
  474. if(empty($page))
  475. {
  476. $start = 0;
  477. $perpage = 1;
  478. }
  479. else
  480. {
  481. $start = ($page - 1)*$perpage;
  482. }
  483. //取得信息列表id,shop,type,source,user,orderinfo,number,name,state,buytime,clientremarks,review,print,library,libraryconfirm,express,waybill,orderremarks,black
  484. $info_list = $this->fullorder->find_all($where,'id,shop,type,orderinfo,number,sname,email,state,buytime,review,libraryconfirm,express,waybill,orderremarks,library,black,clientremarks,waybillid',$order_str,$start,$perpage);
  485. //格式化数据
  486. foreach ($info_list as $key=>$value)
  487. {
  488. $rginfo = $this->returngoods->get_orderinfo($value['orderinfo']);
  489. if(!empty($rginfo)){
  490. $info_list[$key]['number'] = $value['number']."<br/>".'<p style="color:blue"><i class="method fa fa-exclamation-circle" data-t="'.$rginfo['remark'].'"></i><p>';
  491. }
  492. $ud = $this->fullorder->read($value['id']);
  493. $ud['address'] = str_replace("'","’",$ud['address']);
  494. $ud['name'] = str_replace("'","’",$ud['name']);
  495. $customer = $this->customer->get_email($ud['email'],$value['shop']);
  496. if(empty($customer)){
  497. $customer = $this->customer->get_email($ud['send_email'],$value['shop']);
  498. }
  499. $customernum = $this->fullorder->find_count("email = '".$ud['email']."' and shop = '".$value['shop']."' and extra_status = 0");
  500. preg_match_all('/[0-9]/u',$ud['phone'],$result);
  501. $numphone = join('',$result[0]);
  502. $hmdaddress1 = str_replace(array(' parkway',' drive',' street',' road',' avenue',' boulevard',' alley',' court',' place',' lane',' manor',' terrace',' trail',' view',' cove'),array(' pkwy',' dr',' st',' rd',' av',' blvd',' aly',' ct',' pl',' ln',' mnr',' ter',' trl',' vw',' cv'),strtolower($ud['address']));
  503. $hmdaddress2 = str_replace(array(' pkwy',' dr',' st',' rd',' av',' blvd',' aly',' ct',' pl',' ln',' mnr',' ter',' trl',' vw',' cv'),array(' parkway',' drive',' street',' road',' avenue',' boulevard',' alley',' court',' place',' lane',' manor',' terrace',' trail',' view',' cove'),strtolower($ud['address']));
  504. $hmdaddress3 = str_replace(array(' avenue',' ave',' av'),array(' ave',' avenue',' ave'),strtolower($ud['address']));
  505. if($numphone == '0')
  506. {
  507. $customerb = $this->customer->find_all("type = 2 and (email = '".$ud['email']."' or address = '".$ud['address']."' or address = '".$hmdaddress1."' or address = '".$hmdaddress2."' or address = '".$hmdaddress3."' or phone = '".$numphone."')",'*','id desc');
  508. }
  509. else
  510. {
  511. $customerb = $this->customer->find_all("type = 2 and (email = '".$ud['email']."' or address = '".$ud['address']."' or address = '".$hmdaddress1."' or address = '".$hmdaddress2."' or address = '".$hmdaddress3."' or numphone = '".$numphone."')",'*','id desc');
  512. }
  513. $customerc = $this->customer->find_all("type = 1 and shop = '".$ud['shop']."' and address = '".$ud['address']."' and numphone = '".$numphone."'",'*','id desc');
  514. $customerd = $this->customer->find_all("type = 2 and shop = '".$ud['shop']."' and email = '".$ud['email']."'",'*','id desc');
  515. //$a = array_column($customer, 'email'); //三维找其中健的数组
  516. //$a = array_flip($a); //键和值调换
  517. $djcount = '';
  518. $lkh = $value['sname'];
  519. $djlkh = 0;$djhmd = 0;
  520. if($customer)
  521. {
  522. if($customer['count'] != '' && $customernum < 2)
  523. {
  524. $count = '<i class="method fa fa-exclamation-circle" data-t="'.$customer['count'].'"></i>';
  525. $djcount = $count;
  526. }
  527. if(($customer['type'] == 1 && $customernum > 1))// || $customerc['type'] == 1 && $customerc['num'] > 1
  528. {
  529. $count = $customer['count']?'<i class="method fa fa-exclamation-circle" data-t="'.$customer['count'].'"></i>':'';
  530. $lkh = "<p>".$value['sname']."</p><p style='color:#FF3333'>".$count."老客户(".$customer['num'].")</p>";
  531. $djlkh = 1;
  532. $djcount = $count;
  533. }
  534. else if(isset($customerc[0]['num']))
  535. {
  536. if($customerc[0]['num'] > 1)
  537. {
  538. $count = $customer['count']?'<i class="method fa fa-exclamation-circle" data-t="'.$customer['count'].'"></i>':'';
  539. $lkh = "<p>".$value['sname']."</p><p style='color:#FF3333'>".$count."老客户(".$customer['num'].")</p>";
  540. $djlkh = 1;
  541. $djcount = $count;
  542. }
  543. }
  544. }
  545. if($customerb)
  546. {
  547. $hmsp = $this->shop->read($customerb[0]['shop']);
  548. $count = $customerb[0]['count']?'<i class="method fa fa-exclamation-circle" data-t="'.$customerb[0]['count'].'"></i>':'';
  549. $lkh = "<p>".$value['sname']."</p><p style='color:#9900CC'>".$count."黑名单</p><p style='color:#9900CC'>来自".$hmsp['shopname']."</p>";
  550. $djhmd = 1;
  551. if($customerd)
  552. {
  553. if($customerd[0]['num'] > 1)
  554. {
  555. $count = $customerd[0]['count']?'<i class="method fa fa-exclamation-circle" data-t="'.$customerd[0]['count'].'"></i>':'';
  556. $lkh = "<p>".$value['sname']."</p><p style='color:#FF3333'>".$count."老客户</p>";
  557. $djlkh = 1;
  558. $djcount = $count;
  559. $djlkh = 1;
  560. }
  561. }
  562. }
  563. if($djlkh == '1' && $djhmd == '1')
  564. {
  565. $lkh = "<p>".$value['sname']."</p><p style='color:#9900CC'><em style='color:#FF3333'>".$djcount."老客户</em> - ".$count."黑名单</p><p style='color:#9900CC'>来自".$hmsp['shopname']."</p>";
  566. }
  567. if($djlkh != '1' && $djhmd != '1' && $djcount)
  568. {
  569. $info_list[$key]['sname'] = $lkh."<p style='color:#FF3333'>".$djcount."</p>";
  570. }
  571. else
  572. {
  573. $info_list[$key]['sname'] = $lkh;
  574. }
  575. // $rginfo_list = $this->returngoods->find_all("email = '".$value['email']."'");
  576. // if(!empty($rginfo_list))
  577. // {
  578. // $tmp_str = '';
  579. // foreach ($rginfo_list as $k => $v) {
  580. // $tmp_str .= $v['remark'].'<br/>';
  581. // }
  582. // $info_list[$key]['sname'] = $info_list[$key]['sname']."<br/>售后单(".count($rginfo_list).")".'<p style="color:blue"><i class="method fa fa-list-ul" data-t="'.$tmp_str.'"></i><p>';
  583. // }
  584. $shop = $this->shop->read($value['shop']);
  585. $info_list[$key]['shop'] = $shop['shopname'];
  586. //$info_list[$key]['user'] = $shop['shopuser'];
  587. $warehouse = $this->warehouse->read($value['type']);
  588. $warehousetitle = $warehouse['title'];
  589. if($value['type'] != 13){$warehousetitle = "<font style='color:#f64b4b'>".$warehouse['title']."</font>";}
  590. $info_list[$key]['type'] = $warehousetitle;
  591. if(empty($ud['send_email'])){
  592. $info_list[$key]['email'] = '<em style="font-size: 13px;">'.$value['email'].'</em><br />'.$ud['phone'];
  593. }else{
  594. $info_list[$key]['email'] = '<em style="font-size: 13px;">'.$value['email'].'</em><br />'.'<em style="font-size: 13px;">'.$ud['send_email'].'</em><br />'.$ud['phone'];
  595. }
  596. $typeclass = $this->typeclass->read($value['state']);
  597. $info_list[$key]['state'] = "<font style='font-size: 13px;'>".$typeclass['spare']."</font>";
  598. /**
  599. $wl = '';
  600. if($value['exstate'] == '99')
  601. {
  602. $wl = '<font style="color:#ccc">未获取到物流信息</font>';
  603. }
  604. else if($value['exstate'] == '1')
  605. {
  606. $wl = '<font id="wl'.$ud['id'].'" class="lbwlxx">已揽收<font style="display: none">'.$ud['excontent'].'</font></font>';
  607. }
  608. else if($value['exstate'] == '2')
  609. {
  610. $wl = '<font id="wl'.$ud['id'].'" class="lbwlxx">在途中<font style="display: none">'.$ud['excontent'].'</font></font>';
  611. }
  612. else if($value['exstate'] == '3')
  613. {
  614. $wl = '<font id="wl'.$ud['id'].'" class="lbwlxx">派送中<font style="display: none">'.$ud['excontent'].'</font></font>';
  615. }
  616. else if($value['exstate'] == '4')
  617. {
  618. $wl = '<font id="wl'.$ud['id'].'" class="lbwlxx">已签收<font style="display: none">'.$ud['excontent'].'</font></font>';
  619. }
  620. else if($value['exstate'] == '5')
  621. {
  622. $wl = '<font id="wl'.$ud['id'].'" class="lbwlxx">派送异常<font style="display: none">'.$ud['excontent'].'</font></font>';
  623. }
  624. $info_list[$key]['exstate'] = $wl.'<br />';
  625. **/
  626. if($ud['source'] == 1) //线下单用订单时间,其他用付款时间
  627. {
  628. $info_list[$key]['buytime'] = '<p style="font-size: 13px;">'.date('Y-m-d',$ud['dtime']).'</p><p style="font-size: 13px;">'.date('H:i:s',$ud['dtime']).'</p>';
  629. }
  630. else
  631. {
  632. $info_list[$key]['buytime'] = '<p style="font-size: 13px;">'.date('Y-m-d',$value['buytime']+$dt).'</p><p style="font-size: 13px;">'.date('H:i:s',$value['buytime']+$dt).'</p>';
  633. }
  634. if($value['review'] == 1)
  635. {
  636. $info_list[$key]['review'] = "<font style='font-size: 13px;'>未送审</font>";
  637. }
  638. else if($value['review'] == 2)
  639. {
  640. $info_list[$key]['review'] = "<font style='color:#555;font-size: 13px;'>待审核</font>";
  641. }
  642. else if($value['review'] == 3)
  643. {
  644. $info_list[$key]['review'] = "<font style='color:#f90f4b;font-size: 13px;'>不通过</font>";
  645. }
  646. else if($value['review'] == 4)
  647. {
  648. $info_list[$key]['review'] = "<font style='font-size: 13px;'>取消重审</font>";
  649. }
  650. else if($value['review'] == 5)
  651. {
  652. $info_list[$key]['review'] = "<font style='color:#2f80f9;font-size: 13px;'>审核通过</font>";
  653. }
  654. else if($value['review'] == 6)
  655. {
  656. $info_list[$key]['review'] = "<font style='color:#2f80f9;font-size: 13px;'>自动通过</font>";
  657. }
  658. if($ud['dlz'] == 1)
  659. {
  660. $dlz = "<p>独立站已更新</p>";
  661. }
  662. else if($ud['dlz'] == 3)
  663. {
  664. $dlz = "<p>不需要更新</p>";
  665. }
  666. else if($ud['dlz'] == 2)
  667. {
  668. $dlz = "<p style='color:#C3C'>独立站更新失败</p>";
  669. }
  670. else
  671. {
  672. $dlz = "";
  673. }
  674. if($value['waybill'] != "")
  675. {
  676. $info_list[$key]['waybill'] = "<p>".$value['waybill']."</p>".$dlz;
  677. //如果是云尚快线那么需要展示一个可以查全程的运单号
  678. if( !empty($value['waybillid'])){
  679. $info_list[$key]['waybill'] = "<p>".$value['waybill']."</p>".$dlz."<p>".$value['waybillid']."</p>";
  680. }
  681. }
  682. if($value['express'] != 0)
  683. {
  684. $express = $this->express->read($value['express']);
  685. $expressservicename = $express['servicename'];
  686. if($value['express'] != 1 && $value['express'] != 63)
  687. {
  688. $expressservicename = "<font style='color:#f64b4b'>".$express['servicename']."</font>";
  689. }
  690. else if($value['express'] == 63)
  691. {
  692. $expressservicename = "<font style='color:#a910f8'>".$express['servicename']."</font>";
  693. }
  694. $info_list[$key]['express'] = $expressservicename;
  695. }
  696. else
  697. {
  698. $info_list[$key]['express'] = "无";
  699. }
  700. $x = "";
  701. if($value['libraryconfirm'] == 2 && $value['review'] > 4 && $ud['library'] == 1)
  702. {
  703. $x = "<p class='ckn'><b class='fojz' data-type='1'>禁止发货</b></p>";
  704. }
  705. else if(($value['review'] > 4) && $ud['print'] != 1 && $value['libraryconfirm'] == 1)
  706. {
  707. $x = "<p class='ckn'><b class='fojzof' data-type='6' data-id='".$value['id']."'>允许发货</b></p>";
  708. }
  709. if(($value['review'] > 4) && $ud['print'] == 2)
  710. {
  711. $x = "<p class='ckn'><b class='fojzof' data-type='7' data-id='".$value['id']."'>禁止打印</b></p>";
  712. }
  713. else if($value['review'] >4 && $ud['print'] == 1)
  714. {
  715. $x = "<p class='ckn'><b class='fojzof' data-type='8' data-id='".$value['id']."'>允许打印</b></p>";
  716. }
  717. if($value['waybill'] == "" && $value['review'] > 4)
  718. {
  719. $x .= "<p><b class='kn' data-type='2'>填写运单号</b></p>";
  720. }
  721. else if($value['waybill'] != "" && $value['review'] > 4)
  722. {
  723. $x .= "<p><b class='kn' data-type='2'>修改运单号</b></p>";
  724. }
  725. if(($value['review'] == 1 || $value['review'] == 3) && $ud['express'] > 0 && $ud['dtsbjz'] != 0 && $ud['ts'] != 0 && $ud['zsbjz'] != 0 && $ud['zjs'] != 0 && $ud['ts'] != 0 && ($ud['merge'] == 0 || $ud['merge'] != 0 && $ud['merge'] == $ud['id']))
  726. {
  727. $x .= "<p><b class='focz' data-type='2' data-id='".$value['id']."'>提交审核</b></p>";
  728. }
  729. $x .= "<p><b class='window' data-h='/customer/edit/".$customer['id']."' data-t='客户信息 - 修改'>客户信息</b></p>";
  730. $info_list[$key]['black'] = $x;
  731. $tly = "";
  732. if($value['clientremarks'] != "")
  733. {
  734. $tly = "<p style='color:#FF3333'>有客户留言</p>";
  735. }
  736. if($value['review'] > 4 && $usp['vip'] != 1 && ($ud['merge'] == 0 || $ud['merge'] == $ud['id']))
  737. {
  738. $info_list[$key]['orderinfo'] = "<h9 class='window' data-h='/fullorder/readonly/".$value['id']."' data-t='订单号:".$value['orderinfo']."'><p>".$value['orderinfo']."</p>".$tly."</h9>";
  739. }
  740. else if($ud['merge'] == 0 || $ud['merge'] == $ud['id'])
  741. {
  742. $info_list[$key]['orderinfo'] = "<h9 class='window' data-h='/fullorder/edit/".$value['id']."' data-t='订单号:".$value['orderinfo']."'><p>".$value['orderinfo']."</p>".$tly."</h9>";
  743. }
  744. else if($ud['merge'] != 0 && $ud['merge'] != $ud['id'])
  745. {
  746. $info_list[$key]['orderinfo'] = "<h9 class='window' data-h='/fullorder/edit/".$value['id']."' data-t='订单号:".$value['orderinfo']."' style='color:#000'><p>".$value['orderinfo']."</p>".$tly."</h9>"."<p>合并订单</p>";
  747. }
  748. else
  749. {
  750. $info_list[$key]['orderinfo'] = "<h9 class='window' data-h='/fullorder/edit/".$value['id']."' data-t='订单号:".$value['orderinfo']."'><p>".$value['orderinfo']."</p>".$tly."</h9>";
  751. }
  752. if($value['library'] == 1 && $ud['printtype'] == 3)
  753. {
  754. $info_list[$key]['library'] = "不需要";
  755. }
  756. else if($value['library'] == 1 && $ud['printtype'] != 3)
  757. {
  758. $info_list[$key]['library'] = "未出库";
  759. }
  760. else if($value['library'] == 2)
  761. {
  762. $info_list[$key]['library'] = '<p>'.date('Y-m-d',$ud['librarytime']).'</p><p>'.date('H:i:s',$ud['librarytime']).'出库</p>';
  763. }
  764. else if($value['library'] == 3)
  765. {
  766. $info_list[$key]['library'] = '<p>'.date('Y-m-d',$ud['retreattime']).'</p><p>'.date('H:i:s',$ud['retreattime']).'退库</p>';
  767. }
  768. unset($info_list[$key]['waybillid']);
  769. }
  770. $total = $this->fullorder->find_count($where);
  771. $pagenum = ceil($total/$perpage);
  772. $over = $total-($start+$perpage);
  773. $rows = array('total'=>$total,'over'=>$over,'pagenum'=>$pagenum,'rows'=>($info_list));
  774. echo json_encode($rows);exit;
  775. }
  776. $wlshop = $this->shop->find_all('1=1 and '.rtrim($sid,'or'));
  777. $this->data['wlshop'] = $wlshop;
  778. $this->data['express'] = $this->express->find_all();
  779. $user = $this->user->get_api($_SESSION['api']);
  780. $powerid = $this->power->read($user['power']);
  781. $powertext = explode('|',trim($powerid['excelid'],'|'));
  782. $pid = '';
  783. foreach ($powertext as $v)
  784. {
  785. $pid .= " id = ".$v." or";
  786. }
  787. $fullorderexcel = $this->fullorderexcel->find_all("type = '100001' and (".rtrim($pid,'or').")",'*','idorder desc');//导出模板
  788. $this->data['fullorderexcel'] = $fullorderexcel;
  789. $error = $this->fullorder->find_count("failed !='' and mergeid = 0 and print != 3 and (".rtrim($fgshop,'or').") and dtime > '".(time()-90*24*3600)."'");
  790. $this->data['error'] = $error;
  791. $cs_num = $this->fullordererrors->find_count( " plat = 'fullorder' and error_type = 1 and (".rtrim($fgshop,'or'). " ) and error_time > '".(time()-90*24*3600)."'");
  792. $this->data['cs_num'] = $cs_num;
  793. $this->data['power'] = $vip;
  794. $this->_Template('fullorder',$this->data);
  795. }
  796. //筛选重复订单
  797. public function _repeat()
  798. {
  799. $user = $this->user->get_api($_SESSION['api']);
  800. if($user)
  801. {
  802. $fgshop = "";$sid = "";
  803. $user = explode('|',trim($user['shop'],'|'));
  804. foreach ($user as $value)
  805. {
  806. $fgshop .= " shop = ".$value." or";
  807. $sid .= " id = ".$value." or";
  808. }
  809. }
  810. $post = $this->input->post(NULL, TRUE);
  811. if(isset($post['page']))
  812. {
  813. $page = $this->input->post('page',true);
  814. $perpage = $this->input->post('perpage',true);
  815. $shop = $this->input->post('shop',true);
  816. $email = $this->input->post('email',true);
  817. $timetk = $this->input->post('timetk',true);
  818. $timetj = $this->input->post('timetj',true);
  819. $timetk = strtotime($timetk);
  820. $timetj = strtotime($timetj);
  821. //$where = "print != 999 and state = 207 and review <= 2 and number NOT like '%-%-%-%' and (".rtrim($fgshop,'or').")";
  822. $where = "print != 999 and state = 207 and review <= 2 and (".rtrim($fgshop,'or').")";
  823. if($shop)
  824. {
  825. $where .= " and shop = '$shop'";
  826. }
  827. if($email)
  828. {
  829. $where .= " and email = '$email'";
  830. }
  831. if($timetk && $timetj)
  832. {
  833. $where .= " and dtime > '$timetk' and dtime < '$timetj'";
  834. }
  835. //数据排序
  836. $order_str = "id desc";
  837. if(empty($page))
  838. {
  839. $start = 0;
  840. $perpage = 1;
  841. }
  842. else
  843. {
  844. $start = ($page - 1)*$perpage;
  845. }
  846. //取得信息列表
  847. $info_list = $this->fullorder->find_all($where,'id,shop,orderinfo,number,name,email,address,state,dtime,shipremarks,type,merge');
  848. $info = array();
  849. $len = count($info_list);
  850. //格式化数据
  851. foreach ($info_list as $key=>$value)
  852. {
  853. $ud = $this->fullorder->read($value['id']);
  854. $shop = $this->shop->read($value['shop']);
  855. $warehouse = $this->warehouse->read($value['type']);
  856. $info_list[$key]['shop'] = '<p>'.$shop['shopname'].'</p>'.'<p>'.$warehouse['title'].'</p>';
  857. $info_list[$key]['email'] = '<p>'.$value['email'].'</p>'.'<p>'.$ud['phone'].'</p>';
  858. $typeclass = $this->typeclass->read($value['state']);
  859. $info_list[$key]['state'] = $typeclass['spare'];
  860. $info_list[$key]['type'] = $ud['orderremarks'];
  861. $info_list[$key]['dtime'] = '<p>'.date('Y-m-d',$value['dtime']).'</p><p>'.date('H:i:s',$value['dtime']).'</p>';
  862. if($value['merge'] == 0)
  863. {
  864. $info_list[$key]['merge'] = "<p>可合并</p>";
  865. }
  866. else
  867. {
  868. if($value['merge'] == $value['id'])
  869. {
  870. if($ud['print'] < '3' && $ud['library'] == '1')
  871. {
  872. $info_list[$key]['merge'] = "<p><b class='cforder' data-id='".$value['id']."'>拆分订单</b></p>";
  873. }
  874. else
  875. {
  876. $info_list[$key]['merge'] = "已合并";
  877. }
  878. }
  879. else
  880. {
  881. $info_list[$key]['merge'] = "被合并";
  882. }
  883. }
  884. }
  885. /** 操作合并
  886. if($value['merge'] == 0)
  887. {
  888. $info_list[$key]['merge'] = "<p><b class='jd' data-type='5'>合并订单</b></p>";
  889. }
  890. else
  891. {
  892. if($value['merge'] == $value['id'])
  893. {
  894. $info_list[$key]['merge'] = "已合并";
  895. }
  896. else
  897. {
  898. $info_list[$key]['merge'] = "被合并";
  899. }
  900. }
  901. **/
  902. $asd = array();
  903. for($i=0;$i<$len;$i++)
  904. {
  905. for($j=$i+1;$j<$len;$j++)
  906. {
  907. if (strtolower($info_list[$i]['address']) == strtolower($info_list[$j]['address']) && stripos($info_list[$i]['number'],$info_list[$j]['number']) === false && stripos($info_list[$j]['number'],$info_list[$i]['number']) === false) //$info_list[$i]['email'] == $info_list[$j]['email']
  908. {
  909. if(!array_key_exists($j,$info))
  910. {
  911. $info[$j] = $info_list[$j];
  912. }
  913. if(!array_key_exists($i,$info))
  914. {
  915. $info[$i] = $info_list[$i];
  916. }
  917. }
  918. }
  919. }
  920. rsort($info);
  921. $total = count($info);
  922. $pagenum = ceil($total/$perpage);
  923. $over = $total-($start+$perpage);
  924. $rows = array('total'=>$total,'over'=>$over,'pagenum'=>$pagenum,'rows'=>(array_slice($info,$start,$perpage)));
  925. echo json_encode($rows);exit;
  926. }
  927. $wlshop = $this->shop->find_all('1=1 and '.rtrim($sid,'or'));
  928. $this->data['wlshop'] = $wlshop;
  929. $this->_Template('fullorder_repeat',$this->data);
  930. }
  931. //修改
  932. public function _edit($arg_array)
  933. {
  934. if(isset($_SESSION['api']))
  935. {
  936. $user = $this->user->get_api($_SESSION['api']);
  937. if($user['vip'] == 1)
  938. {
  939. $vip = 1;
  940. }
  941. else
  942. {
  943. $vip = 0;
  944. }
  945. $this->data['userid'] = $user['id'];
  946. }
  947. else
  948. {
  949. $this->data['userid'] = 0;
  950. $vip = 0;
  951. }
  952. $post = $this->input->post(NULL, TRUE);
  953. if(isset($post['id']))
  954. {
  955. // $dtsbjz = $this->input->post('dtsbjz',true);
  956. // $ts = $this->input->post('ts',true);
  957. // $dtsbjz = sprintf("%.2f",$dtsbjz);
  958. // $total_sbjz = $dtsbjz*$ts;
  959. // $tmp_zsbjz = $this->input->post('zsbjz',true);
  960. // $tmp_zsbjz = sprintf("%.2f",$tmp_zsbjz);
  961. // if($tmp_zsbjz*1 != $total_sbjz){
  962. // echo json_encode(array('msg'=>'单条申报价为2为小数!','success'=>false));exit;
  963. // }
  964. $id = $this->input->post('id',true);
  965. $ud = $data = $this->fullorder->read($id);
  966. $post['type'] = $this->input->post('warehouse',true);
  967. $post['country'] = $this->input->post('country',true);
  968. $currency = $this->country->read($post['country']);
  969. $post['al'] = $currency['lb'];
  970. $post['freight'] = $this->input->post('freight',true);
  971. $post['expressmoney'] = $this->input->post('expressmoney',true);
  972. $post['shouldmoney'] = $this->input->post('shouldmoney',true);
  973. $orderremarks = $this->input->post('orderremarks');
  974. $orderremarks = str_replace(array('%26','%2B'),array('&','+'),$orderremarks);
  975. $post['orderremarks'] = $orderremarks;
  976. $shipremarks = $this->input->post('shipremarks');
  977. $shipremarks = str_replace(array('%26','%2B'),array('&','+'),$shipremarks);
  978. $post['shipremarks'] = preg_replace('/( | | |\s)/',' ',$shipremarks);
  979. $email = $this->input->post('email',true);
  980. $post['email'] = preg_replace('/( | | |\s)/','',$email);
  981. //$post['paypal'] = $this->input->post('paypal',true);
  982. $name = $this->input->post('name',true);
  983. $post['name'] = str_replace("'","’",$name);
  984. $post['phone'] = $this->input->post('phone',true);
  985. $post['phone'] = preg_replace('/\D/s','',$post['phone']);
  986. $post['phone'] = preg_replace('/( | | |\s)/','',$post['phone']);
  987. $post['country'] = $this->input->post('country',true);
  988. $post['province'] = $this->input->post('province',true);//省、州
  989. $post['province'] = preg_replace("/^[\s\v".chr(227).chr(128)."]+/","", $post['province']); //替换开头空字符
  990. $post['province'] = preg_replace("/[\s\v".chr(227).chr(128)."]+$/","", $post['province']); //替换结尾空字符
  991. $post['city'] = $this->input->post('city',true);//城市
  992. $post['city'] = preg_replace("/^[\s\v".chr(227).chr(128)."]+/","", $post['city']); //替换开头空字符
  993. $post['city'] = preg_replace("/[\s\v".chr(227).chr(128)."]+$/","", $post['city']); //替换结尾空字符
  994. $post['zipcode'] = $this->input->post('zipcode',true);//邮编
  995. $post['zipcode'] = preg_replace("/^[\s\v".chr(227).chr(128)."]+/","", $post['zipcode']); //替换开头空字符
  996. $post['zipcode'] = preg_replace("/[\s\v".chr(227).chr(128)."]+$/","", $post['zipcode']); //替换结尾空字符
  997. $post['street'] = $this->input->post('street',true);
  998. $address = $this->input->post('address',true);
  999. $address = preg_replace('/( | | |\s)/',' ',$address);
  1000. $post['address'] = str_replace("'","’",$address);
  1001. $address2 = $this->input->post('address2',true);
  1002. $address2 = preg_replace('/( | | |\s)/',' ',$address2);
  1003. if($address2 == ' ')
  1004. {
  1005. $address2 = '';
  1006. }
  1007. $post['address2'] = str_replace("'","’",$address2);
  1008. $post['express'] = $this->input->post('express',true);
  1009. $post['printtype'] = $this->input->post('printtype',true);
  1010. $fpdata = $this->input->post('fpdata');
  1011. $fpdata = str_replace(array('%26','%2B'),array('&','+'),$fpdata);
  1012. $post['fpdata'] = $fpdata;
  1013. $post['waybill'] = $this->input->post('waybill',true);
  1014. $post['msg'] = $this->input->post('msg',true);
  1015. $post['zsbjz'] = $this->input->post('zsbjz',true);
  1016. $post['refundy'] = $this->input->post('refundy',true);
  1017. $post['refundj'] = $this->input->post('refundj',true);
  1018. $rtime = $this->input->post('rtime',true);
  1019. $post['rtime'] = strtotime($rtime);
  1020. $post['rpaypal'] = $this->input->post('rpaypal',true);
  1021. $post['rtext'] = $this->input->post('rtext',true);
  1022. $post['sbpm'] = $this->input->post('sbpm',true);
  1023. $post['edittime'] = time();
  1024. $editstate = $this->input->post('state',true);
  1025. if(!$editstate)
  1026. {
  1027. $editstate = $data['state'];
  1028. }
  1029. $whlabel = $this->input->post('whlabel',true);
  1030. $fpcount = $this->input->post('fpcount',true);
  1031. $post['ioss'] = $this->input->post('ioss',true);
  1032. $post['waybill'] = preg_replace('/( | | | |\s)/','',$post['waybill']);
  1033. $pay = $this->pay->get_typeclass($data['pay']);
  1034. $yga = $post['shouldmoney'];
  1035. $ygc = $data['estimaterate'];
  1036. $post['budget'] = 0;
  1037. if($post['email'] == $post['send_email']){
  1038. $post['send_email'] = '';
  1039. }
  1040. $ifbudget = eval("return $yga*1.$ygc;");
  1041. if($ifbudget > 0)
  1042. {
  1043. $post['budget'] = eval("return $yga*1.$ygc;");
  1044. }
  1045. if($data['estimaterate'] == 1){
  1046. $post['budget'] = $post['shouldmoney'];
  1047. }
  1048. $whlabeldata = explode('|',trim($whlabel,'|'));$way = 0;
  1049. foreach ($whlabeldata as $va)
  1050. {
  1051. if(stripos($va,'z') !== false)
  1052. {
  1053. $way += 1;
  1054. }
  1055. }
  1056. //如果备注中出现网红的两个字 ,那么在fpdata种的品名中必须有 WH这两个字 且美仓不用
  1057. if($post['type'] !=5 ){
  1058. if(stripos($post['shipremarks'],'网红') !== false){
  1059. if(stripos($post['fpdata'],'-2090-') === false){
  1060. echo json_encode(array('msg'=>'网红单请在商品名称中勾选WH!','success'=>false));exit;
  1061. }
  1062. }
  1063. }
  1064. if((($post['express'] == 2 || $post['express'] == 63 || $post['express'] == 64 || $post['express'] == 81 || $post['express'] == 85 || $post['express'] == 87 ) && $post['type'] != 5) )
  1065. {
  1066. echo json_encode(array('msg'=>'此快递方式必须从美仓发货!','success'=>false));exit;
  1067. }
  1068. // if( ($post['express'] != 2 && $post['express'] != 63 && $post['express'] != 64 && $post['express'] != 81 && $post['express'] != 85 && $post['express'] != 87 && $post['type'] == 5)){
  1069. // echo json_encode(array('msg'=>'此快递方式不能美仓发货!','success'=>false));exit;
  1070. // }
  1071. if((!in_array($post['express'],[2,63,64,81,85,86,87])) && ($post['type'] == 5)){
  1072. echo json_encode(array('msg'=>'此快递方式不能美仓发货!','success'=>false));exit;
  1073. }
  1074. //仅独立站 地址美国对电话 10或者11位进行判断
  1075. if($post['country'] == 192){
  1076. if((strlen($post['phone'])!= 10) && (strlen($post['phone'])!= 11)){
  1077. echo json_encode(array('msg'=>'美国电话号码应为10/11位!','success'=>false));exit;
  1078. }
  1079. }
  1080. $post['library'] = $ud['library'];
  1081. //减少代码复用吧
  1082. $lo_ret = $this->logic_order->checkEditExpress($post);
  1083. if($lo_ret['code'] != 1){
  1084. echo json_encode(array('msg'=>$lo_ret['msg'],'success'=>false));exit;
  1085. }
  1086. //检测PayPal有但是为空的情况
  1087. if(isset($post['paypal'])){
  1088. if(empty($post['paypal'])){
  1089. echo json_encode(array('msg'=>'交易号不可为空!','success'=>false));exit;
  1090. }
  1091. }else{
  1092. $tmp_info = $this->fullorder->read($post['id']);
  1093. if(empty($tmp_info)){
  1094. echo json_encode(array('msg'=>'订单信息异常','success'=>false));exit;
  1095. }
  1096. if(empty($tmp_info['paypal'])){
  1097. echo json_encode(array('msg'=>'交易号不可为空!','success'=>false));exit;
  1098. }
  1099. }
  1100. // if($post['express'] == 42 && $post['sbpm'] != 'Human Hair Wigs' && $post['sbpm'] != 'Human Hair Goods')//$post['express'] == 3 ||
  1101. // {
  1102. // echo json_encode(array('msg'=>'此快递方式必须选择Human Hair Wigs/Human Hair Goods!','success'=>false));exit;
  1103. // }
  1104. // if($post['express'] == 24 && $post['sbpm'] != 'Hair Sample' && $post['sbpm'] != 'Human Hair Wigs' && $post['sbpm'] != 'Human Hair Goods')//$post['express'] == 3 ||
  1105. // {
  1106. // echo json_encode(array('msg'=>'此快递方式必须选择Hair Sample/Human Hair Wigs/Human Hair Goods!','success'=>false));exit;
  1107. // }
  1108. // if($post['country'] != 192 && $post['express'] == 1 && $post['sbpm'] != 'Synthetic Hair Wigs' && $post['sbpm'] != 'Synthetic Hair Goods')//$post['express'] == 3 ||
  1109. // {
  1110. // echo json_encode(array('msg'=>'非美国选择官方DHL必须选择Synthetic Hair Wigs/Synthetic Hair Goods','success'=>false));exit;
  1111. // }
  1112. if($way == count($whlabeldata) && $post['type'] != 12)
  1113. {
  1114. echo json_encode(array('msg'=>'必须选择特殊仓!','success'=>false));exit;
  1115. }
  1116. if($way == '0' && $post['type'] == 12)
  1117. {
  1118. echo json_encode(array('msg'=>'特殊仓必须包含特殊仓货物!','success'=>false));exit;
  1119. }
  1120. $post['review'] = 1;
  1121. if($post['zsbjz'] < '0.01')
  1122. {
  1123. echo json_encode(array('msg'=>'总申报价错误!','success'=>false));exit;
  1124. }
  1125. if($data['library'] == 1)
  1126. {
  1127. if($data['print'] != 3)
  1128. {
  1129. $post['print'] = 1;
  1130. $post['libraryconfirm'] = 1;
  1131. $post['librarynot'] = "订单未打印,未审核或未通过";
  1132. }
  1133. else
  1134. {
  1135. $post['libraryconfirm'] = 1;
  1136. $post['librarynot'] = "订单被修改或重新提交";
  1137. }
  1138. }
  1139. if($data['yhs'] == 1)
  1140. {
  1141. echo json_encode(array('msg'=>'仓库货物验证中,请稍后再试!','success'=>false));exit;
  1142. }
  1143. if($post['express'] == 2 && (stripos($post['name'],'&') !== false || stripos($post['name'],"'") !== false))
  1144. {
  1145. echo json_encode(array('msg'=>'USPS收件人或公司名不可用特殊符号!','success'=>false));exit;
  1146. }
  1147. if(strlen($post['client']) > 34 || strlen($post['name']) > 34)//收件人姓名或公司名不允许超过35位
  1148. {
  1149. echo json_encode(array('msg'=>'收件人姓名或公司名不可超过34个字符!','success'=>false));exit;
  1150. }
  1151. if($post['express'] == '3' && $post['address2'] != '')//UPS不允许提交地址2
  1152. {
  1153. echo json_encode(array('msg'=>'UPS不允许提交地址2','success'=>false));exit;
  1154. }
  1155. if(($post['express'] == '5' || $post['express'] == '24' || $post['express'] == '42' || $post['express'] == '31') && $post['country'] != 192)
  1156. {
  1157. echo json_encode(array('msg'=>'非美国无法选择Fedex、DHL官方-美国!','success'=>false));exit;
  1158. }
  1159. if($post['express'] == '3' && $post['country'] != 192 && $post['country'] != 35)
  1160. {
  1161. echo json_encode(array('msg'=>'非美国和加拿大无法选择UPS!','success'=>false));exit;
  1162. }
  1163. if($post['country'] == 35 && $post['zsbjz'] > 20)
  1164. {
  1165. echo json_encode(array('msg'=>'加拿大最高申报不可超过20','success'=>false));exit;
  1166. }
  1167. if(($post['express'] == '28' || $post['express'] == '7') && $post['country'] != 191)
  1168. {
  1169. echo json_encode(array('msg'=>'非英国无法选择CNE和GES!','success'=>false));exit;
  1170. }
  1171. $express = $this->express->read($post['express']);
  1172. if($express['ioss'] == 1 && $post['ioss'] == '')
  1173. {
  1174. echo json_encode(array('msg'=>'此快递方式必须选择IOSS!','success'=>false));exit;
  1175. }
  1176. if(strlen($post['address']) > $express['addresssize'] || strlen($post['address2']) > $express['addresssize'])
  1177. {
  1178. echo json_encode(array('msg'=>'此快递地址不可超出'.$express['addresssize'].'个字符','success'=>false));exit;
  1179. }
  1180. if(strlen($post['address']) < 5)
  1181. {
  1182. echo json_encode(array('msg'=>'地址不可留空!','success'=>false));exit;
  1183. }
  1184. if(($express['sbjz'] > 0) && ($post['zsbjz'] > $express['sbjz']))
  1185. {
  1186. echo json_encode(array('msg'=>'总申报价值不可超出'.$express['sbjz'],'success'=>false));exit;
  1187. }
  1188. if($post['shouldmoney'] > $express['shouldmoney'] && $express['shouldmoney'] != 0)
  1189. {
  1190. echo json_encode(array('msg'=>'订单金额不可超出'.$express['shouldmoney'],'success'=>false));exit;
  1191. }
  1192. if($post['express'] == '2' && $post['zzl'] > '16' && isset($post['js']) && $post['js'] == '0')
  1193. {
  1194. echo json_encode(array('msg'=>'重量大于16不可按Ground Advantage提交!','success'=>false));exit;
  1195. }
  1196. // if($post['express'] == '2' && isset($post['js']) && $post['js'] == '0'&& $post['qm'] == '1')
  1197. // {
  1198. // echo json_encode(array('msg'=>'Ground Advantage不可使用签名服务!','success'=>false));exit;
  1199. // }
  1200. if(isset($post['bx']))
  1201. {
  1202. if($post['express'] == '99' && $post['bx'] > 0)
  1203. {
  1204. echo json_encode(array('msg'=>'此物流不允许购买保险','success'=>false));exit;
  1205. }
  1206. }
  1207. if(($post['express'] == '3' || $post['express'] == '42' || $post['express'] == '24') && $post['shouldmoney'] < 1)
  1208. {
  1209. //echo json_encode(array('msg'=>'零金额订单不可发 UPS/DHL官方-美国/Fedex(杭州)','success'=>false));exit;
  1210. }
  1211. if($post['express'] == '42' && $post['zsbjz'] < 1)
  1212. {
  1213. echo json_encode(array('msg'=>'零申报金额不可发 DHL官方-美国','success'=>false));exit;
  1214. }
  1215. if($post['express'] == '6' && $post['province'] == '')
  1216. {
  1217. echo json_encode(array('msg'=>'选择DPEX必须填写州信息','success'=>false));exit;
  1218. }
  1219. if(($post['express'] == '3') && $post['shouldmoney'] == 0)
  1220. {
  1221. echo json_encode(array('msg'=>'0金额订单不可发UPS/Fedex(杭州)!!!','success'=>false));exit;
  1222. }
  1223. if($post['country'] == '35' && $post['zsbjz'] > 20)
  1224. {
  1225. echo json_encode(array('msg'=>'加拿大不可申报超过20美金!!!','success'=>false));exit;
  1226. }
  1227. if($post['printtype'] == 1)//如果是运单
  1228. {
  1229. $post['productdescription'] = $this->input->post('productdescription',true);
  1230. $post['customs'] = $this->input->post('customs',true);
  1231. }
  1232. if($post['express'] == 2 && strlen($post['zipcode']) != 5)//如果usps 邮编不是5位
  1233. {
  1234. echo json_encode(array('msg'=>'USPS-USA的邮编需按5位数格式提交!','success'=>false));exit;
  1235. }
  1236. if(strlen($post['phone']) > 11 && $post['express'] == 63)
  1237. {
  1238. echo json_encode(array('msg'=>'美国联邦,电话号码不允许超过11位!','success'=>false));exit;
  1239. }
  1240. /**
  1241. if($post['paypal'] != '')
  1242. {
  1243. $pp = $this->fullorder->get_paypal($post['paypal']);
  1244. if(isset($pp['number']) && $pp['number'] != $data['number'])
  1245. {
  1246. echo json_encode(array('msg'=>'此交易号的订单已存在!-'.$pp['number'],'success'=>false));exit;
  1247. }
  1248. }
  1249. **/
  1250. /**
  1251. if($editstate == 216 && $data['state'] != 216)
  1252. {
  1253. echo json_encode(array('msg'=>'不可修改为完成状态','success'=>false));exit;
  1254. }
  1255. **/
  1256. $post['review'] = $data['review'];
  1257. $post['state'] = $editstate;
  1258. if($editstate == 216)
  1259. {
  1260. foreach ($post as $k=>$v)
  1261. {
  1262. if($k == 'shipremarks' || $k == 'whlabel' || $k == 'fpdata' || $k == 'fpcount' || $k == 'refundy' || $k == 'refundj' || $k == 'rtime' || $k == 'rpaypal' || $k == 'rtext' || $k == 'freight' || $k == 'expressmoney' || $k == 'edittime' || $k == 'librarynot' || $k == 'state' || $k == 'jweight' || $k == 'productdescription')
  1263. {
  1264. continue;
  1265. }
  1266. else
  1267. {
  1268. //当时不知道为会把 当前不可修改订单信息 给注释掉 但是 如果注释掉 这个判断就没意义了 还引起了报错 我这里就注释掉了
  1269. // if($v != $data[$k])
  1270. // {
  1271. // //echo json_encode(array('msg'=>'当前不可修改订单信息','cs'=>$k,'success'=>false));exit;
  1272. // }
  1273. }
  1274. }
  1275. }
  1276. /**
  1277. if($editstate == 216 && $post['waybill'] != '' && $data['waybill'] != '')//if($editstate == 216 && preg_match('/\d/is',$post['waybill']) != true)
  1278. {
  1279. echo json_encode(array('msg'=>'当前信息不可修改订单状态','success'=>false));exit;
  1280. }
  1281. else
  1282. {
  1283. $post['review'] = $data['review'];
  1284. $post['state'] = $editstate;
  1285. }
  1286. **/
  1287. $thisdata = $this->fullorder->read($id);
  1288. $warehouse = $this->warehouse->read($thisdata['type']);
  1289. $warehousenew = $this->warehouse->read($post['type']);
  1290. if($warehousenew['bdcountry'] != 0 && $post['country'] != $warehousenew['bdcountry'])
  1291. {
  1292. echo json_encode(array('msg'=>'当前国家无法选择'.$warehousenew['title'].'!','success'=>false));exit;
  1293. }
  1294. if(($warehouse['zd'] == '1' || stripos($thisdata['whlabel'],'z|') !== false) && $thisdata['library'] == '2' && $post['type'] != $thisdata['type'])//如果已出库并且开启库存模式仓库或者有特殊库存,禁止调整仓库
  1295. {
  1296. echo json_encode(array('msg'=>'此单已占用库存并出库,无法更改仓库!','success'=>false));exit;
  1297. }
  1298. $expt = $this->express->read($post['express']);
  1299. if($expt['pt'] != '' && stripos($post['fpdata'],$expt['pt']) !== false)
  1300. {
  1301. echo json_encode(array('msg'=>$expt['ptts'],'success'=>false));exit;
  1302. }
  1303. if($expt['province'] != '' && stripos($expt['province'],$post['province'].'、') !== false)
  1304. {
  1305. echo json_encode(array('msg'=>'此省/州不可使用 '.$expt['servicename'],'success'=>false));exit;
  1306. }
  1307. /**
  1308. if($warehouse['zd'] == '1' && $warehouse['ys'] != '1' && $thisdata['library'] == '2' && $post['fpdata'] != $thisdata['fpdata'])
  1309. {
  1310. echo json_encode(array('msg'=>'已扣减库存,无法更改产品!','success'=>false));exit;
  1311. }
  1312. **/
  1313. //开始注释 xyxg
  1314. /**
  1315. $ft = array();
  1316. $ftdata = explode('|',rtrim($fpcount,'|'));
  1317. foreach ($ftdata as $va)
  1318. {
  1319. $ftitle = '';
  1320. $va = explode('-',trim($va,'-'));
  1321. foreach ($va as $v)
  1322. {
  1323. $v = $this->typeclass->read($v);
  1324. $ftitle .= $v['title'].' ';
  1325. }
  1326. $ft[] = rtrim($ftitle,' ');
  1327. }
  1328. if($data['library'] == 1)
  1329. {
  1330. $tqkcyz = $this->_kcyz($post['type'],$whlabel,$id,$data['shop'],$data['number']);
  1331. if(isset($tqkcyz[0]))
  1332. {
  1333. echo json_encode(array('t'=>2,'msg'=>"红色商品名库存匹配错误或库存不够扣减",'error'=>$tqkcyz,'success'=>false));exit;
  1334. }
  1335. if(stripos($whlabel,'z|') !== false || stripos($thisdata['whlabel'],'z|') !== false)
  1336. {
  1337. $tskcyz = $this->specialstock->get_kc($thisdata['state'],$post['state'],$whlabel,$thisdata['whlabel'],$thisdata['number']);
  1338. if($tskcyz['t'] > '0')
  1339. {
  1340. echo $tskcyz['m'];exit;
  1341. }
  1342. }
  1343. $kcyz = $this->whlabel->get_kc($thisdata['state'],$post['state'],$warehousenew['zd'],$warehousenew['ys'],$post['type'],$whlabel,$fpcount,$ft,$thisdata['number'],$thisdata['shop'],$thisdata['type'],$thisdata['whlabel']);//旧状态、新状态、仓库占单设置、仓库预设设置、新仓库、新产品简化数字、旧产品数字、旧产品名称、订单号、订单店铺、旧订单仓库、旧产品简化数字
  1344. if($kcyz['t'] > '0')
  1345. {
  1346. echo $kcyz['m'];exit;
  1347. }
  1348. }
  1349. //结束注释
  1350. **/
  1351. /** 重新写产品名称
  1352. $dtctitle = array();
  1353. $dictionaries = $this->typeclass->find_all();
  1354. foreach ($dictionaries as $v)
  1355. {
  1356. $dtctitle[$v['id']] = array($v['title'],$v['bqsku']);
  1357. }
  1358. if(stripos($fpdata,'-128-') !== false || stripos($fpdata,'-127-') !== false)
  1359. {
  1360. $dfp = explode(';',trim($fpdata,';'));
  1361. $fdata = '';
  1362. foreach ($dfp as $k=>$v)
  1363. {
  1364. $ptitleb = '';
  1365. $fp = explode('|',trim($v,'|'));
  1366. $fp0 = explode(',',$fp[0]);
  1367. $fp1 = explode('-',trim($fp0[1],'-'));
  1368. foreach ($fp1 as $vv)
  1369. {
  1370. $ptitleb .= isset($dtctitle[$vv])?$dtctitle[$vv][0].' ':'';
  1371. }
  1372. $ptitleb .= $dtctitle[$fp0[0]][1].'inch ';
  1373. $fp[1] = $ptitleb;
  1374. $fdata .= implode("|",$fp).";";
  1375. }
  1376. $fpdata = $fdata;
  1377. }
  1378. **/
  1379. $warehouse = $this->warehouse->read($post['type']);
  1380. //未出库或者(已退库并且订单的状态不是等待买家收货和代发货状态)
  1381. if($data['library'] == 1 || ($data['library'] != 2 && ($post['state'] != '207' || $post['state'] == '209')))
  1382. {
  1383. // echo "<pre>";
  1384. // var_dump($post['state']);
  1385. // var_dump($warehouse);
  1386. // var_dump($thisdata['shop']);
  1387. // var_dump($thisdata['number']);
  1388. // var_dump($whlabel);
  1389. // var_dump($fpdata);
  1390. // die;
  1391. $kcyz = $this->ck->get_kc($post['state'],$warehouse,$thisdata['shop'],$thisdata['number'],$whlabel,$fpdata);
  1392. if($kcyz['t'] > '0')
  1393. {
  1394. echo $kcyz['m'];exit;
  1395. }
  1396. else if($kcyz['fpdata'] != '')
  1397. {
  1398. $post['whlabel'] = $kcyz['whlabel'];
  1399. $post['fpdata'] = $kcyz['fpdata'];
  1400. }
  1401. }
  1402. $fl = $this->ck->get_fl($warehouse['hz'],$whlabel,$fpdata);
  1403. $post['sfxh'] = $fl['sfxh'];
  1404. $post['ckfl'] = $fl['ckfl'];
  1405. //查询净重开始
  1406. $post['jweight'] = $this->weight->get_weightcx($post['fpdata']);
  1407. unset($post[0]);
  1408. //查询净重结束
  1409. if($this->fullorder->save($post,$id))
  1410. {
  1411. if($data['printtime'] == '0')
  1412. {
  1413. $xghz = ',将自动禁止打印';
  1414. }
  1415. else if($data['printtime'] > '0' && $data['librarytime'] == '0')
  1416. {
  1417. $q = '';
  1418. if($data['libraryconfirm'] == 1)
  1419. {
  1420. $q = ',<em style="color: #F00;">改前状态为:禁止出库</em>';
  1421. }
  1422. $xghz = ',将自动禁止发货'.$q;
  1423. }
  1424. else
  1425. {
  1426. $xghz = '';
  1427. }
  1428. echo json_encode(array('msg'=>'修改成功'.$xghz,'id'=>$id,'success'=>true));exit;
  1429. }
  1430. else
  1431. {
  1432. echo json_encode(array('msg'=>'修改失败,请重试','success'=>false));exit;
  1433. }
  1434. }
  1435. $this->data['vip'] = $vip;
  1436. $arg_array = $arg_array[0];$fpdata = array();
  1437. $fullorder = $this->fullorder->read($arg_array);
  1438. $returngoods = $this->returngoods->get_orderinfo($fullorder['orderinfo']);
  1439. $this->data['returngoods'] = 0;
  1440. if(!empty($returngoods)){
  1441. if($returngoods['status'] != 120){
  1442. $this->data['returngoods'] = 1;
  1443. }
  1444. }
  1445. $fullorder['parameter'] = str_replace(",","---",$fullorder['parameter']);
  1446. $country = $this->country->find_all('1=1','id,name','name asc');//所有国家信息
  1447. $express = $this->express->find_all('1=1');//所有快递配置信息
  1448. $this->data['fullorder'] = $fullorder;
  1449. if($fullorder['express'] == 2)
  1450. {
  1451. $zzhl = 'oz';
  1452. }
  1453. else
  1454. {
  1455. $zzhl = 'kg';
  1456. }
  1457. $this->data['zzhl'] = $zzhl;
  1458. $this->data['country'] = $country;
  1459. $this->data['express'] = $express;
  1460. $this->data['dtime'] = date('Y-m-d H:i:s',$fullorder['dtime']);
  1461. $warehouse = $this->warehouse->read($fullorder['type']);
  1462. if(stripos($fullorder['fpdata'],';') !== false)
  1463. {
  1464. $fpdata = explode(';',rtrim($fullorder['fpdata'],';'));
  1465. foreach ($fpdata as $k=>$v)
  1466. {
  1467. $xxv = explode('|',$v);
  1468. if(isset($xxv[9]) && stripos($xxv[9],$warehouse['hz']) !== false && $warehouse['hz'] != '' && $warehouse['zd'] == 1)
  1469. {
  1470. $xxv['zd'] = "<p>已占单</p>";
  1471. $bdck = $warehouse['bdck'];
  1472. if(stripos($xxv[9],'~') !== false)
  1473. {
  1474. $dxxv = explode('~',trim($xxv[9],'~'));
  1475. foreach ($dxxv as $val)
  1476. {
  1477. $wzid = $this->$bdck->read(trim($val,$warehouse['hz']));
  1478. if($wzid['details'] != '')
  1479. {
  1480. if($fullorder['type'] == 5){
  1481. $xxv['zd'] .= '<p>位置:'.$wzid['details'].'</p>';
  1482. }else{
  1483. $xxv['zd'] .= '<p>位置:'.$wzid['details'].' - '.$wzid['cpid'].'</p>';
  1484. }
  1485. }
  1486. }
  1487. }
  1488. else
  1489. {
  1490. $wzid = $this->$bdck->read(trim($xxv[9],$warehouse['hz']));
  1491. if($wzid['details'] != '')
  1492. {
  1493. if($fullorder['type'] == 5){
  1494. $xxv['zd'] .= '<p>位置:'.$wzid['details'].'</p>';
  1495. }else{
  1496. $xxv['zd'] .= '<p>位置:'.$wzid['details'].' - '.$wzid['cpid'].'</p>';
  1497. }
  1498. }
  1499. }
  1500. }
  1501. $fpdata[$k] = $xxv;
  1502. }
  1503. }
  1504. $fpdata = $this->logic_order->checkOrderProduct($fpdata);
  1505. $tmp_features = array_column($fpdata,0);
  1506. $do_trans_pms = [];
  1507. foreach ($tmp_features as $k=>$v) {
  1508. if(strpos($v,",") === false){
  1509. $do_trans_pms[] = [
  1510. 'features'=>$v
  1511. ];
  1512. }else{
  1513. $tmp_arr = explode(",",$v);
  1514. $do_trans_pms[] = [
  1515. 'features'=>$tmp_arr[1].$tmp_arr[0]."-"
  1516. ];
  1517. }
  1518. }
  1519. $r = $this->logic_whlabel->dataTran($do_trans_pms,['pm']);
  1520. foreach ($fpdata as $k=>$v) {
  1521. $fpdata[$k]['pm'] = $r[$k]['pm'];
  1522. }
  1523. $this->data['fpdata'] = $fpdata;
  1524. $thfpdataxs = array();
  1525. if($fullorder['thfpdata'] != '')
  1526. {
  1527. $thfpdata = explode(';',trim($fullorder['thfpdata'],';'));
  1528. foreach ($thfpdata as $k=>$v)
  1529. {
  1530. $thxs = explode('~',trim($v,'~'));
  1531. $thxs[0] = explode('|',trim($thxs[0],'|'));
  1532. $thxs[1] = explode('|',trim($thxs[1],'|'));
  1533. $thfpdataxs[] = array("<p>".$thxs[0][1]."<i class='fa fa-level-down'></i></p><p>".$thxs[1][1]."</p>","<p>".$thxs[0][2]."</p><p>".$thxs[1][2]."</p>","<p>旧</p><p>新</p>",$thxs[1][0]);
  1534. }
  1535. }
  1536. $this->data['thfpdata'] = $thfpdataxs;
  1537. $shop = $this->shop->read($fullorder['shop']);
  1538. $this->data['et'] = $shop['estimaterate'];//此店铺配置预计到帐金额比例
  1539. $is = 0;
  1540. if($shop['type'] == 269 || $shop['type'] == 2768)//判断是否独立站,269是独立站
  1541. {
  1542. $is = 1;
  1543. }
  1544. $this->data['is'] = $is;
  1545. if(isset($_SESSION['api']))
  1546. {
  1547. $user = $this->user->get_api($_SESSION['api']);
  1548. if($user['vip'] == 1)
  1549. {
  1550. $vip = 1;
  1551. }
  1552. else
  1553. {
  1554. $vip = 0;
  1555. }
  1556. }
  1557. else
  1558. {
  1559. $vip = 0;
  1560. }
  1561. $this->data['power'] = $vip;
  1562. /** 历史运单号展示并下载PDF 打印时间需要2019-3-21 0点之后有记录 **/
  1563. $downwaybill = '';$dwls = array();
  1564. $oldwaybill = explode('-',ltrim($fullorder['oldwaybill'],'-'));
  1565. if(isset($oldwaybill[0][1]))
  1566. {
  1567. $oldwaybill = array_reverse($oldwaybill); //调整顺序
  1568. foreach ($oldwaybill as $v)
  1569. {
  1570. $dw = explode('/',$v);
  1571. if(isset($dw[1]))
  1572. {
  1573. if(stripos($downwaybill,$dw[1]) === false)
  1574. {
  1575. $dwls[$dw[1]] = 1;
  1576. $downwaybill .= '<a href="/data/pdf/'.$dw[0].'/y-'.$dw[1].'.pdf" target="_blank">'.$dw[1].'</a>、';
  1577. }
  1578. }
  1579. }
  1580. }
  1581. if($fullorder['printtype'] == 1)
  1582. {
  1583. if($fullorder['waybill'] != '' && !isset($dwls[$fullorder['waybill']]))
  1584. {
  1585. $downwaybill = '<a href="/data/pdf/'.date('Ymd',$fullorder['printtime']).'/y-'.$fullorder['waybill'].'.pdf" target="_blank">'.$fullorder['waybill'].'</a>、'.$downwaybill;
  1586. }
  1587. }
  1588. $this->data['downwaybill'] = rtrim($downwaybill,'、');
  1589. /** 历史打印时间 **/
  1590. $printtime = '';
  1591. if($fullorder['oldprinttime'])
  1592. {
  1593. $pte = explode('-',rtrim($fullorder['oldprinttime'],'-'));
  1594. foreach ($pte as $v)
  1595. {
  1596. if(!empty($v)){
  1597. $printtime .= date('Y-m-d H:i:s',$v).'、';
  1598. }
  1599. }
  1600. }
  1601. $this->data['printtime'] = rtrim($printtime,'、');
  1602. $product = '';
  1603. $fullorder['product'] = str_replace("'","",$fullorder['product']);
  1604. if($fullorder['link'] != '' && $fullorder['source'] != '1')
  1605. {
  1606. $pt = explode(',',$fullorder['product']);
  1607. $lk = explode(',',$fullorder['link']);
  1608. for($i=0;$i<count($pt);$i++)
  1609. {
  1610. if(isset($lk[$i]))
  1611. {
  1612. $octs = $this->colourorderts->get_texturl($pt[$i],$lk[$i]);
  1613. }
  1614. else
  1615. {
  1616. $octs = '';
  1617. }
  1618. $a = $octs?'<font style="color:#'.$octs['colour'].'">'.$pt[$i].'</font>':$pt[$i];
  1619. //$a = (stripos($pt[$i],'Lace Front Wig Body Wave Human Hair Wigs Pre Plucked Brazilian Virgin Hair') !== false || stripos($pt[$i],'Deep Wave Wig 100 Human Hair Swiss Lace Curly Hair Lace Front Wig') !== false || stripos($pt[$i],'Alipearl Lace Front Wig Silky Straight 100% Virgin Human Hair') !== false || stripos($pt[$i],'Long Wigs Water Wave Lace Front Wigs Natural Wave Wigs For Sale') !== false || stripos($pt[$i],'Deep Wave Long Hair Wigs Lace Front Wigs Cheap Human Hair Wigs') !== false || stripos($pt[$i],'Long Wigs Loose Deep Wave Lace Front Wigs For Black Women') !== false || stripos($pt[$i],'Long Black Wigs Body Wave Lace Front Wigs With Baby Hair') !== false || stripos($pt[$i],'Long Curly Wigs Lace Front Wigs Human Hair Lace Front Wigs') !== false || stripos($pt[$i],'Blonde Skunk Stripe Hair Natural Body Wave Hairstyle Lace Wigs for Women') !== false)?'<font style="color:#F39">'.$pt[$i].'</font>':$pt[$i];
  1620. if(isset($lk[$i]))
  1621. {
  1622. $product .= ($product != '')?' , <a href="'.$lk[$i].'" target="_blank">'.$a.'</a>':'<a href="'.$lk[$i].'" target="_blank">'.$a.'</a>';
  1623. }
  1624. else
  1625. {
  1626. $product .= ($product != '')?' , '.$a:$a;
  1627. }
  1628. }
  1629. }
  1630. else
  1631. {
  1632. $octs = $this->colourorderts->get_text($fullorder['product']);
  1633. $a = $octs?'<font style="color:#F39">'.$fullorder['product'].'</font>':$fullorder['product'];
  1634. //$a = (stripos($fullorder['product'],'Lace Front Wig Body Wave Human Hair Wigs Pre Plucked Brazilian Virgin Hair') !== false || stripos($fullorder['product'],'Deep Wave Wig 100 Human Hair Swiss Lace Curly Hair Lace Front Wig') !== false || stripos($fullorder['product'],'Alipearl Lace Front Wig Silky Straight 100% Virgin Human Hair') !== false || stripos($fullorder['product'],'Long Wigs Water Wave Lace Front Wigs Natural Wave Wigs For Sale') !== false || stripos($fullorder['product'],'Deep Wave Long Hair Wigs Lace Front Wigs Cheap Human Hair Wigs') !== false || stripos($fullorder['product'],'Long Wigs Loose Deep Wave Lace Front Wigs For Black Women') !== false || stripos($fullorder['product'],'Long Black Wigs Body Wave Lace Front Wigs With Baby Hair') !== false || stripos($fullorder['product'],'Long Curly Wigs Lace Front Wigs Human Hair Lace Front Wigs') !== false || stripos($fullorder['product'],'Blonde Skunk Stripe Hair Natural Body Wave Hairstyle Lace Wigs for Women') !== false)?'<font style="color:#F39">'.$fullorder['product'].'</font>':$fullorder['product'];
  1635. $product = $a;
  1636. }
  1637. $this->data['product'] = $product;
  1638. $out = $this->systemtransfer->find_all("number = '".$fullorder['number']."'");
  1639. $outread = '';
  1640. if($out)
  1641. {
  1642. foreach ($out as $val)
  1643. {
  1644. $list = '';
  1645. $rk = explode('|',trim($val['rk'],'|'));
  1646. $rktime = explode('|',trim($val['rktime'],'|'));
  1647. $zw = array();
  1648. $t = $this->transfer->find_all("1=1");
  1649. foreach ($t as $v)
  1650. {
  1651. $zw[$v['id']] = $v['title'];
  1652. }
  1653. if($val['rk'] != '' && count($rk) > 0)
  1654. {
  1655. for($i=0;$i<count($rk);$i++)
  1656. {
  1657. if(!isset($rktime[$i]))
  1658. {
  1659. if(isset($cz[$i]))
  1660. {
  1661. $list .= $zw[$cz[$i]];
  1662. }
  1663. }
  1664. else
  1665. {
  1666. $list .= $zw[$rk[$i]].' :'.date('Y-m-d H:i',$rktime[$i]).',';
  1667. }
  1668. }
  1669. }
  1670. $outread .= '<span style="color:#f00">'.$val['shipremarks'].'</span>:'.$list.'<br>';
  1671. //$outread .= '<span style="color:#f00">'.$val['pm'].'</span>:'.$list.'<br>';
  1672. }
  1673. }
  1674. else
  1675. {
  1676. $systemwigsout = $this->systemwigsout->find_all("number = '".$fullorder['number']."'");
  1677. $outread = array();
  1678. if($systemwigsout)
  1679. {
  1680. foreach ($systemwigsout as $v)
  1681. {
  1682. if($v['czwarehouse'] == 37)
  1683. {
  1684. $outread[] = '华荣厂';
  1685. }
  1686. else if($v['czwarehouse'] == 0)
  1687. {
  1688. $outread[] = '龙盈厂';
  1689. }
  1690. $cz = explode('|',trim($v['cz'],'|'));
  1691. $cztime = explode('|',trim($v['cztime'],'|'));
  1692. $zw = $this->transfer->get_list();
  1693. if($v['cz'] != '' && count($cz) > 0)
  1694. {
  1695. for($i=0;$i<count($cz);$i++)
  1696. {
  1697. if(!isset($cztime[$i]))
  1698. {
  1699. $outread[] = $zw[$cz[$i]].' -&gt; ';
  1700. }
  1701. else
  1702. {
  1703. $outread[] = $zw[$cz[$i]].' :'.date('Y-m-d H:i',$cztime[$i]).' -&gt; ';
  1704. }
  1705. }
  1706. $outread[] = '<br>';
  1707. }
  1708. }
  1709. }
  1710. }
  1711. $klarnacolor = '';
  1712. if($fullorder['klarnadata'] !='')
  1713. {
  1714. $klarnadata = explode('|',$fullorder['klarnadata']);
  1715. if($klarnadata[0] == 'paypal' || $klarnadata[0] == 'stripe')
  1716. {
  1717. $klarnadata[1] = json_decode($klarnadata[1],true);
  1718. if($klarnadata[0] == 'stripe' && $klarnadata[1]['shouldmoney'] != $fullorder['shouldmoney'] && $fullorder['pay'] == 1211)
  1719. {
  1720. $klarnacolor = 'style="color:#F00"';
  1721. }
  1722. }
  1723. else if($klarnadata[0]!=1 && $fullorder['pay']!=26 && $fullorder['pay']!=27 && $fullorder['pay']!=1211)
  1724. {
  1725. $klarnacolor = 'style="color:#F00"';
  1726. }
  1727. if($fullorder['pay'] == 23)//klarna
  1728. {
  1729. $ToState = array('alabama'=>'AL','alaska'=>'AK','arizona'=>'AZ','arkansas'=>'AR','california'=>'CA','colorado'=>'CO','connecticut'=>'CT','delaware'=>'DE','florida'=>'FL','georgia'=>'GA','hawaii'=>'HI','idaho'=>'ID','illinois'=>'IL','indiana'=>'IN','iowa'=>'IA','kansas'=>'KS','kentucky'=>'KY','louisiana'=>'LA','maine'=>'ME','maryland'=>'MD','massachusetts'=>'MA','michigan'=>'MI','minnesota'=>'MN','mississippi'=>'MS','missouri'=>'MO','montana'=>'MT','nebraska'=>'NE','nevada'=>'NV','new hampshire'=>'NH','new jersey'=>'NJ','new mexico'=>'NM','new york'=>'NY','north carolina'=>'NC','north dakota'=>'ND','ohio'=>'OH','oklahoma'=>'OK','oregon'=>'OR','pennsylvania'=>'PA','rhode island'=>'RI','south carolina'=>'SC','south dakota'=>'SD','tennessee'=>'TN','texas'=>'TX','utah'=>'UT','vermont'=>'VT','virginia'=>'VA','washington'=>'WA','west virginia'=>'WV','wisconsin'=>'WI','wyoming'=>'WY','district of columbia'=>'DC','virgin islands'=>'VI','guam'=>'GU','puerto rico'=>'PR');
  1730. $ToState = array_flip($ToState);
  1731. $klarnadata3 = str_replace(' ','',$klarnadata[3]);
  1732. $city = str_replace(' ','',$fullorder['city']);
  1733. $klarnadataaddress = explode($city,$klarnadata3);
  1734. if(isset($klarnadataaddress[1]))
  1735. {
  1736. $klarnadata3 = $city.$klarnadataaddress[1];
  1737. $klarnadatacolor = explode(',',$klarnadata3);
  1738. unset($klarnadatacolor[4]);
  1739. unset($klarnadatacolor[6]);
  1740. if(isset($ToState[$klarnadatacolor[1]]))
  1741. {
  1742. $klarnadatacolor[1] = ucwords($ToState[$klarnadatacolor[1]]);
  1743. }
  1744. $klarnadata['color'] = $klarnadataaddress[0].implode(",",$klarnadatacolor);
  1745. }
  1746. else
  1747. {
  1748. $klarnadata['color'] = $klarnadata3;
  1749. }
  1750. }
  1751. }
  1752. else
  1753. {
  1754. $klarnadata = '';
  1755. }
  1756. $p = explode('-',$fullorder['paypal']);
  1757. $this->data['klarnacolor'] = $klarnacolor;
  1758. $this->data['klarnadata'] = $klarnadata;
  1759. $this->data['systemwigsout'] = $outread;
  1760. $quantity = explode(';',trim($fullorder['quantity'],';'));
  1761. $qc = 0;
  1762. foreach ($quantity as $v)
  1763. {
  1764. if($v > 1)
  1765. {
  1766. $qc += 1;
  1767. }
  1768. }
  1769. $this->data['qc'] = $qc;
  1770. //新增row_total和sub_total
  1771. $product_ids = $row_total = $sub_total = "";
  1772. if(!empty($fullorder['extra_price'])){
  1773. $extra_price = json_decode($fullorder['extra_price'],true);
  1774. foreach($extra_price as $k=>$v){
  1775. $row_total .= sprintf("%.2f",($v['qty']* $v['price'])).";";
  1776. $sub_total .= sprintf("%.2f",$v['sub_total']).";";
  1777. if(!empty($v['product_id'])){
  1778. $product_ids .= $v['product_id'].";";
  1779. }
  1780. }
  1781. }
  1782. $this->data['row_total'] = trim($row_total,";");
  1783. $this->data['sub_total'] = trim($sub_total,";");
  1784. $this->data['product_ids'] = trim($product_ids,";");
  1785. $this->_Template('fullorder_edit',$this->data);
  1786. }
  1787. //不可修改
  1788. public function _readonly($arg_array)
  1789. {
  1790. $post = $this->input->post(NULL, TRUE);
  1791. if(isset($post['id']))
  1792. {
  1793. $id = $this->input->post('id',true);
  1794. $ud = $this->fullorder->read($id);
  1795. $post['type'] = $this->input->post('warehouse',true);
  1796. $post['orderremarks'] = $this->input->post('orderremarks',true);
  1797. $post['state'] = $this->input->post('state',true);
  1798. $post['msg'] = $this->input->post('msg',true);
  1799. $post['refundy'] = $this->input->post('refundy',true);
  1800. $post['refundj'] = $this->input->post('refundj',true);
  1801. $fpdata = $this->input->post('fpdata');
  1802. $fpdata = str_replace(array('%26','%2B'),array('&','+'),$fpdata);
  1803. $post['fpdata'] = $fpdata;
  1804. $rtime = $this->input->post('rtime',true);
  1805. $post['rtime'] = strtotime($rtime);
  1806. $post['rpaypal'] = $this->input->post('rpaypal',true);
  1807. $post['rtext'] = $this->input->post('rtext',true);
  1808. $post['express'] = $this->input->post('express',true);
  1809. $whlabel = $this->input->post('whlabel',true);
  1810. //$post['ioss'] = $this->input->post('ioss',true);
  1811. $post['edittime'] = time();
  1812. $editstate = $post['state'];
  1813. if(!$editstate)
  1814. {
  1815. $editstate = $ud['state'];
  1816. $post['state'] = $editstate;
  1817. }
  1818. /**
  1819. if($post['state'] == 216 && $ud['state'] != 216)
  1820. {
  1821. echo json_encode(array('msg'=>'不可修改为完成状态','success'=>false));exit;
  1822. }
  1823. **/
  1824. $whlabeldata = explode('|',trim($whlabel,'|'));$way = 0;
  1825. foreach ($whlabeldata as $va)
  1826. {
  1827. if(stripos($va,'z') !== false)
  1828. {
  1829. $way += 1;
  1830. }
  1831. }
  1832. if((($post['express'] == 2 || $post['express'] == 63 || $post['express'] == 64 || $post['express'] == 81) && $post['type'] != 5) || ($post['express'] != 2 && $post['express'] != 63 && $post['express'] != 64 && $post['express'] != 81 && $post['type'] == 5))
  1833. {
  1834. echo json_encode(array('msg'=>'此快递方式必须选择美仓!','success'=>false));exit;
  1835. }
  1836. if($way == count($whlabeldata) && $post['type'] != 12)
  1837. {
  1838. echo json_encode(array('msg'=>'必须选择特殊仓!','success'=>false));exit;
  1839. }
  1840. if($way == '0' && $post['type'] == 12)
  1841. {
  1842. echo json_encode(array('msg'=>'特殊仓必须包含特殊仓货物!','success'=>false));exit;
  1843. }
  1844. $fpcount = $this->input->post('fpcount',true);
  1845. if(!$fpcount)
  1846. {
  1847. echo json_encode(array('msg'=>'需要先清理浏览器缓存,刷新当前页面后再试!','success'=>false));exit;
  1848. }
  1849. if($ud['library'] == 1)
  1850. {
  1851. if($ud['print'] != 3)
  1852. {
  1853. $post['print'] = 1;
  1854. $post['libraryconfirm'] = 1;
  1855. $post['librarynot'] = "订单未打印,未审核或未通过";
  1856. }
  1857. else
  1858. {
  1859. $post['libraryconfirm'] = 1;
  1860. $post['librarynot'] = "订单被重新提交";
  1861. }
  1862. }
  1863. if(($post['express'] == '5' || $post['express'] == '42' ) && $ud['country'] != 192)
  1864. {
  1865. echo json_encode(array('msg'=>'非美国无法选择Fedex、DHL官方-美国!','success'=>false));exit;
  1866. }
  1867. if($post['express'] == '3' && $ud['country'] != 192 && $ud['country'] != 35)
  1868. {
  1869. echo json_encode(array('msg'=>'非美国和加拿大无法选择UPS!','success'=>false));exit;
  1870. }
  1871. if(($post['express'] == '28' || $post['express'] == '7') && $ud['country'] != 191)
  1872. {
  1873. echo json_encode(array('msg'=>'非英国无法选择CNE和GES!','success'=>false));exit;
  1874. }
  1875. $express = $this->express->read($post['express']);
  1876. /**
  1877. if($express['ioss'] == 1 && $post['ioss'] == '')
  1878. {
  1879. echo json_encode(array('msg'=>'此快递方式必须选择IOSS!','success'=>false));exit;
  1880. }
  1881. **/
  1882. $thisdata = $this->fullorder->read($id);
  1883. $warehouse = $this->warehouse->read($thisdata['type']);
  1884. $warehousenew = $this->warehouse->read($post['type']);
  1885. if(($warehouse['zd'] == '1' || stripos($thisdata['whlabel'],'z|') !== false) && $thisdata['library'] == '2' && $post['type'] != $thisdata['type'])//如果已出库并且开启库存模式仓库或者有特殊库存,禁止调整仓库
  1886. {
  1887. echo json_encode(array('msg'=>'此单已占用库存并出库,无法更改仓库!','success'=>false));exit;
  1888. }
  1889. if($ud['yhs'] == 1)
  1890. {
  1891. echo json_encode(array('msg'=>'仓库货物验证中,请稍后再试!','success'=>false));exit;
  1892. }
  1893. $expt = $this->express->read($post['express']);
  1894. if($expt['pt'] != '' && stripos($post['fpdata'],$expt['pt']) !== false)
  1895. {
  1896. echo json_encode(array('msg'=>$expt['ptts'],'success'=>false));exit;
  1897. }
  1898. if($expt['province'] != '' && stripos($expt['province'],$ud['province'].'、') !== false)
  1899. {
  1900. echo json_encode(array('msg'=>'此省/州不可使用 '.$expt['servicename'],'success'=>false));exit;
  1901. }
  1902. if($post['type'] != 5 && in_array($post['express'],[2,63,64,81]))
  1903. {
  1904. echo json_encode(array('msg'=>"此快递方式必须从美仓发货!",'success'=>false));exit;
  1905. }
  1906. // if($post['type'] == 5 && !in_array($post['express'],[2,63,64,81]))
  1907. // {
  1908. // echo json_encode(array('msg'=>"此快递方式不能美仓发货!",'success'=>false));exit;
  1909. // }
  1910. if((!in_array($post['express'],[2,63,64,81,85,86,87])) && ($post['type'] == 5)){
  1911. echo json_encode(array('msg'=>'此快递方式不能美仓发货!','success'=>false));exit;
  1912. }
  1913. /**
  1914. if($warehouse['zd'] == '1' && $warehouse['ys'] != '1' && $thisdata['library'] == '2' && $post['fpdata'] != $thisdata['fpdata'])
  1915. {
  1916. echo json_encode(array('msg'=>'已扣减库存,无法更改产品!','success'=>false));exit;
  1917. }
  1918. **/
  1919. /**
  1920. if($warehousenew['zd'] == '1' && $editstate != $thisdata['state'] && $thisdata['library'] == '1')//如果提交的仓库开启库存模式并且更改订单状态并且未出库,那么拒绝
  1921. {
  1922. echo json_encode(array('msg'=>'如需更改订单状态,请先把仓库选择为非开启库存模式仓库或等待订单出库!','success'=>false));exit;
  1923. }
  1924. if($warehousenew['zd'] == '1' && $editstate != '207' && $thisdata['library'] == '1')//如果提交的仓库开启库存模式并且更改订单状态并且未出库,那么拒绝
  1925. {
  1926. echo json_encode(array('msg'=>'非待发货状态,不允许修改为开启库存模式仓库','success'=>false));exit;
  1927. }
  1928. **/
  1929. //开始注释 xyxg
  1930. /**
  1931. $ft = array();
  1932. $ftdata = explode('|',rtrim($fpcount,'|'));
  1933. foreach ($ftdata as $va)
  1934. {
  1935. $ftitle = '';
  1936. $va = explode('-',trim($va,'-'));
  1937. foreach ($va as $v)
  1938. {
  1939. $v = $this->typeclass->read($v);
  1940. $ftitle .= $v['title'].' ';
  1941. }
  1942. $ft[] = rtrim($ftitle,' ');
  1943. }
  1944. $user = $this->user->get_api($_SESSION['api']);
  1945. if($ud['library'] == 1)
  1946. {
  1947. $tqkcyz = $this->_kcyz($post['type'],$whlabel,$id,$ud['shop'],$ud['number']);
  1948. if(isset($tqkcyz[0]))
  1949. {
  1950. echo json_encode(array('t'=>2,'msg'=>"红色商品名库存匹配错误或库存不够扣减",'error'=>$tqkcyz,'success'=>false));exit;
  1951. }
  1952. if(stripos($whlabel,'z|') !== false || stripos($thisdata['whlabel'],'z|') !== false)
  1953. {
  1954. $tskcyz = $this->specialstock->get_kc($thisdata['state'],$post['state'],$whlabel,$thisdata['whlabel'],$thisdata['number']);
  1955. if($tskcyz['t'] > '0')
  1956. {
  1957. echo $tskcyz['m'];exit;
  1958. }
  1959. }
  1960. $kcyz = $this->whlabel->get_kc($thisdata['state'],$post['state'],$warehousenew['zd'],$warehousenew['ys'],$post['type'],$whlabel,$fpcount,$ft,$thisdata['number'],$thisdata['shop'],$thisdata['type'],$thisdata['whlabel']);//旧状态、新状态、仓库占单设置、仓库预设设置、新仓库、新产品简化数字、旧产品数字、旧产品名称、订单号、订单店铺、旧订单仓库、旧产品简化数字
  1961. if($kcyz['t'] > '0')
  1962. {
  1963. echo $kcyz['m'];exit;
  1964. }
  1965. }
  1966. //结束注释
  1967. **/
  1968. // $post['fpdata'] = preg_replace('/\s+/', '', $post['fpdata']);str_replace(" ", "", ); // 去除所有空格
  1969. // $post['fpdata'] = str_replace(array("\r", "\n"), "", $post['fpdata']);
  1970. // $ud['fpdata'] = str_replace(" ", "", $ud['fpdata']); // 去除所有空格
  1971. // $ud['fpdata'] = str_replace(array("\r", "\n"), "", $ud['fpdata']);
  1972. $post['express'] = $ud['express'];
  1973. $post['qm'] = $ud['qm'];
  1974. $post['country'] = $ud['country'];
  1975. $post['zipcode'] = $ud['zipcode'];
  1976. $post['zsbjz'] =$ud['zsbjz'];
  1977. $post['zzl'] = $ud['zzl'];
  1978. $post['js'] = $ud['js'];
  1979. $post['sbpm'] = $ud['sbpm'];
  1980. $post['shouldmoney'] = $ud['shouldmoney'];
  1981. $post['library'] = $ud['library'];
  1982. $post['r_tax_id'] = $ud['r_tax_id'];
  1983. //减少代码复用吧
  1984. $lo_ret = $this->logic_order->checkEditExpress($post);
  1985. if($lo_ret['code'] != 1){
  1986. echo json_encode(array('msg'=>$lo_ret['msg'],'success'=>false));exit;
  1987. }
  1988. if($ud['estimaterate'] == 1){
  1989. $post['budget'] = $ud['shouldmoney'];
  1990. }
  1991. if($ud['state'] == 216 && $post['whlabel'] != $ud['whlabel'])
  1992. {
  1993. echo json_encode(array('msg'=>'商品信息需要找梦体修改','success'=>false));exit;
  1994. }
  1995. $warehouse = $this->warehouse->read($post['type']);
  1996. if($ud['library'] == 1 || ($ud['library'] != 2 && ($post['state'] != '207' || $post['state'] == '209')))
  1997. {
  1998. $kcyz = $this->ck->get_kc($post['state'],$warehouse,$thisdata['shop'],$thisdata['number'],$whlabel,$fpdata);
  1999. if($kcyz['t'] > '0')
  2000. {
  2001. echo $kcyz['m'];exit;
  2002. }
  2003. else if($kcyz['fpdata'] != '')
  2004. {
  2005. $post['whlabel'] = $kcyz['whlabel'];
  2006. $post['fpdata'] = $kcyz['fpdata'];
  2007. }
  2008. }
  2009. $fl = $this->ck->get_fl($warehouse['hz'],$whlabel,$fpdata);
  2010. $post['sfxh'] = $fl['sfxh'];
  2011. $post['ckfl'] = $fl['ckfl'];
  2012. //查询净重开始
  2013. $post['jweight'] = $this->weight->get_weightcx($post['fpdata']);
  2014. //查询净重结束
  2015. if($this->fullorder->save($post,$id))
  2016. {
  2017. if($ud['printtime'] == '0')
  2018. {
  2019. $xghz = ',将自动禁止打印';
  2020. }
  2021. else if($ud['printtime'] > '0' && $ud['librarytime'] == '0')
  2022. {
  2023. $q = '';
  2024. if($ud['libraryconfirm'] == 1)
  2025. {
  2026. $q = ',<em style="color: #F00;">改前状态为:禁止出库</em>';
  2027. }
  2028. $xghz = ',将自动禁止发货'.$q;
  2029. }
  2030. else
  2031. {
  2032. $xghz = '';
  2033. }
  2034. echo json_encode(array('msg'=>'修改成功'.$xghz,'id'=>$id,'cs'=>$ud['state'].' - '.$post['fpdata'].' - '.$ud['fpdata'],'success'=>true));exit;
  2035. }
  2036. else
  2037. {
  2038. echo json_encode(array('msg'=>'修改失败,请重试','success'=>false));exit;
  2039. }
  2040. }
  2041. $arg_array = $arg_array[0];$fpdata = array();
  2042. $fullorder = $this->fullorder->read($arg_array);
  2043. $returngoods = $this->returngoods->get_orderinfo($fullorder['orderinfo']);
  2044. $this->data['returngoods'] = $returngoods?1:0;
  2045. $fullorder['shipremarks'] = str_replace(array('<','>'),array('&lt;','&gt;'),$fullorder['shipremarks']);
  2046. $fullorder['parameter'] = str_replace(",","---",$fullorder['parameter']);
  2047. $this->data['fullorder'] = $fullorder;
  2048. if($fullorder['express'] == 2)
  2049. {
  2050. $zzhl = 'oz';
  2051. }
  2052. else
  2053. {
  2054. $zzhl = 'kg';
  2055. }
  2056. $this->data['zzhl'] = $zzhl;
  2057. $this->data['countrys'] = $this->country->find_all();
  2058. $this->data['express'] = $this->express->find_all();
  2059. $warehouse = $this->warehouse->read($fullorder['type']);
  2060. if(stripos($fullorder['fpdata'],';') !== false)
  2061. {
  2062. $fpdata = explode(';',rtrim($fullorder['fpdata'],';'));
  2063. foreach ($fpdata as $k=>$v)
  2064. {
  2065. $xxv = explode('|',$v);
  2066. if(isset($xxv[9]) && stripos($xxv[9],$warehouse['hz']) !== false && $warehouse['hz'] != '' && $warehouse['zd'] == 1)
  2067. {
  2068. $xxv['zd'] = "<p>已占单</p>";
  2069. $bdck = $warehouse['bdck'];
  2070. if(stripos($xxv[9],'~') !== false)
  2071. {
  2072. $dxxv = explode('~',trim($xxv[9],'~'));
  2073. foreach ($dxxv as $val)
  2074. {
  2075. $wzid = $this->$bdck->read(trim($val,$warehouse['hz']));
  2076. if($wzid['details'] != '')
  2077. {
  2078. if($fullorder['type'] == 5){
  2079. $xxv['zd'] .= '<p>位置:'.$wzid['details'].'</p>';
  2080. }else{
  2081. $xxv['zd'] .= '<p>位置:'.$wzid['details'].' - '.$wzid['cpid'].'</p>';
  2082. }
  2083. }
  2084. }
  2085. }
  2086. else
  2087. {
  2088. $wzid = $this->$bdck->read(trim($xxv[9],$warehouse['hz']));
  2089. if($wzid['details'] != '')
  2090. {
  2091. if($fullorder['type'] == 5){
  2092. $xxv['zd'] .= '<p>位置:'.$wzid['details'].'</p>';
  2093. }else{
  2094. $xxv['zd'] .= '<p>位置:'.$wzid['details'].' - '.$wzid['cpid'].'</p>';
  2095. }
  2096. }
  2097. }
  2098. }
  2099. $fpdata[$k] = $xxv;
  2100. }
  2101. }
  2102. $this->data['fpdata'] = $fpdata;
  2103. // $tmp_features = array_column($fpdata,0);
  2104. // $do_trans_pms = [];
  2105. // foreach ($tmp_features as $k=>$v) {
  2106. // if(strpos($v,",") === false){
  2107. // $do_trans_pms[] = [
  2108. // 'features'=>$v
  2109. // ];
  2110. // }else{
  2111. // $tmp_arr = explode(",",$v);
  2112. // $do_trans_pms[] = [
  2113. // 'features'=>$tmp_arr[1].$tmp_arr[0]."-"
  2114. // ];
  2115. // }
  2116. // }
  2117. // $r = $this->logic_whlabel->dataTran($do_trans_pms,['pm']);
  2118. // foreach ($fpdata as $k=>$v) {
  2119. // $fpdata[$k]['pm'] = $r[$k]['pm'];
  2120. // }
  2121. $this->data['fpdata'] = $fpdata;
  2122. $thfpdataxs = array();
  2123. if($fullorder['thfpdata'] != '')
  2124. {
  2125. $thfpdata = explode(';',trim($fullorder['thfpdata'],';'));
  2126. foreach ($thfpdata as $k=>$v)
  2127. {
  2128. $thxs = explode('~',trim($v,'~'));
  2129. $thxs[0] = explode('|',trim($thxs[0],'|'));
  2130. $thxs[1] = explode('|',trim($thxs[1],'|'));
  2131. $thfpdataxs[] = array("<p>".$thxs[0][1]."<i class='fa fa-level-down'></i></p><p>".$thxs[1][1]."</p>","<p>".$thxs[0][2]."</p><p>".$thxs[1][2]."</p>","<p>旧</p><p>新</p>",$thxs[1][0]);
  2132. }
  2133. }
  2134. $this->data['thfpdata'] = $thfpdataxs;
  2135. $shop = $this->shop->read($fullorder['shop']);
  2136. $this->data['et'] = $shop['estimaterate'];//此店铺配置预计到帐金额比例
  2137. $is = 0;
  2138. if($shop['type'] == 269 || $shop['type']==2768 )//判断是否独立站,269是独立站
  2139. {
  2140. $is = 1;
  2141. }
  2142. $this->data['is'] = $is;
  2143. //单项开始
  2144. $warehouse = $this->warehouse->read($fullorder['warehouse']);//发货仓库
  2145. $state = $this->typeclass->read($fullorder['state']);//订单状态
  2146. $country = $this->country->read($fullorder['country']);//国家
  2147. if($fullorder['capital'] == 1)
  2148. {
  2149. $capital = '暂未支付';
  2150. }
  2151. else if($fullorder['capital'] == 2)
  2152. {
  2153. $capital = '部分支付';
  2154. }
  2155. else if($fullorder['capital'] == 3)
  2156. {
  2157. $capital = '全部支付';
  2158. }
  2159. if($fullorder['printtype'] == 1)
  2160. {
  2161. $printtype = '运单';
  2162. }
  2163. else if($fullorder['printtype'] == 2)
  2164. {
  2165. $printtype = '发货单';
  2166. }
  2167. else if($fullorder['printtype'] == 3)
  2168. {
  2169. $printtype = '不打印单据';
  2170. }
  2171. else
  2172. {
  2173. $printtype = '未选择';
  2174. }
  2175. $this->data['warehouse'] = $warehouse['title'];
  2176. $this->data['state'] = $state['title'];
  2177. $this->data['capital'] = $capital;
  2178. $this->data['country'] = $country['name'];
  2179. $this->data['printtype'] = $printtype;
  2180. //单项结束
  2181. /** 历史运单号展示并下载PDF 打印时间需要2019-3-21 0点之后有记录 **/
  2182. $downwaybill = '';$dwls = array();
  2183. $oldwaybill = explode('-',ltrim($fullorder['oldwaybill'],'-'));
  2184. if(isset($oldwaybill[0][1]))
  2185. {
  2186. $oldwaybill = array_reverse($oldwaybill); //调整顺序
  2187. foreach ($oldwaybill as $v)
  2188. {
  2189. $dw = explode('/',$v);
  2190. if(isset($dw[1]))
  2191. {
  2192. if(stripos($downwaybill,$dw[1]) === false)
  2193. {
  2194. $dwls[$dw[1]] = 1;
  2195. $downwaybill .= '<a href="/data/pdf/'.$dw[0].'/y-'.$dw[1].'.pdf" target="_blank">'.$dw[1].'</a>、';
  2196. }
  2197. }
  2198. }
  2199. }
  2200. if($fullorder['printtype'] == 1)
  2201. {
  2202. if($fullorder['waybill'] != '' && !isset($dwls[$fullorder['waybill']]))
  2203. {
  2204. $downwaybill = '<a href="/data/pdf/'.date('Ymd',$fullorder['printtime']).'/y-'.$fullorder['waybill'].'.pdf" target="_blank">'.$fullorder['waybill'].'</a>、'.$downwaybill;
  2205. }
  2206. }
  2207. $this->data['downwaybill'] = rtrim($downwaybill,'、');
  2208. /** 历史打印时间 **/
  2209. $printtime = '';
  2210. if($fullorder['oldprinttime'])
  2211. {
  2212. $pte = explode('-',rtrim($fullorder['oldprinttime'],'-'));
  2213. foreach ($pte as $v)
  2214. {
  2215. $printtime .= date('Y-m-d H:i:s',$v).'、';
  2216. }
  2217. }
  2218. $this->data['printtime'] = rtrim($printtime,'、');
  2219. $product = '';
  2220. $fullorder['product'] = str_replace("'","",$fullorder['product']);
  2221. if($fullorder['link'] != '' && $fullorder['source'] != '1')
  2222. {
  2223. $pt = explode(',',$fullorder['product']);
  2224. $lk = explode(',',$fullorder['link']);
  2225. for($i=0;$i<count($pt);$i++)
  2226. {
  2227. if(isset($lk[$i]))
  2228. {
  2229. $octs = $this->colourorderts->get_texturl($pt[$i],$lk[$i]);
  2230. }
  2231. else
  2232. {
  2233. $octs = '';
  2234. }
  2235. $a = $octs?'<font style="color:#'.$octs['colour'].'">'.$pt[$i].'</font>':$pt[$i];
  2236. //$a = (stripos($pt[$i],'Lace Front Wig Body Wave Human Hair Wigs Pre Plucked Brazilian Virgin Hair') !== false || stripos($pt[$i],'Deep Wave Wig 100 Human Hair Swiss Lace Curly Hair Lace Front Wig') !== false || stripos($pt[$i],'Alipearl Lace Front Wig Silky Straight 100% Virgin Human Hair') !== false || stripos($pt[$i],'Long Wigs Water Wave Lace Front Wigs Natural Wave Wigs For Sale') !== false || stripos($pt[$i],'Deep Wave Long Hair Wigs Lace Front Wigs Cheap Human Hair Wigs') !== false || stripos($pt[$i],'Long Wigs Loose Deep Wave Lace Front Wigs For Black Women') !== false || stripos($pt[$i],'Long Black Wigs Body Wave Lace Front Wigs With Baby Hair') !== false || stripos($pt[$i],'Long Curly Wigs Lace Front Wigs Human Hair Lace Front Wigs') !== false || stripos($pt[$i],'Blonde Skunk Stripe Hair Natural Body Wave Hairstyle Lace Wigs for Women') !== false)?'<font style="color:#F39">'.$pt[$i].'</font>':$pt[$i];
  2237. if(isset($lk[$i]))
  2238. {
  2239. $product .= ($product != '')?' , <a href="'.$lk[$i].'" target="_blank">'.$a.'</a>':'<a href="'.$lk[$i].'" target="_blank">'.$a.'</a>';
  2240. }
  2241. else
  2242. {
  2243. $product .= ($product != '')?' , '.$a:$a;
  2244. }
  2245. }
  2246. }
  2247. else
  2248. {
  2249. $octs = $this->colourorderts->get_text($fullorder['product']);
  2250. $a = $octs?'<font style="color:#F39">'.$fullorder['product'].'</font>':$fullorder['product'];
  2251. //$a = (stripos($fullorder['product'],'Lace Front Wig Body Wave Human Hair Wigs Pre Plucked Brazilian Virgin Hair') !== false || stripos($fullorder['product'],'Deep Wave Wig 100 Human Hair Swiss Lace Curly Hair Lace Front Wig') !== false || stripos($fullorder['product'],'Alipearl Lace Front Wig Silky Straight 100% Virgin Human Hair') !== false || stripos($fullorder['product'],'Long Wigs Water Wave Lace Front Wigs Natural Wave Wigs For Sale') !== false || stripos($fullorder['product'],'Deep Wave Long Hair Wigs Lace Front Wigs Cheap Human Hair Wigs') !== false || stripos($fullorder['product'],'Long Wigs Loose Deep Wave Lace Front Wigs For Black Women') !== false || stripos($fullorder['product'],'Long Black Wigs Body Wave Lace Front Wigs With Baby Hair') !== false || stripos($fullorder['product'],'Long Curly Wigs Lace Front Wigs Human Hair Lace Front Wigs') !== false || stripos($fullorder['product'],'Blonde Skunk Stripe Hair Natural Body Wave Hairstyle Lace Wigs for Women') !== false)?'<font style="color:#F39">'.$fullorder['product'].'</font>':$fullorder['product'];
  2252. $product = $a;
  2253. }
  2254. $this->data['product'] = $product;
  2255. $out = $this->systemtransfer->find_all("number = '".$fullorder['number']."'");
  2256. $outread = '';
  2257. if($out)
  2258. {
  2259. foreach ($out as $val)
  2260. {
  2261. $list = '';
  2262. $rk = explode('|',trim($val['rk'],'|'));
  2263. $rktime = explode('|',trim($val['rktime'],'|'));
  2264. $zw = array();
  2265. $t = $this->transfer->find_all("1=1");
  2266. foreach ($t as $v)
  2267. {
  2268. $zw[$v['id']] = $v['title'];
  2269. }
  2270. if($val['rk'] != '' && count($rk) > 0)
  2271. {
  2272. for($i=0;$i<count($rk);$i++)
  2273. {
  2274. if(!isset($rktime[$i]))
  2275. {
  2276. $list .= $zw[$cz[$i]];
  2277. }
  2278. else
  2279. {
  2280. $list .= $zw[$rk[$i]].' :'.date('Y-m-d H:i',$rktime[$i]).',';
  2281. }
  2282. }
  2283. }
  2284. $outread .= '<span style="color:#f00">'.$val['pm'].'</span>:'.$list.'<br>';
  2285. }
  2286. }
  2287. else
  2288. {
  2289. $systemwigsout = $this->systemwigsout->find_all("number = '".$fullorder['number']."'");
  2290. $outread = array();
  2291. if($systemwigsout)
  2292. {
  2293. foreach ($systemwigsout as $v)
  2294. {
  2295. if($v['czwarehouse'] == 37)
  2296. {
  2297. $outread[] = '华荣厂';
  2298. }
  2299. else if($v['czwarehouse'] == 0)
  2300. {
  2301. $outread[] = '龙盈厂';
  2302. }
  2303. $cz = explode('|',trim($v['cz'],'|'));
  2304. $cztime = explode('|',trim($v['cztime'],'|'));
  2305. $zw = $this->transfer->get_list();
  2306. if($v['cz'] != '' && count($cz) > 0)
  2307. {
  2308. for($i=0;$i<count($cz);$i++)
  2309. {
  2310. if(!isset($cztime[$i]))
  2311. {
  2312. $outread[] = $zw[$cz[$i]].' -&gt; ';
  2313. }
  2314. else
  2315. {
  2316. $outread[] = $zw[$cz[$i]].' :'.date('Y-m-d H:i',$cztime[$i]).' -&gt; ';
  2317. }
  2318. }
  2319. $outread[] = '<br>';
  2320. }
  2321. }
  2322. }
  2323. }
  2324. $klarnacolor = '';
  2325. if($fullorder['klarnadata'] !='')
  2326. {
  2327. $klarnadata = explode('|',$fullorder['klarnadata']);
  2328. if($klarnadata[0] == 'paypal' || $klarnadata[0] == 'stripe')
  2329. {
  2330. $klarnadata[1] = json_decode($klarnadata[1],true);
  2331. if($klarnadata[0] == 'stripe' && $klarnadata[1]['shouldmoney'] != $fullorder['shouldmoney'] && $fullorder['pay'] == 1211)
  2332. {
  2333. $klarnacolor = 'style="color:#F00"';
  2334. }
  2335. }
  2336. else if($klarnadata[0]!=1 && $fullorder['pay']!=26 && $fullorder['pay']!=27 && $fullorder['pay']!=1211)
  2337. {
  2338. $klarnacolor = 'style="color:#F00"';
  2339. }
  2340. if($fullorder['pay'] == 23)//klarna
  2341. {
  2342. $ToState = array('alabama'=>'AL','alaska'=>'AK','arizona'=>'AZ','arkansas'=>'AR','california'=>'CA','colorado'=>'CO','connecticut'=>'CT','delaware'=>'DE','florida'=>'FL','georgia'=>'GA','hawaii'=>'HI','idaho'=>'ID','illinois'=>'IL','indiana'=>'IN','iowa'=>'IA','kansas'=>'KS','kentucky'=>'KY','louisiana'=>'LA','maine'=>'ME','maryland'=>'MD','massachusetts'=>'MA','michigan'=>'MI','minnesota'=>'MN','mississippi'=>'MS','missouri'=>'MO','montana'=>'MT','nebraska'=>'NE','nevada'=>'NV','new hampshire'=>'NH','new jersey'=>'NJ','new mexico'=>'NM','new york'=>'NY','north carolina'=>'NC','north dakota'=>'ND','ohio'=>'OH','oklahoma'=>'OK','oregon'=>'OR','pennsylvania'=>'PA','rhode island'=>'RI','south carolina'=>'SC','south dakota'=>'SD','tennessee'=>'TN','texas'=>'TX','utah'=>'UT','vermont'=>'VT','virginia'=>'VA','washington'=>'WA','west virginia'=>'WV','wisconsin'=>'WI','wyoming'=>'WY','district of columbia'=>'DC','virgin islands'=>'VI','guam'=>'GU','puerto rico'=>'PR');
  2343. $ToState = array_flip($ToState);
  2344. $klarnadata3 = str_replace(' ','',$klarnadata[3]);
  2345. $city = str_replace(' ','',$fullorder['city']);
  2346. $klarnadataaddress = explode($city,$klarnadata3);
  2347. if(isset($klarnadataaddress[1]))
  2348. {
  2349. $klarnadata3 = $city.$klarnadataaddress[1];
  2350. $klarnadatacolor = explode(',',$klarnadata3);
  2351. unset($klarnadatacolor[4]);
  2352. unset($klarnadatacolor[6]);
  2353. if(isset($ToState[$klarnadatacolor[1]]))
  2354. {
  2355. $klarnadatacolor[1] = ucwords($ToState[$klarnadatacolor[1]]);
  2356. }
  2357. $klarnadata['color'] = $klarnadataaddress[0].implode(",",$klarnadatacolor);
  2358. }
  2359. else
  2360. {
  2361. $klarnadata['color'] = $klarnadata3;
  2362. }
  2363. }
  2364. }
  2365. else
  2366. {
  2367. $klarnadata = '';
  2368. }
  2369. $p = explode('-',$fullorder['paypal']);
  2370. $this->data['klarnacolor'] = $klarnacolor;
  2371. $this->data['klarnadata'] = $klarnadata;
  2372. $this->data['systemwigsout'] = $outread;
  2373. $quantity = explode(';',trim($fullorder['quantity'],';'));
  2374. $qc = 0;
  2375. foreach ($quantity as $v)
  2376. {
  2377. if($v > 1)
  2378. {
  2379. $qc += 1;
  2380. }
  2381. }
  2382. $this->data['qc'] = $qc;
  2383. //新增row_total和sub_total
  2384. $product_ids = $row_total = $sub_total = "";
  2385. if(!empty($fullorder['extra_price'])){
  2386. $extra_price = json_decode($fullorder['extra_price'],true);
  2387. foreach($extra_price as $k=>$v){
  2388. $row_total .= sprintf("%.2f",($v['qty']* $v['price'])).";";
  2389. $sub_total .= sprintf("%.2f",$v['sub_total']).";";
  2390. if(!empty($v['product_id'])){
  2391. $product_ids .= $v['product_id'].";";
  2392. }
  2393. }
  2394. }
  2395. $this->data['row_total'] = trim($row_total,";");
  2396. $this->data['sub_total'] = trim($sub_total,";");
  2397. $this->data['product_ids'] = trim($product_ids,";");
  2398. $this->_Template('fullorder_readonly',$this->data);
  2399. }
  2400. //浏览列表
  2401. public function _readlist()
  2402. {
  2403. if(isset($_SESSION['api']))
  2404. {
  2405. $user = $this->user->get_api($_SESSION['api']);
  2406. $usp = $user;
  2407. $fgshop = "";$sid = "";
  2408. $usersp = explode('|',trim($user['shop'],'|'));
  2409. foreach ($usersp as $value)
  2410. {
  2411. $fgshop .= " shop = ".$value." or";
  2412. $sid .= " id = ".$value." or";
  2413. }
  2414. }
  2415. $post = $this->input->post(NULL, TRUE);
  2416. if(isset($post['page']))
  2417. {
  2418. $page = $this->input->post('page',true);
  2419. $perpage = $this->input->post('perpage',true);
  2420. $shop = $this->input->post('shop',true);
  2421. $warehouse = $this->input->post('warehouse',true);
  2422. $express = $this->input->post('express',true);
  2423. $state = $this->input->post('state',true);
  2424. $print = $this->input->post('print',true);
  2425. $libraryconfirm = $this->input->post('libraryconfirm',true);
  2426. $orderinfo = $this->input->post('orderinfo',true);
  2427. $client = $this->input->post('name',true);
  2428. $email = $this->input->post('email',true);
  2429. $number = $this->input->post('number',true);
  2430. $waybill = $this->input->post('waybill',true);
  2431. $authorid = $this->input->post('authorid',true);
  2432. $sourcecontentid = $this->input->post('sourcecontentid',true);
  2433. $timetk = $this->input->post('timetk',true);
  2434. $timetj = $this->input->post('timetj',true);
  2435. $timetk = strtotime($timetk);
  2436. $timetj = strtotime($timetj);
  2437. $where = "1=1 and mergeid = 0 and (".rtrim($fgshop,'or').")";
  2438. if($shop)
  2439. {
  2440. $where .= " and shop = '$shop'";
  2441. }
  2442. if($warehouse)
  2443. {
  2444. $where .= " and type = '$warehouse'";
  2445. }
  2446. if($express)
  2447. {
  2448. $where .= " and express = '$express'";
  2449. }
  2450. if($state)
  2451. {
  2452. $where .= " and state = '$state'";
  2453. }
  2454. if($print)
  2455. {
  2456. $where .= " and print = '$print'";
  2457. }
  2458. if($libraryconfirm)
  2459. {
  2460. $where .= " and libraryconfirm = '$libraryconfirm'";
  2461. }
  2462. if($orderinfo)
  2463. {
  2464. $where .= " and orderinfo = '$orderinfo'";
  2465. }
  2466. if($client)
  2467. {
  2468. $where .= " and client like '%$client%'";
  2469. }
  2470. if($email)
  2471. {
  2472. $where .= " and email = '$email'";
  2473. }
  2474. if($number)
  2475. {
  2476. $where .= " and number = '$number'";
  2477. }
  2478. if($waybill)
  2479. {
  2480. $where .= " and waybill = '$waybill'";
  2481. }
  2482. if($authorid)
  2483. {
  2484. $where .= " and authorid = '$authorid'";
  2485. }
  2486. if($sourcecontentid)
  2487. {
  2488. $where .= " and sourcecontentid = '$sourcecontentid'";
  2489. }
  2490. if($timetk && $timetj)
  2491. {
  2492. $timetj = $timetj+24*3600;
  2493. $where .= " and dtime > '$timetk' and dtime < '$timetj'";
  2494. }
  2495. //数据排序
  2496. $order_str = "dtime desc";
  2497. if(empty($page))
  2498. {
  2499. $start = 0;
  2500. $perpage = 1;
  2501. }
  2502. else
  2503. {
  2504. $start = ($page - 1)*$perpage;
  2505. }
  2506. //取得信息列表
  2507. $info_list = $this->fullorder->find_all($where,'id,shop,type,orderinfo,number,sname,state,buytime,review,libraryconfirm,express,waybill,exstate,orderremarks,library,clientremarks,waybillid',$order_str,$start,$perpage);
  2508. //格式化数据
  2509. $dt = 0;
  2510. foreach ($info_list as $key=>$value)
  2511. {
  2512. $ud = $this->fullorder->read($value['id']);
  2513. $ud['address'] = str_replace("'","’",$ud['address']);
  2514. $ud['name'] = str_replace("'","’",$ud['name']);
  2515. $customer = $this->customer->get_email($ud['email'],$value['shop']);
  2516. $customernum = $this->fullorder->find_count("email = '".$ud['email']."' and shop = '".$value['shop']."'");
  2517. preg_match_all('/[0-9]/u',$ud['phone'],$result);
  2518. $numphone = join('',$result[0]);
  2519. $customerb = $this->customer->find_all("type = 2 and (email = '".$ud['email']."' or address = '".$ud['address']."' or numphone = '".$numphone."')",'*','id desc');
  2520. $customerc = $this->customer->find_all("type = 1 and shop = '".$ud['shop']."' and address = '".$ud['address']."' and numphone = '".$numphone."'",'*','id desc');
  2521. //$a = array_column($customer, 'email'); //三维找其中健的数组
  2522. //$a = array_flip($a); //键和值调换
  2523. $lkh = $value['sname'];
  2524. $djlkh = 0;$djhmd = 0;
  2525. if($customer)
  2526. {
  2527. if(($customer['type'] == 1 && $customernum > 1))// || $customerc['type'] == 1 && $customerc['num'] > 1
  2528. {
  2529. $count = $customer['count']?'<i class="method fa fa-exclamation-circle" data-t="'.$customer['count'].'"></i>':'';
  2530. $lkh = "<p>".$value['sname']."</p><p style='color:#FF3333'>".$count."老客户</p>";
  2531. $djlkh = 1;
  2532. $djcount = $count;
  2533. }
  2534. else if(isset($customerc[0]['num']))
  2535. {
  2536. if($customerc[0]['num'] > 1)
  2537. {
  2538. $count = $customer['count']?'<i class="method fa fa-exclamation-circle" data-t="'.$customer['count'].'"></i>':'';
  2539. $lkh = "<p>".$value['sname']."</p><p style='color:#FF3333'>".$count."老客户</p>";
  2540. $djlkh = 1;
  2541. $djcount = $count;
  2542. }
  2543. }
  2544. }
  2545. if($customerb)
  2546. {
  2547. $hmsp = $this->shop->read($customerb[0]['shop']);
  2548. $count = $customerb[0]['count']?'<i class="method fa fa-exclamation-circle" data-t="'.$customerb[0]['count'].'"></i>':'';
  2549. $lkh = "<p>".$value['sname']."</p><p style='color:#9900CC'>".$count."黑名单</p><p style='color:#9900CC'>来自".$hmsp['shopname']."</p>";
  2550. $djhmd = 1;
  2551. }
  2552. if($djlkh == '1' && $djhmd == '1')
  2553. {
  2554. $lkh = "<p>".$value['sname']."</p><p style='color:#9900CC'><em style='color:#FF3333'>".$djcount."老客户</em> - ".$count."黑名单</p><p style='color:#9900CC'>来自".$hmsp['shopname']."</p>";
  2555. }
  2556. $info_list[$key]['sname'] = $lkh;
  2557. $shop = $this->shop->read($value['shop']);
  2558. $info_list[$key]['shop'] = $shop['shopname'];
  2559. //$info_list[$key]['user'] = $shop['shopuser'];
  2560. $warehouse = $this->warehouse->read($value['type']);
  2561. $warehousetitle = $warehouse['title'];
  2562. if($value['type'] != 1){$warehousetitle = "<font style='color:#f64b4b'>".$warehouse['title']."</font>";}
  2563. $info_list[$key]['type'] = $warehousetitle;
  2564. $typeclass = $this->typeclass->read($value['state']);
  2565. $info_list[$key]['state'] = $typeclass['spare'];
  2566. $wl = '';
  2567. if($value['exstate'] == '99')
  2568. {
  2569. $wl = '<font style="color:#ccc">未获取到物流信息</font>';
  2570. }
  2571. else if($value['exstate'] == '1')
  2572. {
  2573. $wl = '<font id="wl'.$ud['id'].'" class="lbwlxx">已揽收<font style="display: none">'.$ud['excontent'].'</font></font>';
  2574. }
  2575. else if($value['exstate'] == '2')
  2576. {
  2577. $wl = '<font id="wl'.$ud['id'].'" class="lbwlxx">在途中<font style="display: none">'.$ud['excontent'].'</font></font>';
  2578. }
  2579. else if($value['exstate'] == '3')
  2580. {
  2581. $wl = '<font id="wl'.$ud['id'].'" class="lbwlxx">派送中<font style="display: none">'.$ud['excontent'].'</font></font>';
  2582. }
  2583. else if($value['exstate'] == '4')
  2584. {
  2585. $wl = '<font id="wl'.$ud['id'].'" class="lbwlxx">已签收<font style="display: none">'.$ud['excontent'].'</font></font>';
  2586. }
  2587. else if($value['exstate'] == '5')
  2588. {
  2589. $wl = '<font id="wl'.$ud['id'].'" class="lbwlxx">派送异常<font style="display: none">'.$ud['excontent'].'</font></font>';
  2590. }
  2591. $info_list[$key]['exstate'] = $wl.'<br />';
  2592. if($ud['source'] == 1) //线下单用订单时间,其他用付款时间
  2593. {
  2594. $info_list[$key]['buytime'] = '<p>'.date('Y-m-d',$ud['dtime']).'</p><p>'.date('H:i:s',$ud['dtime']).'</p>';
  2595. }
  2596. else
  2597. {
  2598. $info_list[$key]['buytime'] = '<p>'.date('Y-m-d',$value['buytime']+$dt).'</p><p>'.date('H:i:s',$value['buytime']+$dt).'</p>';
  2599. }
  2600. if($value['review'] == 1)
  2601. {
  2602. $info_list[$key]['review'] = "未送审";
  2603. }
  2604. else if($value['review'] == 2)
  2605. {
  2606. $info_list[$key]['review'] = "<font style='color:#555'>待审核</font>";
  2607. }
  2608. else if($value['review'] == 3)
  2609. {
  2610. $info_list[$key]['review'] = "<font style='color:#f90f4b'>不通过</font>";
  2611. }
  2612. else if($value['review'] == 4)
  2613. {
  2614. $info_list[$key]['review'] = "取消重审";
  2615. }
  2616. else if($value['review'] == 5)
  2617. {
  2618. $info_list[$key]['review'] = "<font style='color:#2f80f9'>审核通过</font>";
  2619. }
  2620. else if($value['review'] == 6)
  2621. {
  2622. $info_list[$key]['review'] = "<font style='color:#2f80f9'>自动通过</font>";
  2623. }
  2624. if($ud['dlz'] == 1)
  2625. {
  2626. $dlz = "<p>独立站已更新</p>";
  2627. }
  2628. else if($ud['dlz'] == 3)
  2629. {
  2630. $dlz = "<p>不需要更新</p>";
  2631. }
  2632. else if($ud['dlz'] == 2)
  2633. {
  2634. $dlz = "<p style='color:#C3C'>独立站更新失败</p>";
  2635. }
  2636. else
  2637. {
  2638. $dlz = "";
  2639. }
  2640. if($value['waybill'] != "")
  2641. {
  2642. $info_list[$key]['waybill'] = "<p>".$value['waybill']."</p>".$dlz;
  2643. if( !empty($value['waybillid'])){
  2644. $info_list[$key]['waybill'] = "<p>".$value['waybill']."</p>".$dlz."<p>".$value['waybillid']."</p>";
  2645. }
  2646. }
  2647. if($value['express'] != 0)
  2648. {
  2649. $express = $this->express->read($value['express']);
  2650. $expressservicename = $express['servicename'];
  2651. if($value['express'] != 1){$expressservicename = "<font style='color:#f64b4b'>".$express['servicename']."</font>";}
  2652. $info_list[$key]['express'] = $expressservicename;
  2653. }
  2654. else
  2655. {
  2656. $info_list[$key]['express'] = "无";
  2657. }
  2658. $tly = "";
  2659. if($value['clientremarks'] != "")
  2660. {
  2661. $tly = "<p style='color:#FF3333'>有客户留言</p>";
  2662. }
  2663. if($value['library'] == 1 && $ud['printtype'] == 3)
  2664. {
  2665. $info_list[$key]['library'] = "不需要";
  2666. }
  2667. else if($value['library'] == 1 && $ud['printtype'] != 3)
  2668. {
  2669. $info_list[$key]['library'] = "未出库";
  2670. }
  2671. else if($value['library'] == 2)
  2672. {
  2673. $info_list[$key]['library'] = '<p>'.date('Y-m-d',$ud['librarytime']).'</p><p>'.date('H:i:s',$ud['librarytime']).'出库</p>';
  2674. }
  2675. else if($value['library'] == 3)
  2676. {
  2677. $info_list[$key]['library'] = '<p>'.date('Y-m-d',$ud['retreattime']).'</p><p>'.date('H:i:s',$ud['retreattime']).'退库</p>';
  2678. }
  2679. if($ud['authorid'] != '' && $ud['authorid'] != 0)
  2680. {
  2681. $info_list[$key]['orderremarks'] = '<p>'.$value['orderremarks'].'</p><p style="border-top: 1px dashed #C2C2C2;">author_id:</p><p>'.$ud['authorid'].'</p><p>source_content_id:</p><p>'.$ud['sourcecontentid'].'</p>';
  2682. }
  2683. unset($info_list[$key]['waybillid']);
  2684. }
  2685. $total = $this->fullorder->find_count($where);
  2686. $pagenum = ceil($total/$perpage);
  2687. $over = $total-($start+$perpage);
  2688. $rows = array('total'=>$total,'over'=>$over,'pagenum'=>$pagenum,'rows'=>($info_list));
  2689. echo json_encode($rows);exit;
  2690. }
  2691. $wlshop = $this->shop->find_all('1=1 and '.rtrim($sid,'or'));
  2692. $this->data['wlshop'] = $wlshop;
  2693. $this->_Template('fullorder_readlist',$this->data);
  2694. }
  2695. public function _readlistdown()
  2696. {
  2697. if(isset($_SESSION['api']))
  2698. {
  2699. $user = $this->user->get_api($_SESSION['api']);
  2700. $usp = $user;
  2701. $fgshop = "";$sid = "";
  2702. $usersp = explode('|',trim($user['shop'],'|'));
  2703. foreach ($usersp as $value)
  2704. {
  2705. $fgshop .= " shop = ".$value." or";
  2706. $sid .= " id = ".$value." or";
  2707. }
  2708. }
  2709. $post = $this->input->get(NULL, TRUE);
  2710. if(isset($post['excel']))
  2711. {
  2712. $shop = $this->input->get('shop',true);
  2713. $warehouse = $this->input->get('warehouse',true);
  2714. $express = $this->input->get('express',true);
  2715. $state = $this->input->get('state',true);
  2716. $print = $this->input->get('print',true);
  2717. $libraryconfirm = $this->input->get('libraryconfirm',true);
  2718. $orderinfo = $this->input->get('orderinfo',true);
  2719. $client = $this->input->get('name',true);
  2720. $email = $this->input->get('email',true);
  2721. $number = $this->input->get('number',true);
  2722. $waybill = $this->input->get('waybill',true);
  2723. $authorid = $this->input->get('authorid',true);
  2724. $sourcecontentid = $this->input->get('sourcecontentid',true);
  2725. $timetk = $this->input->get('timetk',true);
  2726. $timetj = $this->input->get('timetj',true);
  2727. $timetk = strtotime($timetk);
  2728. $timetj = strtotime($timetj);
  2729. $where = "1=1 and mergeid = 0 and (".rtrim($fgshop,'or').")";
  2730. if($shop)
  2731. {
  2732. $where .= " and shop = '$shop'";
  2733. }
  2734. if($warehouse)
  2735. {
  2736. $where .= " and type = '$warehouse'";
  2737. }
  2738. if($express)
  2739. {
  2740. $where .= " and express = '$express'";
  2741. }
  2742. if($state)
  2743. {
  2744. $where .= " and state = '$state'";
  2745. }
  2746. if($print)
  2747. {
  2748. $where .= " and print = '$print'";
  2749. }
  2750. if($libraryconfirm)
  2751. {
  2752. $where .= " and libraryconfirm = '$libraryconfirm'";
  2753. }
  2754. if($orderinfo)
  2755. {
  2756. $where .= " and orderinfo = '$orderinfo'";
  2757. }
  2758. if($client)
  2759. {
  2760. $where .= " and client like '%$client%'";
  2761. }
  2762. if($email)
  2763. {
  2764. $where .= " and email = '$email'";
  2765. }
  2766. if($number)
  2767. {
  2768. $where .= " and number = '$number'";
  2769. }
  2770. if($waybill)
  2771. {
  2772. $where .= " and waybill = '$waybill'";
  2773. }
  2774. if($authorid)
  2775. {
  2776. $where .= " and authorid = '$authorid'";
  2777. }
  2778. if($sourcecontentid)
  2779. {
  2780. $where .= " and sourcecontentid = '$sourcecontentid'";
  2781. }
  2782. if($timetk && $timetj)
  2783. {
  2784. $timetj = $timetj+24*3600;
  2785. $where .= " and dtime > '$timetk' and dtime < '$timetj'";
  2786. }
  2787. //数据排序
  2788. $order_str = "dtime desc";
  2789. //取得信息列表
  2790. $info_list = $this->fullorder->find_all($where,'shop,number,orderinfo,buytime,name,express,waybill,email,shipremarks,shouldmoney,orderremarks,librarytime,authorid,sourcecontentid',$order_str);
  2791. //格式化数据
  2792. $dt = 0;
  2793. foreach ($info_list as $key=>$value)
  2794. {
  2795. $shop = $this->shop->read($value['shop']);
  2796. $info_list[$key]['shop'] = $shop['shopname'];
  2797. $info_list[$key]['buytime'] = date('Y-m-d H:i:s',$value['buytime']);
  2798. if($value['librarytime'] > 0)
  2799. {
  2800. $info_list[$key]['librarytime'] = date('Y-m-d H:i:s',$value['librarytime']);
  2801. }
  2802. if($value['express'] != 0)
  2803. {
  2804. $express = $this->express->read($value['express']);
  2805. $info_list[$key]['express'] = $express['servicename'];
  2806. }
  2807. else
  2808. {
  2809. $info_list[$key]['express'] = "无";
  2810. }
  2811. }
  2812. $title = "订单列表 ".date("Y-m-d");
  2813. $titlename = "<table border=1>
  2814. <tr><th colspan='14' align='left'><h3>".$title."<h3></th></tr>
  2815. <tr>
  2816. <td>店铺</td>
  2817. <td>编号</td>
  2818. <td>订单号</td>
  2819. <td>订单日期</td>
  2820. <td>客户姓名</td>
  2821. <td>快递方式</td>
  2822. <td>运单号</td>
  2823. <td>邮箱</td>
  2824. <td>仓库品名</td>
  2825. <td>订单金额</td>
  2826. <td>订单备注</td>
  2827. <td>出库时间</td>
  2828. <td>author_id</td>
  2829. <td>source_content_id</td>
  2830. </tr>
  2831. </table>";
  2832. $filename = $title.".xls";
  2833. $tail = "\n";
  2834. $this->excel->get_fz2($info_list,$titlename,$filename,$tail);
  2835. }
  2836. }
  2837. //删除
  2838. public function _del()
  2839. {
  2840. echo json_encode(array('msg'=>'不允许执行!','success'=>false));exit;
  2841. $post = $this->input->post(NULL, TRUE);
  2842. if(isset($post['s']))
  2843. {
  2844. $id_arr = $this->input->post('s');
  2845. $id_arr = explode(',',$id_arr);
  2846. if(!$id_arr)
  2847. {
  2848. echo json_encode(array('msg'=>'参数错误!','success'=>false));exit;
  2849. }
  2850. //循环删除记录
  2851. foreach ($id_arr as $v)
  2852. {
  2853. $this->fullorder->remove($v);
  2854. }
  2855. echo json_encode(array('del'=>$id_arr,'msg'=>'删除记录成功!','success'=>true));
  2856. }
  2857. }
  2858. //查找商品价格
  2859. public function _price()
  2860. {
  2861. $post = $this->input->post(NULL, TRUE);
  2862. if(isset($post['data']))
  2863. {
  2864. $data = $this->input->post('data');
  2865. $data = explode('-',$data);
  2866. $number = '';$num = count($data);
  2867. //循环删除记录
  2868. for($i=0;$i<$num-1;$i++)
  2869. {
  2870. if($data[$i] != 0)
  2871. {
  2872. $number=$number.$data[$i];
  2873. if($i == 2)
  2874. {
  2875. $number=$number.$data[$num-1];
  2876. }
  2877. }
  2878. }
  2879. $list = $this->productdescribe->get_number($number);
  2880. if($list)
  2881. {
  2882. echo json_encode(array('msg'=>($list),'n'=>$data[$num-1],'number'=>$number,'success'=>true));
  2883. }
  2884. else
  2885. {
  2886. $list = array('purchase'=>0,'cost'=>0,'salesprice'=>0);
  2887. //echo json_encode(array('msg'=>'此信息没有配置价格!','n'=>$data[$num-1],'success'=>false));exit;
  2888. echo json_encode(array('msg'=>($list),'n'=>$data[$num-1],'number'=>$number,'success'=>true));exit;
  2889. }
  2890. }
  2891. }
  2892. public function _customs()
  2893. {
  2894. $post = $this->input->post(NULL, TRUE);
  2895. if(isset($post['e']))
  2896. {
  2897. $e = $this->input->post('e');//快递信息
  2898. $c = $this->input->post('c');//国家信息
  2899. $data = $this->customs->find_all('express = "'.$e.'" and country = "'.$c.'"');
  2900. $list = $this->productdescription->find_all('express = "'.$e.'" and country = "'.$c.'"');
  2901. $rows = array();
  2902. foreach ($data as $key=>$value)
  2903. {
  2904. $detailed = explode('|',trim($value['detailed'],'|'));
  2905. //此处未对比重量选择价值,暂直接选择第一条海关价值
  2906. $detailed = $this->detailed->read($detailed[0]);
  2907. $money = $detailed['customsval'];//找到海关价值
  2908. }
  2909. foreach ($list as $key=>$value)
  2910. {
  2911. $description = $this->typeclass->read($value['description']);
  2912. $list[$key]['title'] = $description['title'];//产品描述名称
  2913. }
  2914. if(!$data && !$list)
  2915. {
  2916. echo json_encode(array('msg'=>'无此快递配置信息!','success'=>false));exit;
  2917. }
  2918. else
  2919. {
  2920. //$list-title -description 取值
  2921. echo json_encode(array('money'=>sprintf("%.2f",$money),'msg'=>$list,'success'=>true));
  2922. }
  2923. }
  2924. }
  2925. public function _express()
  2926. {
  2927. $post = $this->input->post(NULL, TRUE);
  2928. if(isset($post['e']))
  2929. {
  2930. $e = $this->input->post('e');//快递信息
  2931. $c = $this->input->post('c');//国家信息
  2932. $data = $this->logistics->find_all('express = "'.$e.'" and country = "'.$c.'"');
  2933. if(!$data)
  2934. {
  2935. echo json_encode(array('success'=>false));exit;
  2936. }
  2937. else
  2938. {
  2939. echo json_encode(array('money'=>sprintf("%.2f",$data[0]['firstmoney']),'success'=>true));
  2940. }
  2941. }
  2942. }
  2943. public function _hl()
  2944. {
  2945. $post = $this->input->post(NULL, TRUE);
  2946. if(isset($post['cy']))
  2947. {
  2948. $hl = 0;
  2949. $cy = $this->input->post('cy');//币种ID
  2950. $cy = $this->typeclass->read($cy);
  2951. $gethl = $this->hl->get_hl();
  2952. foreach ($gethl as $v)
  2953. {
  2954. $code = str_replace(" ","",$v['code']);
  2955. if($code == $cy['title'])
  2956. {
  2957. $hl = $v['refePrice']/100;
  2958. }
  2959. }
  2960. echo json_encode(array('msg'=>$hl,'success'=>true));
  2961. }
  2962. }
  2963. public function _operation()
  2964. {
  2965. $post = $this->input->post(NULL, TRUE);
  2966. if(isset($post['type']))
  2967. {
  2968. $type = $this->input->post('type');
  2969. $id = $this->input->post('id');
  2970. $msg = $this->input->post('msg');
  2971. $d = $this->fullorder->read($id);
  2972. $time = time();
  2973. if($type == 1)//禁止发货
  2974. {
  2975. if($d['library'] != 1)
  2976. {
  2977. echo json_encode(array('msg'=>'操作失败,订单非未出库状态!','success'=>false));exit;
  2978. }
  2979. if($msg == "")
  2980. {
  2981. echo json_encode(array('msg'=>'必须填写禁止原因!','success'=>false));exit;
  2982. }
  2983. if($d['print'] < 3)
  2984. {
  2985. $a = "订单未打印,";
  2986. }
  2987. else
  2988. {
  2989. $a = "";
  2990. }
  2991. if($this->fullorder->save(array('libraryconfirm'=>1,'librarynot'=>$a.$msg),$id))
  2992. {
  2993. echo json_encode(array('msg'=>'操作成功','l'=>1,'d'=>$id,'success'=>true));exit;
  2994. }
  2995. else
  2996. {
  2997. echo json_encode(array('msg'=>'操作失败,请重试','success'=>false));exit;
  2998. }
  2999. }
  3000. if($type == 6)//允许发货
  3001. {
  3002. if($d['library'] > 1)
  3003. {
  3004. echo json_encode(array('msg'=>'订单已出库,操作失败','success'=>false));exit;
  3005. }
  3006. if($d['print'] < 3)
  3007. {
  3008. $a = "订单未打印,";
  3009. }
  3010. else
  3011. {
  3012. $a = "";
  3013. }
  3014. if($this->fullorder->save(array('libraryconfirm'=>2,'librarynot'=>$a.$msg),$id))
  3015. {
  3016. echo json_encode(array('msg'=>'操作成功','l'=>1,'d'=>$id,'success'=>true));exit;
  3017. }
  3018. else
  3019. {
  3020. echo json_encode(array('msg'=>'操作失败,请重试','success'=>false));exit;
  3021. }
  3022. }
  3023. if($type == 7)//禁止打印
  3024. {
  3025. if($d['printtime'] != 0)
  3026. {
  3027. echo json_encode(array('msg'=>'订单已打印,操作失败','success'=>false));exit;
  3028. }
  3029. if($d['library'] > 1)
  3030. {
  3031. echo json_encode(array('msg'=>'订单已出库,操作失败','success'=>false));exit;
  3032. }
  3033. if($d['print'] < 3)
  3034. {
  3035. $a = "订单未打印,";
  3036. }
  3037. else
  3038. {
  3039. $a = "";
  3040. }
  3041. if($this->fullorder->save(array('print'=>1),$id))
  3042. {
  3043. echo json_encode(array('msg'=>'操作成功','l'=>2,'d'=>$id,'success'=>true));exit;
  3044. }
  3045. else
  3046. {
  3047. echo json_encode(array('msg'=>'操作失败,请重试','success'=>false));exit;
  3048. }
  3049. }
  3050. if($type == 8)//允许打印
  3051. {
  3052. /**
  3053. if($d['printtime'] != 0)
  3054. {
  3055. echo json_encode(array('msg'=>'订单已打印,操作失败','success'=>false));exit;
  3056. }
  3057. **/
  3058. if($d['library'] > 1)
  3059. {
  3060. echo json_encode(array('msg'=>'订单已出库,操作失败','success'=>false));exit;
  3061. }
  3062. if($d['print'] < 3)
  3063. {
  3064. $a = "订单未打印,";
  3065. }
  3066. else
  3067. {
  3068. $a = "";
  3069. }
  3070. if($d['printtime'] == '0')
  3071. {
  3072. $bcprint = 2;
  3073. }
  3074. else
  3075. {
  3076. $bcprint = 3;
  3077. }
  3078. if($this->fullorder->save(array('print'=>$bcprint,'failed'=>''),$id))
  3079. {
  3080. echo json_encode(array('msg'=>'操作成功','l'=>2,'d'=>$id,'success'=>true));exit;
  3081. }
  3082. else
  3083. {
  3084. echo json_encode(array('msg'=>'操作失败,请重试','success'=>false));exit;
  3085. }
  3086. }
  3087. if($type == 9)//关闭
  3088. {
  3089. if($this->fullorder->save(array('failed'=>''),$id))
  3090. {
  3091. echo json_encode(array('msg'=>'操作成功','l'=>2,'d'=>$id,'success'=>true));exit;
  3092. }
  3093. else
  3094. {
  3095. echo json_encode(array('msg'=>'操作失败,请重试','success'=>false));exit;
  3096. }
  3097. }
  3098. if($type == 2)//填写运单、修改运单
  3099. {
  3100. if($d['express'] == 0)
  3101. {
  3102. echo json_encode(array('msg'=>'操作失败,未选择物流方式!','success'=>false));exit;
  3103. }
  3104. if($d['library'] == 3 || ($d['print'] == 3 && $d['libraryconfirm'] == 1))
  3105. {
  3106. echo json_encode(array('msg'=>'操作失败,不允许填写运单号!','success'=>false));exit;
  3107. }
  3108. if($msg == '')
  3109. {
  3110. echo json_encode(array('msg'=>'运单号不能为空!','success'=>false));exit;
  3111. }
  3112. $ckemail = '';
  3113. $d['waybill'] = $msg;
  3114. $xg = $this->fullorder->read($id);
  3115. $shop = $this->shop->read($xg['shop']);
  3116. $ex = $this->express->read($xg['express']);
  3117. $fs = $this->notice->find_all("shop = '".$d['shop']."' and message = '1' and state = '1' and type = '4' and ktime < '$time' and jtime > '$time'");
  3118. if(isset($fs[0]))
  3119. {
  3120. $fs = $fs[0];
  3121. $fs['email'] = $this->emaildata->read($fs['email']);
  3122. if(($xg['dlzemail'] == 1 && $msg != $xg['waybill']) || $xg['dlzemail'] == 0)
  3123. {
  3124. $warehouse = $this->warehouse->read($xg['type']);
  3125. $ck = $this->notice->get_god($d,$shop,$ex,$fs);
  3126. if($ck == 1)
  3127. {
  3128. $ckemail = '邮件发送成功,';
  3129. $this->fullorder->save(array('dlzemail'=>1,'dlzemailtime'=>time()),$id);
  3130. }
  3131. }
  3132. }
  3133. if( $msg )
  3134. {
  3135. if($xg['source'] != 1)
  3136. {
  3137. $ms = $this->message->find_all("express like '%,".$xg['express'].",%'");
  3138. if(!isset($ms[0]))
  3139. {
  3140. $ms = $this->message->read(2);
  3141. }
  3142. else
  3143. {
  3144. $ms = $ms[0];
  3145. }
  3146. if($xg['shop'] == 5){
  3147. $ddh = $xg['orderinfo'];
  3148. }else{
  3149. $ddh = substr($xg['orderinfo'],1);
  3150. }
  3151. $shopifyid = $xg['shopify'];
  3152. //独立站地址更新订单状态、物流信息
  3153. $shopname = $shop['brandname']; //店铺名
  3154. $buyername = $xg['bname']; //Bill Name
  3155. $email_call = $shop['shopid']; //发货人邮箱;
  3156. $phone = $shop['shopphone']; //发货人电话
  3157. $track_type = $ex['title']; //快递名称
  3158. $service = $ex['title']; //快递追踪名称
  3159. $track_link = $ex['url']; //快递查询网址
  3160. $logistics_number = $msg; //运单号
  3161. $t= array('%buyername%','%email_call%','%track_type%','%service%','%track_link%','%logistics_number%','%shop%','%phone%','%jtime%');
  3162. $h= array($buyername,$email_call,$track_type,$service,$track_link,$logistics_number,$shopname,$phone,$ex['yjtime']);
  3163. $remark = str_replace($t,$h,$ms['content']);
  3164. $gx = $this->api->get_gx($ddh,$msg,$xg,$shop,$ex,$remark,$shopifyid);
  3165. }
  3166. else if($xg['source'] == 1)
  3167. {
  3168. $gx['res'] = 3;
  3169. $gx['state'] = 216;
  3170. $gx['cw'] = 'a';
  3171. }
  3172. }
  3173. else
  3174. {
  3175. $gx['res'] = $xg['dlz'];
  3176. $gx['state'] = $xg['state'];
  3177. $gx['cw'] = 'b';
  3178. }
  3179. $xg['iscode'] = $ex['title'];
  3180. $xg['url'] = $shop['shopname'];
  3181. $xg['waybill'] = $msg;
  3182. @$chuanshu = $this->api->get_paypal($xg);
  3183. $this->afspaypal->insert(array('number'=>$xg['number'],'cs'=>$chuanshu));
  3184. $msg = preg_replace('/( | | | |\s)/','',$msg);
  3185. if($this->fullorder->save(array('waybill'=>$msg,'state'=>$gx['state'],'dlz'=>$gx['res']),$id))
  3186. {
  3187. if($gx['res'] == 2)
  3188. {
  3189. echo json_encode(array('msg'=>$ckemail.'传输独立站失败!','cs'=>$gx['state'].' - '.$gx['res'].' - '.$gx['cw'],'success'=>false));exit;
  3190. }
  3191. echo json_encode(array('msg'=>'操作成功','success'=>true));exit;
  3192. }
  3193. else
  3194. {
  3195. echo json_encode(array('msg'=>'操作失败,请重试','success'=>false));exit;
  3196. }
  3197. }
  3198. }
  3199. }
  3200. public function _merge()
  3201. {
  3202. $post = $this->input->post(NULL, TRUE);
  3203. if(isset($post['s']))
  3204. {
  3205. $id_arr = $this->input->post('s');
  3206. $id_arr = explode(',',trim( $id_arr,','));
  3207. $id_arr = array_reverse($id_arr);
  3208. if(!$id_arr)
  3209. {
  3210. echo json_encode(array('msg'=>'参数错误!','success'=>false));exit;
  3211. }
  3212. if(count($id_arr) < 2)
  3213. {
  3214. echo json_encode(array('msg'=>'缺少可合并单!','success'=>false));exit;
  3215. }
  3216. $tmp_list = $this->db->from('fullorder')->where_in('id',$id_arr)->select('id,orderinfo,number,type,express')->get()->result_array();
  3217. $count_warehouse_list = [];
  3218. $count_express_list = [];
  3219. $flag = 0;
  3220. $flag_str = '';
  3221. foreach ($tmp_list as $k => $v) {
  3222. $count_warehouse_list[$v['type']] = $v['type'];
  3223. if(empty($v['express'])){
  3224. $flag = 1;
  3225. $flag_str.= $v['number'].'仓库未选,请先选快递;';
  3226. }
  3227. $count_express_list[$v['express']] = $v['express'];
  3228. }
  3229. if($flag == 1){
  3230. echo json_encode(array('msg'=>$flag_str,'success'=>false));exit;
  3231. }
  3232. if(count($count_warehouse_list) > 1){
  3233. echo json_encode(array('msg'=>'合并单的仓库不一致,无法合并!','success'=>false));exit;
  3234. }
  3235. if(count($count_express_list) > 1){
  3236. echo json_encode(array('msg'=>'合并单的快递不一致,无法合并!','success'=>false));exit;
  3237. }
  3238. $post = array();
  3239. $u = $this->fullorder->read($id_arr[0]);
  3240. unset($id_arr[0]);
  3241. $this->db->trans_begin();
  3242. $hd = $this->fullorderhb->get_orderinfo($u['orderinfo']);
  3243. if(!$hd)
  3244. {
  3245. $this->fullorderhb->insert($u);
  3246. }
  3247. //相加
  3248. $post['shouldmoney'] = $u['shouldmoney'];//购买应收金额
  3249. $post['budget'] = $u['budget'];//预估到帐金额
  3250. $post['expressmoney']= $u['expressmoney'];//物流金额
  3251. //$post['refundy'] = $u['refundy'];//补/退原额
  3252. //$post['refundj'] = $u['refundj'];//补/退净额
  3253. $post['cost'] = $u['cost'];//成本金额
  3254. //$post['zzl'] = $u['zzl'];//总重量
  3255. //$post['zsbjz'] = $u['zsbjz'];//总申报价值
  3256. $post['ts'] = $u['ts'];//条数
  3257. $post['cost'] = $u['cost'];//成本金额
  3258. //追加
  3259. $post['rpaypal'] = $u['rpaypal'];//补/退交易号
  3260. $post['rtext'] = $u['rtext'];//补/退原因
  3261. $post['pay'] = $u['pay'];//付款方式
  3262. $post['paypal'] = $u['paypal'];//交易号
  3263. $post['clientremarks'] = $u['clientremarks'];//客户留言
  3264. $post['product'] = $u['product'];//商品名称
  3265. //$post['issku'] = $u['issku'];//sku
  3266. //$post['orderremarks'] = $u['orderremarks'];//订单备注
  3267. $post['shipremarks'] = $u['shipremarks'];//仓库品名
  3268. //产品追加
  3269. $post['fpdata'] = $u['fpdata'];//产品内容
  3270. $post['whlabel'] = $u['whlabel'];//产品对应库存码
  3271. $merge = $u['id'];
  3272. $d = array($u['id']);$order = '';
  3273. $zsl = 0;$zccsl = 0;
  3274. foreach ($id_arr as $v)
  3275. {
  3276. $v = $this->fullorder->read($v);
  3277. if($u['type'] != $v['type'])
  3278. {
  3279. echo json_encode(array('msg'=>'仓库不一致,无法合并!','success'=>false));exit;
  3280. }
  3281. if($v['shop'] = $u['shop'])
  3282. {
  3283. $hd = $this->fullorderhb->get_orderinfo($v['orderinfo']);
  3284. if(!$hd)
  3285. {
  3286. $this->fullorderhb->insert($v);
  3287. }
  3288. //$post['shouldmoney'] += $v['shouldmoney'];//购买应收金额
  3289. // $post['budget'] += $v['budget'];//预估到帐金额
  3290. // $post['expressmoney'] += $v['expressmoney'];//物流金额
  3291. //$post['refundy'] += $v['refundy'];//补/退原额
  3292. //$post['refundj'] += $v['refundj'];//补/退净额
  3293. $post['cost'] += $v['cost'];//成本金额
  3294. //$post['zzl'] += $v['zzl'];//总重量
  3295. //$post['zsbjz'] += $v['zsbjz'];//总申报价值
  3296. $post['ts'] += $v['ts'];//条数
  3297. //$post['rpaypal'] .= $v['rpaypal'];//补/退交易号
  3298. //$post['rtext'] .= $v['rtext'];//补/退原因
  3299. //$post['pay'] .= (stripos($post['pay'],$v['pay']) !== false)?'':';'.$v['pay'];//付款方式
  3300. //$post['paypal'] .= $v['paypal'];//交易号
  3301. $post['clientremarks'] .= $v['clientremarks'];//客户留言
  3302. $post['product'] .= $v['product'];//商品名称
  3303. //$post['issku'] .= $v['issku'];//sku
  3304. //$post['orderremarks'] .= $v['orderremarks'];//订单备注
  3305. $post['shipremarks'] .= $v['shipremarks'];//仓库品名
  3306. $post['fpdata'] .= $v['fpdata'];//产品内容
  3307. $post['whlabel'] .= ltrim($v['whlabel'],'|');//产品对应库存码
  3308. $d[] = $v['id'];
  3309. $order .= $v['orderinfo'].'('.$v['number'].')、';
  3310. $wl = $this->whlabel->find_all("zd = '".$v['number']."'");//查找是否有占用库存情况
  3311. $i = 0;
  3312. if($wl)//如果有那么清除所有占用
  3313. {
  3314. foreach ($wl as $val)
  3315. {
  3316. if($val['sku'] == 'Preset' && $val['state'] == '9')
  3317. {
  3318. $this->whlabel->remove($val['id']);//删除预设
  3319. $i++;
  3320. }
  3321. else
  3322. {
  3323. $this->whlabel->save(array('zd'=>''),$val['id']);//专属
  3324. $i++;
  3325. }
  3326. }
  3327. }
  3328. $zsl += count($wl);
  3329. $zccsl += $i;
  3330. $this->fullorder->save(array('merge'=>$u['id'],'mergeid'=>1,'orderremarks'=>' 《合并信息》:'.'已合并到'.$u['orderinfo'].'('.$u['number'].')中; '.$v['orderremarks'],'print'=>1,'libraryconfirm'=>1,'whlabel'=>'','fpdata'=>'','shipremarks'=>''),$v['id']);
  3331. }
  3332. }
  3333. //计算出单条价值
  3334. /**
  3335. if($post['zsbjz'] < 1 || $post['ts'] < 1)
  3336. {
  3337. //$post['dtsbjz'] = 0;
  3338. }
  3339. else
  3340. {
  3341. //$post['dtsbjz'] = $post['zsbjz']/$post['ts'];//单条申报价
  3342. }
  3343. **/
  3344. $post['orderremarks'] = ' 《合并信息》:由'.rtrim($order,'、').'合并而来; '.$u['orderremarks'];;
  3345. $post['merge'] = $u['id'];
  3346. //$post['mergeid'] = 1;
  3347. //合并重复项
  3348. $hbcfw = explode('|',trim($post['whlabel'],'|'));
  3349. $hbcff = explode(';',trim($post['fpdata'],';'));
  3350. $c = 0;
  3351. $hbw = array();
  3352. $hbf = array();
  3353. for($i=0;$i<count($hbcfw);$i++)
  3354. {
  3355. $w = explode('-',$hbcfw[$i]);
  3356. $f = explode('|',$hbcff[$i]);
  3357. if(isset($w[2]))
  3358. {
  3359. $w2 = ($w[2]==0)?0:'';
  3360. }
  3361. else
  3362. {
  3363. $w2 = '';
  3364. }
  3365. if(!isset($hbw[$w[0].$w2]))
  3366. {
  3367. $hbw[$w[0].$w2] = $hbcfw[$i];
  3368. $hbf[$w[0].$w2] = $hbcff[$i];
  3369. }
  3370. else
  3371. {
  3372. $c++;
  3373. $cw = explode('-',$hbw[$w[0].$w2]);
  3374. $cf = explode('|',$hbf[$w[0].$w2]);
  3375. if($cw[2] != 0 && $w[2] != 0)
  3376. {
  3377. $cf[2] += $f[2];
  3378. $cf[9] .= '~'.$f[9];
  3379. $hbf[$w[0].$w2] = implode("|",$cf);
  3380. $cw[1] += $f[2];
  3381. $cw[2] .= '~'.$f[9];
  3382. $hbw[$w[0].$w2] = implode("-",$cw);
  3383. }
  3384. else if($cw[2] == 0 && $w[2] == 0)
  3385. {
  3386. $cf[2] += $f[2];
  3387. $hbf[$w[0].$w2] = implode("|",$cf);
  3388. $cw[1] += $f[2];
  3389. $hbw[$w[0].$w2] = implode("-",$cw);
  3390. }
  3391. else
  3392. {
  3393. $hbw[] = $hbcfw[$i];
  3394. $hbf[] = $hbcff[$i];
  3395. }
  3396. }
  3397. }
  3398. if($c > 0)
  3399. {
  3400. $post['fpdata'] = implode(";",$hbf).';';
  3401. $post['whlabel'] = '|'.implode("|",$hbw).'|';
  3402. }
  3403. //合并重复项结束
  3404. $this->fullorder->save($post,$u['id']);
  3405. if ($this->db->trans_status() === FALSE)
  3406. {
  3407. $this->db->trans_commit();
  3408. echo json_encode(array('msg'=>'操作失败,请重试','success'=>false));exit;
  3409. }
  3410. else
  3411. {
  3412. $this->db->trans_commit();
  3413. echo json_encode(array('msg'=>'操作成功','d'=>($d),'b'=>$u['id'],'success'=>true));
  3414. }
  3415. }
  3416. /**
  3417. $post = $this->input->post(NULL, TRUE);
  3418. if(isset($post['type']))
  3419. {
  3420. $type = $this->input->post('type');
  3421. $id = $this->input->post('id');
  3422. $u = $this->fullorder->read($id);
  3423. $rows = $this->fullorder->find_all('name = "'.$u['name'].'" or email = "'.$u['email'].'" or address = "'.$u['address'].'"','*','id desc');
  3424. if(count($rows)>1)
  3425. {
  3426. $this->db->trans_begin();
  3427. $fpdata=$rows[0]['fpdata'];//购买产品
  3428. $shouldmoney=$rows[0]['shouldmoney'];//购买应收金额
  3429. $budget=$rows[0]['budget'];//预估到帐金额
  3430. $cost=$rows[0]['cost'];//成本金额
  3431. $merge=$rows[0]['id'];
  3432. $d = array($rows[0]['id']);
  3433. for($i=1;$i<count($rows);$i++)
  3434. {
  3435. $fpdata=$fpdata.$rows[$i]['fpdata'];
  3436. $shouldmoney=$shouldmoney+$rows[$i]['shouldmoney'];
  3437. $budget=$budget+$rows[$i]['budget'];
  3438. $cost=$cost+$rows[$i]['cost'];
  3439. $d[] = $rows[$i]['id'];
  3440. $this->fullorder->save(array('merge'=>$rows[0]['id'],'mergeid'=>1),$rows[$i]['id']);
  3441. }
  3442. $this->fullorder->save(array('fpdata'=>$fpdata,'shouldmoney'=>$shouldmoney,'budget'=>$budget,'cost'=>$cost,'merge'=>$merge),$rows[0]['id']);
  3443. if ($this->db->trans_status() === FALSE)
  3444. {
  3445. $this->db->trans_commit();
  3446. echo json_encode(array('msg'=>'操作失败,请重试','success'=>false));exit;
  3447. }
  3448. else
  3449. {
  3450. $this->db->trans_commit();
  3451. echo json_encode(array('msg'=>'操作成功','d'=>($d),'b'=>$rows[0]['id'],'success'=>true));
  3452. }
  3453. }
  3454. }
  3455. **/
  3456. }
  3457. //评价管理
  3458. public function _evaluate()
  3459. {
  3460. $user = $this->user->get_api($_SESSION['api']);
  3461. if($user)
  3462. {
  3463. $fgshop = "";$sid = "";
  3464. $user = explode('|',trim($user['shop'],'|'));
  3465. foreach ($user as $value)
  3466. {
  3467. $fgshop .= " shop = ".$value." or";
  3468. $sid .= " id = ".$value." or";
  3469. }
  3470. }
  3471. $post = $this->input->post(NULL, TRUE);
  3472. if(isset($post['page']))
  3473. {
  3474. $page = $this->input->post('page',true);
  3475. $perpage = $this->input->post('perpage',true);
  3476. $shop = $this->input->post('shop',true);
  3477. $where = "1=1 and evaluate = 0 and (".rtrim($fgshop,'or').")";
  3478. if($shop)
  3479. {
  3480. $where .= " and shop = '$shop'";
  3481. }
  3482. //数据排序
  3483. $order_str = "id desc";
  3484. if(empty($page))
  3485. {
  3486. $start = 0;
  3487. $perpage = 1;
  3488. }
  3489. else
  3490. {
  3491. $start = ($page - 1)*$perpage;
  3492. }
  3493. //取得信息列表
  3494. $info_list = $this->fullorder->find_all($where,'id,shop,orderinfo,number,operation',$order_str,$start,$perpage);
  3495. //格式化数据
  3496. foreach ($info_list as $key=>$value)
  3497. {
  3498. $shop = $this->shop->read($value['shop']);
  3499. $info_list[$key]['shop'] = $shop['shopname'];
  3500. $info_list[$key]['operation'] = "评价";
  3501. }
  3502. $total = $this->fullorder->find_count($where);
  3503. $pagenum = ceil($total/$perpage);
  3504. $over = $total-($start+$perpage);
  3505. $rows = array('total'=>$total,'over'=>$over,'pagenum'=>$pagenum,'rows'=>($info_list));
  3506. echo json_encode($rows);exit;
  3507. }
  3508. $this->_Template('fullorder_evaluate',$this->data);
  3509. }
  3510. //订单消息
  3511. public function _state()
  3512. {
  3513. $user = $this->user->get_api($_SESSION['api']);
  3514. if($user)
  3515. {
  3516. $fgshop = "";$sid = "";
  3517. $user = explode('|',trim($user['shop'],'|'));
  3518. foreach ($user as $value)
  3519. {
  3520. $fgshop .= " shop = ".$value." or";
  3521. $sid .= " id = ".$value." or";
  3522. }
  3523. }
  3524. $post = $this->input->post(NULL, TRUE);
  3525. if(isset($post['page']))
  3526. {
  3527. $page = $this->input->post('page',true);
  3528. $perpage = $this->input->post('perpage',true);
  3529. $timetk = $this->input->post('timetk',true);
  3530. $timetj = $this->input->post('timetj',true);
  3531. $shop = $this->input->post('shop',true);
  3532. $expressstate = $this->input->post('expressstate',true);
  3533. $fs = $this->input->post('fs',true);
  3534. $state = $this->input->post('state',true);
  3535. $express = $this->input->post('express',true);
  3536. $review = $this->input->post('review',true);
  3537. $orderinfo = $this->input->post('orderinfo',true);
  3538. $number = $this->input->post('number',true);
  3539. $waybill = $this->input->post('waybill',true);
  3540. $xztime = $this->input->post('xztime',true);
  3541. $timetk = strtotime($timetk);
  3542. $timetj = strtotime($timetj);
  3543. $where = "1=1 and mergeid = 0 and (".rtrim($fgshop,'or').")";
  3544. if($timetk && $timetj)
  3545. {
  3546. $where .= " and ".$xztime." > '$timetk' and ".$xztime." < '$timetj'";
  3547. }
  3548. if($xztime == 'librarytime')
  3549. {
  3550. $order_str = "librarytime desc";
  3551. }
  3552. else if($xztime == 'dtime')
  3553. {
  3554. $order_str = "dtime desc";
  3555. }
  3556. if($shop)
  3557. {
  3558. $where .= " and shop = '$shop'";
  3559. }
  3560. if($expressstate)
  3561. {
  3562. $where .= " and expressstate = '$expressstate'";
  3563. }
  3564. if($review)
  3565. {
  3566. $where .= " and review = '$review'";
  3567. }
  3568. if($fs)
  3569. {
  3570. if($fs == '2')
  3571. {
  3572. $where .= " and exstateerror != ''";
  3573. }
  3574. else
  3575. {
  3576. $where .= " and exstateerror = ''";
  3577. }
  3578. }
  3579. if($state)
  3580. {
  3581. $where .= " and state = '$state'";
  3582. }
  3583. if($express)
  3584. {
  3585. $where .= " and express = '$express'";
  3586. }
  3587. if($orderinfo)
  3588. {
  3589. $where .= " and orderinfo = '$orderinfo'";
  3590. }
  3591. if($number)
  3592. {
  3593. $where .= " and number = '$number'";
  3594. }
  3595. if($waybill)
  3596. {
  3597. $where .= " and waybill = '$waybill'";
  3598. }
  3599. if(empty($page))
  3600. {
  3601. $start = 0;
  3602. $perpage = 1;
  3603. }
  3604. else
  3605. {
  3606. $start = ($page - 1)*$perpage;
  3607. }
  3608. //取得信息列表
  3609. $info_list = $this->fullorder->find_all($where,'id,shop,orderinfo,number,country,library,librarytime,express,waybill,content,orderremarks,exstateerror',$order_str,$start,$perpage);
  3610. //格式化数据
  3611. foreach ($info_list as $key=>$value)
  3612. {
  3613. $shop = $this->shop->read($value['shop']);
  3614. $info_list[$key]['shop'] = $shop['shopname'];
  3615. $country = $this->country->read($value['country']);
  3616. $info_list[$key]['country'] = $country['name'];
  3617. //$state = $this->typeclass->read($value['state']);
  3618. //$info_list[$key]['state'] = $state['title'];
  3619. if($value['library'] == 1)
  3620. {
  3621. $info_list[$key]['library'] = "未出库";
  3622. }
  3623. else if($value['library'] == 2)
  3624. {
  3625. $info_list[$key]['library'] = "已出库";
  3626. }
  3627. else if($value['library'] == 3)
  3628. {
  3629. $info_list[$key]['library'] = "已退库";
  3630. }
  3631. if($value['librarytime'] == '0')
  3632. {
  3633. $info_list[$key]['librarytime'] = '无';
  3634. }
  3635. else
  3636. {
  3637. $info_list[$key]['librarytime'] = date('Y-m-d',$value['librarytime']).'<br>'.date('H:i:s',$value['librarytime']);
  3638. }
  3639. $express = $this->express->read($value['express']);
  3640. $info_list[$key]['express'] = $express['servicename'];
  3641. }
  3642. $total = $this->fullorder->find_count($where);
  3643. $pagenum = ceil($total/$perpage);
  3644. $over = $total-($start+$perpage);
  3645. $rows = array('total'=>$total,'over'=>$over,'pagenum'=>$pagenum,'rows'=>($info_list));
  3646. echo json_encode($rows);exit;
  3647. }
  3648. $notice = $this->notice->find_all("type = '1' and (".rtrim($fgshop,'or').")");
  3649. $this->data['notice'] = $notice;
  3650. $wlshop = $this->shop->find_all('1=1 and '.rtrim($sid,'or'));
  3651. $this->data['wlshop'] = $wlshop;
  3652. $this->data['express'] = $this->express->find_all();
  3653. $this->_Template('fullorder_state',$this->data);
  3654. }
  3655. //物流信息
  3656. public function _wl()
  3657. {
  3658. $user = $this->user->get_api($_SESSION['api']);
  3659. if($user)
  3660. {
  3661. $fgshop = "";$sid = "";
  3662. $user = explode('|',trim($user['shop'],'|'));
  3663. foreach ($user as $value)
  3664. {
  3665. $fgshop .= " shop = ".$value." or";
  3666. $sid .= " id = ".$value." or";
  3667. }
  3668. }
  3669. $post = $this->input->post(NULL, TRUE);
  3670. if(isset($post['page']))
  3671. {
  3672. $page = $this->input->post('page',true);
  3673. $perpage = $this->input->post('perpage',true);
  3674. $timetk = $this->input->post('timetk',true);
  3675. $timetj = $this->input->post('timetj',true);
  3676. $shop = $this->input->post('shop',true);
  3677. $expressstate = $this->input->post('expressstate',true);
  3678. $fs = $this->input->post('fs',true);
  3679. $state = $this->input->post('state',true);
  3680. $express = $this->input->post('express',true);
  3681. $orderinfo = $this->input->post('orderinfo',true);
  3682. $number = $this->input->post('number',true);
  3683. $waybill = $this->input->post('waybill',true);
  3684. $wlyc = $this->input->post('wlyc',true);
  3685. $wltype = $this->input->post('wltype',true);
  3686. $source = $this->input->post('source',true);
  3687. $xztime = $this->input->post('xztime',true);
  3688. $wlbz = $this->input->post('wlbz',true);
  3689. $timetk = strtotime($timetk);
  3690. $timetj = strtotime($timetj);
  3691. $where = "1=1 and mergeid = 0 and (".rtrim($fgshop,'or').")";
  3692. if($timetk && $timetj)
  3693. {
  3694. $where .= " and ".$xztime." > '$timetk' and ".$xztime." < '$timetj'";
  3695. }
  3696. if($xztime == 'librarytime')
  3697. {
  3698. $order_str = "librarytime desc";
  3699. }
  3700. else if($xztime == 'dtime')
  3701. {
  3702. $order_str = "dtime desc";
  3703. }
  3704. else if ($xztime == 'wlfstime')
  3705. {
  3706. $order_str = "wlfstime desc";
  3707. }
  3708. if($shop)
  3709. {
  3710. $where .= " and shop = '$shop'";
  3711. }
  3712. if($fs)
  3713. {
  3714. if($fs == '1')
  3715. {
  3716. $where .= " and wlcontent != ''";
  3717. }
  3718. if($fs == '2')
  3719. {
  3720. $where .= " and wlerror != ''";
  3721. }
  3722. if($fs == '3')
  3723. {
  3724. $where .= " and wlcontent = '' and shouldmoney > 100";
  3725. }
  3726. else if($fs == '4')
  3727. {
  3728. $where .= " and wltype = '1'";
  3729. }
  3730. }
  3731. if($state)
  3732. {
  3733. $where .= " and state = '$state'";
  3734. }
  3735. if($express)
  3736. {
  3737. $where .= " and express = '$express'";
  3738. }
  3739. if($orderinfo)
  3740. {
  3741. $where .= " and orderinfo = '$orderinfo'";
  3742. }
  3743. if($number)
  3744. {
  3745. $where .= " and number = '$number'";
  3746. }
  3747. if($waybill)
  3748. {
  3749. $where .= " and waybill = '$waybill'";
  3750. }
  3751. if($wlbz)
  3752. {
  3753. $where .= " and wlbz like '%$wlbz%'";
  3754. }
  3755. if($wlyc!='')
  3756. {
  3757. $where .= " and wlyc = '$wlyc'";
  3758. }
  3759. if($wltype!='')
  3760. {
  3761. $where .= " and wltype = '$wltype'";
  3762. }
  3763. if($source)
  3764. {
  3765. if($source == 1)
  3766. {
  3767. $where .= " and source = '$source'";
  3768. }
  3769. else
  3770. {
  3771. $where .= " and source != '1'";
  3772. }
  3773. }
  3774. if($expressstate != '')
  3775. {
  3776. if($expressstate == 99)
  3777. {
  3778. $cxid = '';
  3779. $sjcc = $this->awlgx->find_all("time < '".(time()-3*24*3600)."' and exstate != 6",'number');
  3780. foreach ($sjcc as $v)
  3781. {
  3782. $cxid .= "number = '".$v['number']."' or ";
  3783. }
  3784. $where .= ' and ('.rtrim($cxid,'or ').')';
  3785. }
  3786. else
  3787. {
  3788. $where .= " and expressstate = '$expressstate'";
  3789. }
  3790. }
  3791. if(empty($page))
  3792. {
  3793. $start = 0;
  3794. $perpage = 1;
  3795. }
  3796. else
  3797. {
  3798. $start = ($page - 1)*$perpage;
  3799. }
  3800. //取得信息列表
  3801. $info_list = $this->fullorder->find_all($where,'id,orderinfo,number,country,library,librarytime,expressstate,express,waybill,wlbz,orderremarks,wlcontent,wlerror,excontent,wltype',$order_str,$start,$perpage);
  3802. //格式化数据
  3803. foreach ($info_list as $key=>$value)
  3804. {
  3805. $f = $this->fullorder->read($value['id']);
  3806. $info_list[$key]['number'] = "<p>".$value['number']."</p>"."<p>".$f['email']."</p>";
  3807. $country = $this->country->read($value['country']);
  3808. $info_list[$key]['country'] = "<p>".$country['name']."</p><p>".$f['phone']."</p>";
  3809. //$state = $this->typeclass->read($value['state']);
  3810. //$info_list[$key]['state'] = $state['title'];
  3811. if($value['library'] == 1)
  3812. {
  3813. $info_list[$key]['library'] = "未出库";
  3814. }
  3815. else if($value['library'] == 2)
  3816. {
  3817. $info_list[$key]['library'] = "已出库";
  3818. }
  3819. else if($value['library'] == 3)
  3820. {
  3821. $info_list[$key]['library'] = "已退库";
  3822. }
  3823. if($value['librarytime'] == '0')
  3824. {
  3825. $info_list[$key]['librarytime'] = '无';
  3826. }
  3827. else
  3828. {
  3829. $info_list[$key]['librarytime'] = date('Y-m-d',$value['librarytime']).'<br>'.date('H:i:s',$value['librarytime']).'<br>'.$f['shouldmoney'];
  3830. }
  3831. if($value['expressstate'] == 0)
  3832. {
  3833. $info_list[$key]['expressstate'] = "无信息";
  3834. }
  3835. else if($value['expressstate'] == 2)
  3836. {
  3837. $info_list[$key]['expressstate'] = "已取件";
  3838. }
  3839. else if($value['expressstate'] == 3)
  3840. {
  3841. $info_list[$key]['expressstate'] = "在途中";
  3842. }
  3843. /**
  3844. else if($value['expressstate'] == 4)
  3845. {
  3846. $info_list[$key]['expressstate'] = "到达目的地国".$value['expressstate'];
  3847. }
  3848. **/
  3849. else if($value['expressstate'] == 4 || $value['expressstate'] == 5)
  3850. {
  3851. $info_list[$key]['expressstate'] = "即将派送";
  3852. }
  3853. else if($value['expressstate'] == 6)
  3854. {
  3855. $info_list[$key]['expressstate'] = "已签收";
  3856. }
  3857. else if($value['expressstate'] == 1)
  3858. {
  3859. $info_list[$key]['expressstate'] = "派送异常";
  3860. }
  3861. $express = $this->express->read($value['express']);
  3862. $info_list[$key]['express'] = $express['servicename'];
  3863. if($value['wltype'] == '0')
  3864. {
  3865. $info_list[$key]['wltype'] = "<p class='ckn'><b class='wlfsxx' data-id='".$value['id']."' data-q='1'>禁止发送</b></p>";
  3866. }
  3867. else
  3868. {
  3869. $info_list[$key]['wltype'] = "<p class='ckn'><b class='wlfsxx' data-id='".$value['id']."' data-q='1'>允许发送</b></p>";
  3870. }
  3871. if($f['wlyc'] == '0')
  3872. {
  3873. $info_list[$key]['wltype'] .= "<p class='yc'><b class='wlyc' data-id='".$value['id']."' data-t='1'>加入异常处理中</b></p>";
  3874. }
  3875. else if($f['wlyc'] == '1')
  3876. {
  3877. $info_list[$key]['wltype'] .= "<p class='yc'><b class='wlyc' data-id='".$value['id']."' data-t='2'>移入异常已处理</b></p>";
  3878. $info_list[$key]['wltype'] .= "<p class='yc'><b class='ycyc' data-id='".$value['id']."' data-c='2'>移出异常处理中</b></p>";
  3879. }
  3880. else if($f['wlyc'] == '2')
  3881. {
  3882. $info_list[$key]['wltype'] .= "<p><b>异常已处理</b></p>";
  3883. }
  3884. if(stripos($value['excontent'],'<br />') !== false)
  3885. {
  3886. $excontent = explode('<br />',$value['excontent']);
  3887. $info_list[$key]['excontent'] = '<i class="method fa fa-list-ul" data-t="'.$value['excontent'].'"></i> '.$excontent[0];
  3888. }
  3889. }
  3890. $total = $this->fullorder->find_count($where);
  3891. $pagenum = ceil($total/$perpage);
  3892. $over = $total-($start+$perpage);
  3893. $rows = array('total'=>$total,'over'=>$over,'pagenum'=>$pagenum,'rows'=>($info_list),'cs'=>$where);
  3894. echo json_encode($rows);exit;
  3895. }
  3896. if(isset($post['q']))
  3897. {
  3898. $id = $this->input->post('id',true);
  3899. $f = $this->fullorder->read($id);
  3900. $wl = ($f['wltype']=='0')?1:0;
  3901. $wltitle = ($f['wltype']=='0')?'已禁发送':'已允发送';
  3902. if($this->fullorder->save(array('wltype'=>$wl),$id))
  3903. {
  3904. echo json_encode(array('msg'=>'ckn','id'=>$id,'wltitle'=>$wltitle,'success'=>true));exit;
  3905. }
  3906. else
  3907. {
  3908. echo json_encode(array('msg'=>'失败,请重试','id'=>$id,'wltitle'=>$wltitle,'success'=>false));exit;
  3909. }
  3910. }
  3911. if(isset($post['t']))
  3912. {
  3913. $id = $this->input->post('id',true);
  3914. $f = $this->fullorder->read($id);
  3915. $t = $this->input->post('t',true);
  3916. $yc = ($f['wlyc']=='0')?1:2;
  3917. $yctitle = ($f['wlyc']=='0')?'移入成功':'异常已处理';
  3918. if($this->fullorder->save(array('wlyc'=>$yc),$id))
  3919. {
  3920. echo json_encode(array('msg'=>'yc','id'=>$id,'wltitle'=>$yctitle,'success'=>true));exit;
  3921. }
  3922. else
  3923. {
  3924. echo json_encode(array('msg'=>'失败,请重试','id'=>$id,'wltitle'=>$yctitle,'success'=>false));exit;
  3925. }
  3926. }
  3927. if(isset($post['c']))
  3928. {
  3929. $id = $this->input->post('id',true);
  3930. $f = $this->fullorder->read($id);
  3931. $t = $this->input->post('t',true);
  3932. $yc = 0;
  3933. $yctitle = '移出成功';
  3934. if($this->fullorder->save(array('wlyc'=>$yc),$id))
  3935. {
  3936. echo json_encode(array('msg'=>'yc','id'=>$id,'wltitle'=>$yctitle,'success'=>true));exit;
  3937. }
  3938. else
  3939. {
  3940. echo json_encode(array('msg'=>'失败,请重试','id'=>$id,'wltitle'=>$yctitle,'success'=>false));exit;
  3941. }
  3942. }
  3943. $notice = $this->notice->find_all("type = '2' and (".rtrim($fgshop,'or').")");
  3944. $this->data['notice'] = $notice;
  3945. $wlshop = $this->shop->find_all('1=1 and '.rtrim($sid,'or'));
  3946. $this->data['wlshop'] = $wlshop;
  3947. $this->data['express'] = $this->express->find_all();
  3948. $this->_Template('fullorder_wl',$this->data);
  3949. }
  3950. //审核订单
  3951. public function _review()
  3952. {
  3953. $user = $this->user->get_api($_SESSION['api']);
  3954. if($user)
  3955. {
  3956. $fgshop = "";$sid = "";
  3957. $user = explode('|',trim($user['shop'],'|'));
  3958. foreach ($user as $value)
  3959. {
  3960. $sid .= " id = ".$value." or";
  3961. $fgshop .= " shop = ".$value." or";
  3962. }
  3963. $fgshop = " and (".rtrim($fgshop,'or').")";
  3964. }
  3965. $post = $this->input->post(NULL, TRUE);
  3966. if(isset($post['page']))
  3967. {
  3968. $page = $this->input->post('page',true);
  3969. $perpage = $this->input->post('perpage',true);
  3970. $source = $this->input->post('source',true);
  3971. $warehouse = $this->input->post('warehouse',true);
  3972. $express = $this->input->post('express',true);
  3973. $orderremarks = $this->input->post('orderremarks',true);
  3974. $shop = $this->input->post('shop',true);
  3975. $review = $this->input->post('review',true);
  3976. $orderinfo = $this->input->post('orderinfo',true);
  3977. $shipremarks = $this->input->post('shipremarks',true);
  3978. $number = $this->input->post('number',true);
  3979. $timetk = $this->input->post('timetk',true);
  3980. $timetj = $this->input->post('timetj',true);
  3981. $timetk = strtotime($timetk);
  3982. $timetj = strtotime($timetj);
  3983. $where = "mergeid = 0 and state = '207'".$fgshop;
  3984. if($timetk && $timetj)
  3985. {
  3986. $where .= " and dtime > '$timetk' and dtime < '$timetj'";
  3987. }
  3988. if($source)
  3989. {
  3990. if($source == '2d')
  3991. {
  3992. $where .= " and source >= '2'";
  3993. }
  3994. else
  3995. {
  3996. $where .= " and source = '$source'";
  3997. }
  3998. }
  3999. if($review)
  4000. {
  4001. $where .= " and review = '$review'";
  4002. }
  4003. else
  4004. {
  4005. $where .= "and review <= '2'";
  4006. // $where .= " and ((review = '2' and source = '1') or (review = '1' and source >= '2'))";
  4007. }
  4008. if($shop)
  4009. {
  4010. $where .= " and shop = '$shop'";
  4011. }
  4012. if($warehouse)
  4013. {
  4014. $where .= " and type = '$warehouse'";
  4015. }
  4016. if($express)
  4017. {
  4018. $where .= " and express = '$express'";
  4019. }
  4020. if($orderremarks)
  4021. {
  4022. $where .= " and orderremarks like '%$orderremarks%'";
  4023. }
  4024. if($orderinfo)
  4025. {
  4026. $where .= " and orderinfo = '$orderinfo'";
  4027. }
  4028. if($number)
  4029. {
  4030. $where .= " and number = '$number'";
  4031. }
  4032. if($shipremarks)
  4033. {
  4034. $where .= " and shipremarks like '%$shipremarks%'";
  4035. }
  4036. //数据排序
  4037. $order_str = "id desc";
  4038. if(empty($page))
  4039. {
  4040. $start = 0;
  4041. $perpage = 1;
  4042. }
  4043. else
  4044. {
  4045. $start = ($page - 1)*$perpage;
  4046. }
  4047. //取得信息列表
  4048. $info_list = $this->fullorder->find_all($where,'id,shop,type,orderinfo,number,client,express,buytime,shouldmoney,review,orderremarks');
  4049. //格式化数据
  4050. foreach ($info_list as $key=>$value)
  4051. {
  4052. $lr = $this->fullorder->read($value['id']);
  4053. $shop = $this->shop->read($value['shop']);
  4054. $info_list[$key]['shop'] = $shop['shopname'];
  4055. $warehouse = $this->warehouse->read($value['type']);
  4056. $info_list[$key]['type'] = $warehouse['title'];
  4057. $express = $this->express->read($value['express']);
  4058. $info_list[$key]['express'] = $express['servicename'];
  4059. $info_list[$key]['buytime'] = '<p>'.date('Y-m-d',$value['buytime']).'</p><p>'.date('H:i:s',$value['buytime']).'</p>';
  4060. if($value['review'] == 1)
  4061. {
  4062. $info_list[$key]['review'] = "未送审";
  4063. }
  4064. else if($value['review'] == 2)
  4065. {
  4066. $info_list[$key]['review'] = "待审核";
  4067. }
  4068. else if($value['review'] == 3)
  4069. {
  4070. $info_list[$key]['review'] = "不通过";
  4071. }
  4072. else if($value['review'] == 4)
  4073. {
  4074. $info_list[$key]['review'] = "取消重审";
  4075. }
  4076. else if($value['review'] == 5)
  4077. {
  4078. $info_list[$key]['review'] = "审核通过";
  4079. }
  4080. else if($value['review'] == 6)
  4081. {
  4082. $info_list[$key]['review'] = "自动通过";
  4083. }
  4084. /**
  4085. $info_list[$key]['library'] = "";
  4086. if($value['review'] == 1)
  4087. {
  4088. $info_list[$key]['library'] = "<p><b class='focz' data-type='6' data-id='".$value['id']."'>审核通过</b></p>";
  4089. }
  4090. if($value['review'] == 2)
  4091. {
  4092. $info_list[$key]['library'] = "<p><b class='focz' data-type='5' data-id='".$value['id']."'>审核通过</b></p><p><b class='focz' data-type='3' data-id='".$value['id']."'>不通过</b></p>";
  4093. }
  4094. else if($value['review'] == 3)
  4095. {
  4096. $info_list[$key]['library'] = "<p><b class='fullorderreview' data-type='5' data-id='".$value['id']."'>审核通过</b></p>";
  4097. }
  4098. else if($value['review'] == 5)
  4099. {
  4100. $info_list[$key]['library'] = "<p><b class='fullorderreview' data-type='3' data-id='".$value['id']."'>不通过</b></p>";
  4101. }
  4102. $info_list[$key]['shouldmoney'] = $value['shouldmoney'].' '.$lr['currencytitle'];
  4103. $lr['hl'] = $lr['hl']==0?6.71:$lr['hl'];
  4104. $cost = $lr['cost']/$lr['hl'];
  4105. $currencytitle = $lr['budget']-$lr['refundj']-$cost-$lr['expressmoney'];
  4106. $info_list[$key]['currencytitle'] = sprintf("%.2f",$currencytitle).' '.$lr['currencytitle'];
  4107. **/
  4108. }
  4109. $total = $this->fullorder->find_count($where);
  4110. $pagenum = ceil($total/$perpage);
  4111. $over = $total-($start+$perpage);
  4112. $rows = array('total'=>$total,'over'=>$over,'pagenum'=>$pagenum,'rows'=>($info_list));
  4113. echo json_encode($rows);exit;
  4114. }
  4115. $wlshop = $this->shop->find_all('1=1 and '.rtrim($sid,'or'));
  4116. $this->data['shop'] = $wlshop;
  4117. $this->_Template('fullorder_review',$this->data);
  4118. }
  4119. public function _wlbz($arg_array)
  4120. {
  4121. $post = $this->input->post(NULL, TRUE);
  4122. if(isset($post['id']))
  4123. {
  4124. $id = $this->input->post('id',true);
  4125. $post['wlbz'] = $this->input->post('wlbz',true);
  4126. if($post['wlbz'] == '')
  4127. {
  4128. echo json_encode(array('msg'=>'备注不能为空','success'=>false));exit;
  4129. }
  4130. if($this->fullorder->save($post,$id))
  4131. {
  4132. echo json_encode(array('msg'=>'修改成功','id'=>$id,'success'=>true));exit;
  4133. }
  4134. else
  4135. {
  4136. echo json_encode(array('msg'=>'修改失败,请重试','success'=>false));exit;
  4137. }
  4138. }
  4139. $arg_array = $arg_array[0];
  4140. $fullorder = $this->fullorder->read($arg_array);
  4141. $this->data['fullorder'] = $fullorder;
  4142. $this->_Template('fullorder_wlbz',$this->data);
  4143. }
  4144. //导出资金统计excel
  4145. public function _fmexcel()
  4146. {
  4147. $user = $this->user->get_api($_SESSION['api']);
  4148. if($user)
  4149. {
  4150. $fgshop = "";$sid = "";
  4151. $user = explode('|',trim($user['shop'],'|'));
  4152. foreach ($user as $value)
  4153. {
  4154. $fgshop .= " shop = ".$value." or";
  4155. $sid .= " id = ".$value." or";
  4156. }
  4157. }
  4158. if(isset($_GET['excel']))
  4159. {
  4160. $timetk = $this->input->get('timetk',true);
  4161. $timetj = $this->input->get('timetj',true);
  4162. $shop = $this->input->get('shop',true);
  4163. $source = $this->input->get('source',true);
  4164. $state = $this->input->get('state',true);
  4165. $type = $this->input->get('type',true);
  4166. $orderinfo = $this->input->get('orderinfo',true);
  4167. $user = $this->input->get('user',true);
  4168. $name = $this->input->get('name',true);
  4169. $timetk = strtotime($timetk);
  4170. $timetj = strtotime($timetj);
  4171. $where = "1=1 and mergeid = 0 and (".rtrim($fgshop,'or').")";
  4172. if($timetk && $timetj)
  4173. {
  4174. $where .= " and buytime > '$timetk' and buytime < '$timetj'";
  4175. }
  4176. if($shop)
  4177. {
  4178. $where .= " and shop = '$shop'";
  4179. }
  4180. if($source)
  4181. {
  4182. $where .= " and source = '$source'";
  4183. }
  4184. if($state)
  4185. {
  4186. if($state == 1)
  4187. {
  4188. $where .= " and state = '$state'";
  4189. }
  4190. }
  4191. if($type)
  4192. {
  4193. $where .= " and type = '$type'";
  4194. }
  4195. if($orderinfo)
  4196. {
  4197. $where .= " and orderinfo = '$orderinfo'";
  4198. }
  4199. if($user)
  4200. {
  4201. $where .= " and user = '$user'";
  4202. }
  4203. if($name)
  4204. {
  4205. $where .= " and name = '$name'";
  4206. }
  4207. //取得信息列表
  4208. $info_list = $this->fullorder->find_all($where,'id,shop,user,number,orderinfo,client,country,dtime,ftime,express,waybill,shouldmoney,refund,currency,budget,fpdata,hl,currencytitle');
  4209. //格式化数据
  4210. $i = 1;$shouldmoney = 0;$refund = 0;$budget = 0;$currency = 0;$hl=1;
  4211. foreach ($info_list as $key=>$value)
  4212. {
  4213. $info_list[$key]['id'] = $i;
  4214. if($value['currencytitle'] != "CNY")
  4215. {
  4216. $hl=$value['hl'];
  4217. }
  4218. $shouldmoney=$shouldmoney+($value['shouldmoney']*$hl);
  4219. $budget=$budget+($value['budget']*$hl);
  4220. $currency=$currency+(($value['shouldmoney']-$value['budget'])*$hl);
  4221. $refund=$refund+($value['refund']*$hl);
  4222. $shop = $this->shop->read($value['shop']);
  4223. $info_list[$key]['shop'] = $shop['shopname'];
  4224. $info_list[$key]['user'] = $shop['shopuser'];
  4225. $info_list[$key]['dtime'] = date('Y-m-d H:i:s',$value['dtime']);
  4226. $info_list[$key]['ftime'] = date('Y-m-d H:i:s',$value['ftime']);
  4227. $country = $this->country->read($value['country']);
  4228. $info_list[$key]['country'] = $country['name'];
  4229. $express = $this->express->read($value['express']);
  4230. $info_list[$key]['express'] = $express['servicename'];
  4231. $info_list[$key]['shouldmoney'] = $value['shouldmoney'].' '.$value['currencytitle'];
  4232. $info_list[$key]['refund'] = $value['refund'].' '.$value['currencytitle'];
  4233. $info_list[$key]['budget'] = $value['budget'].' '.$value['currencytitle'];
  4234. $info_list[$key]['currency'] = sprintf("%.2f",$value['shouldmoney']-$value['budget']).' '.$value['currencytitle'];
  4235. $fpdata = array();
  4236. if(stripos($value['fpdata'],';') !== false)
  4237. {
  4238. $fpdata = explode(';',rtrim($value['fpdata'],';'));
  4239. foreach ($fpdata as $ke=>$va)
  4240. {
  4241. $v = explode('|',rtrim($va,'|'));
  4242. $fpdata[$ke] = array($v[4],$v[5],$v[6],$v[5]*$v[6]);//内容,条数,数量,总条数
  4243. }
  4244. }
  4245. $info_list[$key]['fpdata'] = $fpdata;
  4246. $i++;
  4247. }
  4248. $data = array($shouldmoney.' CNY',$refund.' CNY',$currency.' CNY',$budget.' CNY');
  4249. $title = "订单资金信息";
  4250. $titlename = "<table border=1>
  4251. <tr><th colspan='14' align='left'><h3>".$title."<h3></th></tr>
  4252. <tr>
  4253. <td>NO.</td>
  4254. <td>店铺</td>
  4255. <td>负责人</td>
  4256. <td>编号</td>
  4257. <td>订单号</td>
  4258. <td>客户姓名</td>
  4259. <td>国家</td>
  4260. <td>订单日期</td>
  4261. <td>发货日期</td>
  4262. <td>快递公司</td>
  4263. <td>运单号</td>
  4264. <td>订单金额</td>
  4265. <td>退款金额</td>
  4266. <td>手续费</td>
  4267. <td>预估金额</td>
  4268. <td>
  4269. <table border=1>
  4270. <tr><td colspan='3' align='center'>订单产品信息</td></tr>
  4271. <tr>
  4272. <td>产品</td>
  4273. <td>条数</td>
  4274. <td>数量</td>
  4275. </tr>
  4276. </table>
  4277. </td>
  4278. <td>总条数</td>
  4279. </tr>
  4280. </table>";
  4281. $filename = $title.".xls";
  4282. $tail = "<tr><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td>合计:</td><td>".$data[0]."</td><td>".$data[1]."</td><td>".$data[2]."</td><td>".$data[3]."</td></tr>\n";
  4283. $this->excel->get_fz($info_list,$titlename,$filename,$tail);
  4284. }
  4285. }
  4286. //导出订单excel
  4287. public function _fdexcel()
  4288. {
  4289. if(isset($_GET['excel']))
  4290. {
  4291. $page = $this->input->post('page',true);
  4292. $perpage = $this->input->post('perpage',true);
  4293. $timetk = $this->input->post('timetk',true);
  4294. $timetj = $this->input->post('timetj',true);
  4295. $shop = $this->input->post('shop',true);
  4296. $source = $this->input->post('source',true);
  4297. $state = $this->input->post('state',true);
  4298. $review = $this->input->post('review',true);
  4299. $express = $this->input->post('express',true);
  4300. $orderinfo = $this->input->post('orderinfo',true);
  4301. $user = $this->input->post('user',true);
  4302. $name = $this->input->post('name',true);
  4303. $waybill = $this->input->post('waybill',true);
  4304. $timetk = strtotime($timetk);
  4305. $timetj = strtotime($timetj);
  4306. $where = "1=1 and mergeid = 0";
  4307. if($timetk && $timetj)
  4308. {
  4309. $where .= " and buytime > '$timetk' and buytime < '$timetj'";
  4310. }
  4311. if($shop)
  4312. {
  4313. $where .= " and shop = '$shop'";
  4314. }
  4315. if($source)
  4316. {
  4317. $where .= " and source = '$source'";
  4318. }
  4319. if($state)
  4320. {
  4321. $where .= " and state = '$state'";
  4322. }
  4323. if($review)
  4324. {
  4325. $where .= " and review = '$review'";
  4326. }
  4327. if($express)
  4328. {
  4329. $where .= " and express = '$express'";
  4330. }
  4331. if($orderinfo)
  4332. {
  4333. $where .= " and orderinfo = '$orderinfo'";
  4334. }
  4335. if($user)
  4336. {
  4337. $where .= " and user = '$user'";
  4338. }
  4339. if($name)
  4340. {
  4341. $where .= " and name = '$name'";
  4342. }
  4343. if($waybill)
  4344. {
  4345. $where .= " and waybill = '$waybill'";
  4346. }
  4347. //取得信息列表
  4348. $info_list = $this->fullorder->find_all($where,'id,shop,number,orderinfo,source,client,name,address,city,zipcode,province,country,phone,dtime,ftime,state,shouldmoney,express,waybill,orderremarks,clientremarks,fpdata,hl,currencytitle');
  4349. //格式化数据
  4350. $i = 1;$shouldmoney = 0;$hl=1;
  4351. foreach ($info_list as $key=>$value)
  4352. {
  4353. $info_list[$key]['id'] = $i;
  4354. if($value['source'] == 1)
  4355. {
  4356. $info_list[$key]['source'] = "线下订单";
  4357. }
  4358. else if($value['source'] == 2)
  4359. {
  4360. $info_list[$key]['source'] = "PC订单";
  4361. }
  4362. else if($value['source'] == 3)
  4363. {
  4364. $info_list[$key]['source'] = "手机订单";
  4365. }
  4366. if($value['currencytitle'] != "CNY")
  4367. {
  4368. $hl=$value['hl'];
  4369. }
  4370. $shouldmoney=$shouldmoney+($value['shouldmoney']*$hl);
  4371. $shop = $this->shop->read($value['shop']);
  4372. $info_list[$key]['shop'] = $shop['shopname'];
  4373. $info_list[$key]['dtime'] = date('Y-m-d H:i:s',$value['dtime']);
  4374. $info_list[$key]['ftime'] = date('Y-m-d H:i:s',$value['ftime']);
  4375. $state = $this->typeclass->read($value['state']);
  4376. $info_list[$key]['state'] = $state['title'];
  4377. $country = $this->country->read($value['country']);
  4378. $info_list[$key]['country'] = $country['name'];
  4379. $express = $this->express->read($value['express']);
  4380. $info_list[$key]['express'] = $express['servicename'];
  4381. $info_list[$key]['shouldmoney'] = $value['shouldmoney'].' '.$value['currencytitle'];
  4382. $fpdata = array();
  4383. if(stripos($value['fpdata'],';') !== false)
  4384. {
  4385. $fpdata = explode(';',rtrim($value['fpdata'],';'));
  4386. foreach ($fpdata as $ke=>$va)
  4387. {
  4388. $v = explode('|',rtrim($va,'|'));
  4389. $fpdata[$ke] = array($v[4],$v[5],$v[6],$v[5]*$v[6]);//内容,条数,数量,总条数
  4390. }
  4391. }
  4392. $info_list[$key]['fpdata'] = $fpdata;
  4393. $i++;
  4394. }
  4395. $data = array($shouldmoney.' CNY');
  4396. $title = "订单信息表";
  4397. $titlename = "<table border=1>
  4398. <tr><th colspan='14' align='left'><h3>".$title."<h3></th></tr>
  4399. <tr>
  4400. <td>NO.</td>
  4401. <td>店铺</td>
  4402. <td>编号</td>
  4403. <td>订单号</td>
  4404. <td>订单类型</td>
  4405. <td>客户姓名</td>
  4406. <td>收件人名称</td>
  4407. <td>收货人地址</td>
  4408. <td>城市</td>
  4409. <td>邮编</td>
  4410. <td>州</td>
  4411. <td>国家</td>
  4412. <td>收件电话</td>
  4413. <td>订单日期</td>
  4414. <td>发货日期</td>
  4415. <td>订单状态</td>
  4416. <td>订单金额</td>
  4417. <td>快递公司</td>
  4418. <td>运单号</td>
  4419. <td>订单备注</td>
  4420. <td>客户备注</td>
  4421. <td>
  4422. <table border=1>
  4423. <tr><td colspan='3' align='center'>订单产品信息</td></tr>
  4424. <tr>
  4425. <td>产品</td>
  4426. <td>条数</td>
  4427. <td>数量</td>
  4428. </tr>
  4429. </table>
  4430. </td>
  4431. <td>总条数</td>
  4432. </tr>
  4433. </table>";
  4434. $filename = $title.".xls";
  4435. $tail = "<tr><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td>合计:</td><td>".$data[0]."</td></tr>\n";
  4436. $this->excel->get_fz($info_list,$titlename,$filename,$tail);
  4437. }
  4438. }
  4439. public function _black()
  4440. {
  4441. $post = $this->input->post(NULL, TRUE);
  4442. if(isset($post['bd']))
  4443. {
  4444. $bd = $this->input->post('bd',true);
  4445. $rows = $this->fullorder->read($bd);
  4446. $post['shop'] = $rows['shop'];
  4447. $post['source'] = 1;
  4448. $post['name'] = $rows['client'];
  4449. $post['email'] = $rows['email'];
  4450. $post['phone'] = $rows['phone'];
  4451. $post['country'] = $rows['country'];
  4452. $post['money'] = $rows['shouldmoney'];
  4453. $post['num'] = 1;
  4454. $post['time'] = $rows['dtime'];
  4455. $post['province'] = $rows['province'];
  4456. $post['city'] = $rows['city'];
  4457. $post['street'] = $rows['street'];
  4458. $post['address'] = $rows['address'];
  4459. $post['address2'] = $rows['address2'];
  4460. $post['zipcode'] = $rows['zipcode'];
  4461. $post['type'] = 2;
  4462. if($this->customer->insert($post))
  4463. {
  4464. $this->fullorder->save(array('black'=>1),$bd);
  4465. echo json_encode(array('msg'=>'操作成功','success'=>true));exit;
  4466. }
  4467. else
  4468. {
  4469. echo json_encode(array('msg'=>'操作失败,请重试','success'=>false));exit;
  4470. }
  4471. }
  4472. }
  4473. public function _ryf()
  4474. {
  4475. $post = $this->input->post(NULL, TRUE);
  4476. if(isset($post['bd']))
  4477. {
  4478. $bd = $this->input->post('bd',true);
  4479. $d = $this->fullorder->read($bd);
  4480. if($d['state'] == 207 || $d['state'] == 207)//订单状态为等待发货或等待部分发货才可更改为允许发货
  4481. {
  4482. if($d['print'] < 3)//打印状态为未打印
  4483. {
  4484. $print = 1;//未打印
  4485. $libraryconfirm = 1;//不允许出库
  4486. $a = "订单未打印,";
  4487. }
  4488. else//已打印订单
  4489. {
  4490. $libraryconfirm = 2;//允许出库
  4491. $a = "";
  4492. }
  4493. if($this->fullorder->save(array('librarynot'=>$a,'libraryconfirm'=>$libraryconfirm,'print'=>$print),$bd))
  4494. {
  4495. echo json_encode(array('msg'=>'操作成功','success'=>true));exit;
  4496. }
  4497. else
  4498. {
  4499. echo json_encode(array('msg'=>'操作失败,请重试','success'=>false));exit;
  4500. }
  4501. }
  4502. if($this->fullorder->save(array('librarynot'=>$a,'libraryconfirm'=>$libraryconfirm,'print'=>$print),$bd))
  4503. {
  4504. echo json_encode(array('msg'=>'操作失败!订单未非发货状态','success'=>false));exit;
  4505. }
  4506. else
  4507. {
  4508. echo json_encode(array('msg'=>'操作失败,请重试','success'=>false));exit;
  4509. }
  4510. }
  4511. }
  4512. public function _fsstate()
  4513. {
  4514. $post = $this->input->post(NULL, TRUE);
  4515. if(isset($post['s']))
  4516. {
  4517. $id_arr = $this->input->post('s');
  4518. $id_arr = explode(',',$id_arr);
  4519. if(!$id_arr)
  4520. {
  4521. echo json_encode(array('msg'=>'参数错误!','success'=>false));exit;
  4522. }
  4523. foreach ($id_arr as $v)
  4524. {
  4525. $data = $this->fullorder->read($v);
  4526. $warehouse = $this->warehouse->read($data['type']);
  4527. $fs = $this->notice->get_ordertatus($data['state']);
  4528. if($fs)
  4529. {
  4530. $ck = $this->_email($fs['content'],$data,$warehouse['company']);
  4531. if($ck == 1)
  4532. {
  4533. $this->fullorder->save(array('fscontent'=>date('Y-m-d H:i:s',time()).'已发送:'.$fs['title'].' - '),$v);
  4534. }
  4535. }
  4536. }
  4537. echo json_encode(array('msg'=>'发送完成!','success'=>true));exit;
  4538. }
  4539. }
  4540. public function _power()
  4541. {
  4542. $user = $this->user->get_api($_SESSION['api']);
  4543. $post = $this->input->post(NULL, TRUE);
  4544. if(isset($post['id']))
  4545. {
  4546. $id = $this->input->post('id',true);
  4547. $fullorder = $this->fullorder->read($id);
  4548. $express = $this->express->read($fullorder['express']);
  4549. $warehouse = $this->warehouse->read($fullorder['type']);
  4550. if(($warehouse['zd'] == '1' || stripos($fullorder['whlabel'],'z|') !== false) && $fullorder['library'] == '2')
  4551. {
  4552. echo json_encode(array('msg'=>'需要先退库释放库存后才可重置!','success'=>false));exit;
  4553. }
  4554. /**
  4555. if($fullorder['print'] == '3' && isset($express['iscode']) && ($express['iscode'] == 'ARAMEX' || $express['iscode'] == 'TOLL' || $express['iscode'] == 'FEDEX'))
  4556. {
  4557. $lj = $this->ali->get_lj($fullorder['number'],2,'订单修改');
  4558. if($lj != '1' && $lj != '订单不存在')
  4559. {
  4560. echo json_encode(array('msg'=>$lj,'success'=>false));exit;
  4561. }
  4562. }
  4563. **/
  4564. $warehouse = $this->warehouse->read($fullorder['warehouse']);
  4565. $typeclass = $this->typeclass->read($fullorder['state']);
  4566. $express = $this->express->read($fullorder['express']);
  4567. $printtype = array(1=>'运单',2=>'发货单',3=>'不打印单据');
  4568. $teset['number']=$fullorder['number'];
  4569. $teset['orderinfo']=$fullorder['orderinfo'];
  4570. $teset['shop']=$fullorder['shop'];
  4571. $teset['user']=$user['userid'];
  4572. $teset['ip']=$this->input->ip_address();
  4573. $teset['time']=time();
  4574. $teset['warehouse']=(isset($warehouse['title']))?$warehouse['title']:'未选择';
  4575. $teset['state']=(isset($typeclass['title']))?$typeclass['spare']:'未选择';
  4576. $teset['express']=(isset($express['title']))?$express['servicename']:'未选择';
  4577. $teset['printtype']=(isset($printtype[$fullorder['printtype']]))?$printtype[$fullorder['printtype']]:'未选择';
  4578. $teset['reviewtime']=($fullorder['reviewtime'] > '0')?date('Y-m-d H:i:s',$fullorder['reviewtime']):'无';
  4579. $teset['printtime']=($fullorder['printtime'] > '0')?date('Y-m-d H:i:s',$fullorder['printtime']):'无';
  4580. $teset['librarytime']=($fullorder['librarytime'] > '0')?date('Y-m-d H:i:s',$fullorder['librarytime']):'无';
  4581. $teset['shipremarks']=$fullorder['shipremarks'];
  4582. $teset['fpdata']=$fullorder['fpdata'];
  4583. $teset['oldwaybill']=$fullorder['oldwaybill'];
  4584. $teset['oldprinttime']=$fullorder['oldprinttime'];
  4585. if($fullorder['printtype'] == 1)
  4586. {
  4587. if($fullorder['waybill'] != '' && stripos($fullorder['oldwaybill'],$fullorder['waybill']) === false)
  4588. {
  4589. $teset['oldwaybill'] .= '-'.date('Ymd',$fullorder['printtime']).'/'.$fullorder['waybill'];
  4590. $teset['oldprinttime'] .= '-'.$fullorder['printtime'];
  4591. }
  4592. }
  4593. $review = ($fullorder['source']==1)?2:1;//线下单审核状态直接为待审核
  4594. if(!$this->fullreset->insert($teset))
  4595. {
  4596. echo json_encode(array('msg'=>'重置失败,请重试','success'=>true));exit;
  4597. }
  4598. if($this->fullorder->save(array('library'=>1,'librarytime'=>0,'libraryconfirm'=>2,'print'=>1,'printtime'=>0,'printnumber'=>0,'retreattime'=>0,'librarynot'=>'订单未打印,未审核或未通过','review'=>$review,'reviewtime'=>0,'state'=>207,'waybill'=>'','waybill2'=>'','waybillid'=>'','oldwaybill'=>$teset['oldwaybill'],'oldprinttime'=>$teset['oldprinttime'],'dlzemail'=>0,'yhs'=>0,'failed'=>''),$id))
  4599. {
  4600. $th_info = $this->retreatlogs->getInfoByNumber($fullorder['number']);
  4601. if(!empty($th_info)){
  4602. $this->retreatlogs->save(array('cz_time'=>time()),$th_info['id']);
  4603. }
  4604. echo json_encode(array('msg'=>'重置成功!如需再次提交,请先保存、再提交','success'=>true));exit;
  4605. }
  4606. else
  4607. {
  4608. echo json_encode(array('msg'=>'重置失败,请重试','success'=>false));exit;
  4609. }
  4610. }
  4611. }
  4612. public function _expresstype()
  4613. {
  4614. $post = $this->input->post(NULL, TRUE);
  4615. if(isset($post['id']))
  4616. {
  4617. $id = $this->input->post('id',true);
  4618. $data = $this->express->read($id);
  4619. echo json_encode(array('msg'=>$data['type'],'success'=>true));exit;
  4620. }
  4621. }
  4622. public function _email($content,$data,$shopname)
  4623. {
  4624. $express = $this->express->read($data['express']);
  4625. $t= array('$userName','$orderid','$trackingNumber','$expressCompany','$contactPerson','$mobileNo','$zip','$recipientAddress');//需要被替换的内容
  4626. $h= array($data['client'],$data['orderinfo'],$data['waybill'],$express['servicename'],$data['name'],$data['phone'],$data['zipcode'],$data['address']);//替换的内容
  4627. $content = str_replace($t,$h,$content);
  4628. $this->load->library('email');
  4629. $config['protocol'] = 'smtp';
  4630. $config['smtp_host'] = 'smtpdm-ap-southeast-1.aliyun.com';
  4631. $config['smtp_port'] = 465;
  4632. $config['smtp_user'] = 'service@email.supernovahair.com';
  4633. $config['smtp_pass'] = 'LONGyihair374';
  4634. $config['smtp_crypto'] = 'ssl';
  4635. $config['crlf'] = "\r\n";
  4636. $config['newline'] = "\r\n";
  4637. $this->email->initialize($config);
  4638. $this->email->from('service@email.supernovahair.com',$shopname);
  4639. $this->email->to($data['email']);//收件
  4640. $this->email->subject('The product you purchased has a new progress');//标题
  4641. $this->email->message($content);//内容
  4642. if ( ! $this->email->send())
  4643. {
  4644. return 2;
  4645. }
  4646. else
  4647. {
  4648. return 1;
  4649. }
  4650. }
  4651. public function _error()
  4652. {
  4653. if(isset($_SESSION['api']))
  4654. {
  4655. $user = $this->user->get_api($_SESSION['api']);
  4656. $usp = $user;
  4657. $fgshop = "";$sid = "";
  4658. $user = explode('|',trim($user['shop'],'|'));
  4659. foreach ($user as $value)
  4660. {
  4661. $fgshop .= " shop = ".$value." or";
  4662. $sid .= " id = ".$value." or";
  4663. }
  4664. }
  4665. $post = $this->input->post(NULL, TRUE);
  4666. if(isset($post['page']))
  4667. {
  4668. $page = $this->input->post('page',true);
  4669. $perpage = $this->input->post('perpage',true);
  4670. $orderinfo = $this->input->post('orderinfo',true);
  4671. $waybill = $this->input->post('waybill',true);
  4672. $number = $this->input->post('number',true);
  4673. $timetk = $this->input->post('timetk',true);
  4674. $timetj = $this->input->post('timetj',true);
  4675. $timetk = strtotime($timetk);
  4676. $timetj = strtotime($timetj);
  4677. $where = "failed !='' and mergeid = 0 and print != 3 and (".rtrim($fgshop,'or').")";
  4678. if($orderinfo)
  4679. {
  4680. $where .= " and orderinfo = '$orderinfo'";
  4681. }
  4682. if($waybill)
  4683. {
  4684. $where .= " and waybill = '$waybill'";
  4685. }
  4686. if($number)
  4687. {
  4688. $where .= " and number = '$number'";
  4689. }
  4690. if($timetk && $timetj)
  4691. {
  4692. $timetj = $timetj+24*3600;
  4693. $where .= " and dtime > '$timetk' and dtime < '$timetj'";
  4694. }
  4695. //数据排序
  4696. $order_str = "dtime desc";
  4697. if(empty($page))
  4698. {
  4699. $start = 0;
  4700. $perpage = 1;
  4701. }
  4702. else
  4703. {
  4704. $start = ($page - 1)*$perpage;
  4705. }
  4706. $info_list = $this->fullorder->find_all($where,'id,shop,type,orderinfo,number,express,failed,operation',$order_str,$start,$perpage);
  4707. //格式化数据
  4708. foreach ($info_list as $key=>$value)
  4709. {
  4710. $ud = $this->fullorder->read($value['id']);
  4711. $shop = $this->shop->read($value['shop']);
  4712. $info_list[$key]['shop'] = $shop['shopname'];
  4713. $info_list[$key]['orderinfo'] = "<h9 class='window' data-h='/fullorder/edit/".$value['id']."' data-t='订单号:".$value['orderinfo']."'>".$value['orderinfo']."<p>";
  4714. $warehouse = $this->warehouse->read($value['type']);
  4715. $warehousetitle = $warehouse['title'];
  4716. if($value['type'] != 1){$warehousetitle = "<font style='color:#f64b4b'>".$warehouse['title']."</font>";}
  4717. $info_list[$key]['type'] = $warehousetitle;
  4718. if($value['express'] != 0)
  4719. {
  4720. $express = $this->express->read($value['express']);
  4721. $expressservicename = $express['servicename'];
  4722. if($value['express'] != 1){$expressservicename = "<font style='color:#f64b4b'>".$express['servicename']."</font>";}
  4723. $info_list[$key]['express'] = $expressservicename;
  4724. }
  4725. else
  4726. {
  4727. $info_list[$key]['express'] = "无";
  4728. }
  4729. $x = "";
  4730. if($ud['review'] >4 && $ud['print'] == 1)
  4731. {
  4732. $x = "<p class='ckn'><b class='fojzof' data-type='8' data-id='".$value['id']."'>允许打印</b></p>";
  4733. }
  4734. else
  4735. {
  4736. $x = "<p class='ckn'><b class='fojzof' data-type='9' data-id='".$value['id']."'>关闭</b></p>";
  4737. }
  4738. $info_list[$key]['operation'] = $x;
  4739. }
  4740. $total = $this->fullorder->find_count($where);
  4741. $pagenum = ceil($total/$perpage);
  4742. $over = $total-($start+$perpage);
  4743. $rows = array('total'=>$total,'over'=>$over,'pagenum'=>$pagenum,'rows'=>($info_list));
  4744. echo json_encode($rows);exit;
  4745. }
  4746. $wlshop = $this->shop->find_all('1=1 and '.rtrim($sid,'or'));
  4747. $this->data['wlshop'] = $wlshop;
  4748. $this->data['express'] = $this->express->find_all();
  4749. $user = $this->user->get_api($_SESSION['api']);
  4750. $powerid = $this->power->read($user['power']);
  4751. $powertext = explode('|',trim($powerid['excelid'],'|'));
  4752. $pid = '';
  4753. foreach ($powertext as $v)
  4754. {
  4755. $pid .= " id = ".$v." or";
  4756. }
  4757. $fullorderexcel = $this->fullorderexcel->find_all("type = '100001' and (".rtrim($pid,'or').")",'*','idorder desc');//导出模板
  4758. $this->data['fullorderexcel'] = $fullorderexcel;
  4759. $this->_Template('fullorder_error',$this->data);
  4760. }
  4761. //验证地址
  4762. public function _yzaddress()
  4763. {
  4764. $post = $this->input->post(NULL, TRUE);
  4765. if(isset($post['address']))
  4766. {
  4767. $address = $this->input->post('address',true);
  4768. $address2 = $this->input->post('address2',true);
  4769. $city = $this->input->post('city',true);
  4770. $province = $this->input->post('province',true);
  4771. $zipcode = $this->input->post('zipcode',true);
  4772. $barcode = $this->usps->get_address(array('address'=>$address,'address2'=>$address2,'city'=>$city,'province'=>$province,'zipcode'=>$zipcode));
  4773. //$this->logic_ding->sendToDing("usps地址验证返回数据".$barcode);
  4774. echo $barcode;
  4775. }
  4776. }
  4777. //清除退货信息
  4778. public function _clearreturn()
  4779. {
  4780. $post = $this->input->post(NULL, TRUE);
  4781. if(isset($post['orderinfo']))
  4782. {
  4783. $orderinfo = $this->input->post('orderinfo',true);
  4784. $data = $this->fullorder->get_orderinfo($orderinfo);
  4785. $fu = 'fullorder';
  4786. if(!$data)
  4787. {
  4788. $data = $this->fullorder_smt->get_orderinfo($orderinfo);
  4789. $fu = 'fullorder_smt';
  4790. }
  4791. $this->$fu->save(array('library'=>'2','retreattime'=>'0','returndata'=>''),$data['id']);
  4792. echo json_encode(array('msg'=>'清除成功!','success'=>true));exit;
  4793. }
  4794. }
  4795. //订单退货
  4796. public function _return()
  4797. {
  4798. $post = $this->input->post(NULL, TRUE);
  4799. if(isset($post['orderinfo']))
  4800. {
  4801. $orderinfo = $this->input->post('orderinfo',true);
  4802. $data = $this->fullorder->get_orderinfo($orderinfo);
  4803. $fu = 'fullorder';
  4804. if(!$data)
  4805. {
  4806. $data = $this->fullorder_smt->get_orderinfo($orderinfo);
  4807. $fu = 'fullorder_smt';
  4808. }
  4809. $bctime = date('Ymd',time());
  4810. if($data['library'] != 2){
  4811. echo json_encode(array('msg'=>'此单不是出库状态,不允许退货','success'=>false));exit;
  4812. }
  4813. if($data['returndata'] != "")
  4814. {
  4815. echo json_encode(array('msg'=>'请求失败,已有Return Label信息!','success'=>false));exit;
  4816. }
  4817. $barcode = $this->usps->get_return($data);
  4818. // if(isset($barcode['errors']['ExternalReturnLabelError']['InternalErrorDescription']))
  4819. // {
  4820. // echo json_encode(array('msg'=>$barcode['errors']['ExternalReturnLabelError']['InternalErrorDescription'],'success'=>false));exit;
  4821. // }
  4822. // else if(isset($barcode['TrackingNumber']))
  4823. // {
  4824. // $pdf = $this->_pdf($barcode['ReturnLabel'],'t-'.$barcode['TrackingNumber'],$bctime);
  4825. // $read = 'PostalRouting:'.$barcode['PostalRouting'].' - TrackingNumber:<a href="/data/pdf/'.$bctime.'/'.'t-'.$barcode['TrackingNumber'].'.pdf" target="_blank">'.$barcode['TrackingNumber'].'</a>';
  4826. // $this->$fu->save(array('returndata'=>$read),$data['id']);
  4827. // echo json_encode(array('msg'=>'生成Return Label成功!','data'=>$read,'success'=>true));exit;
  4828. // }
  4829. // else
  4830. // {
  4831. // echo json_encode(array('msg'=>'请求失败,请稍后重试!','cs'=>$barcode,'success'=>false));exit;
  4832. // }
  4833. if(isset($barcode['errors']['ExternalReturnLabelError']['InternalErrorDescription']))
  4834. {
  4835. echo json_encode(array('msg'=>$barcode['errors']['ExternalReturnLabelError']['InternalErrorDescription'],'success'=>false));exit;
  4836. }
  4837. else if(isset($barcode['trackingNumber']))
  4838. {
  4839. $pdf = $this->_pdf($barcode['returnLabelImage'],'t-'.$barcode['trackingNumber'],$bctime);
  4840. $read = 'PostalRouting:'.$barcode['routingInformation'].' - TrackingNumber:<a href="/data/pdf/'.$bctime.'/'.'t-'.$barcode['trackingNumber'].'.pdf" target="_blank">'.$barcode['trackingNumber'].'</a>';
  4841. $this->$fu->save(array('returndata'=>$read),$data['id']);
  4842. echo json_encode(array('msg'=>'生成Return Label成功!','data'=>$read,'success'=>true));exit;
  4843. }
  4844. else
  4845. {
  4846. echo json_encode(array('msg'=>'请求失败,请稍后重试!'.json_encode($barcode),'cs'=>$barcode,'success'=>false));exit;
  4847. }
  4848. }
  4849. /**
  4850. $post = $this->input->post(NULL, TRUE);
  4851. if(isset($post['orderinfo']))
  4852. {
  4853. $orderinfo = $this->input->post('orderinfo',true);
  4854. $data = $this->fullorder->get_orderinfo($orderinfo);
  4855. $fu = 'fullorder';
  4856. if(!$data)
  4857. {
  4858. $data = $this->fullorder_smt->get_orderinfo($orderinfo);
  4859. $fu = 'fullorder_smt';
  4860. }
  4861. $bctime = date('Ymd',time());
  4862. if($data['returndata'] != "")
  4863. {
  4864. echo json_encode(array('msg'=>'请求失败,已有Return Label信息!','success'=>false));exit;
  4865. }
  4866. $barcode = $this->usps->get_return($data);
  4867. if(isset($barcode['error']['message']))
  4868. {
  4869. echo json_encode(array('msg'=>$barcode['error']['message'],'success'=>false));exit;
  4870. }
  4871. else if(isset($barcode['trackingNumber']))
  4872. {
  4873. $pdf = $this->_pdf($barcode['returnLabelImage'],'t-'.$barcode['trackingNumber'],$bctime);
  4874. $read = 'trackingNumber:<a href="/data/pdf/'.$bctime.'/'.'t-'.$barcode['trackingNumber'].'.pdf" target="_blank">'.$barcode['trackingNumber'].'</a>';
  4875. $this->$fu->save(array('returndata'=>$read),$data['id']);
  4876. echo json_encode(array('msg'=>'生成Return Label成功!','data'=>$read,'success'=>true));exit;
  4877. }
  4878. else
  4879. {
  4880. echo json_encode(array('msg'=>'请求失败,请稍后重试!','cs'=>$barcode,'success'=>false));exit;
  4881. }
  4882. }**/
  4883. }
  4884. public function _pdf($pdf,$title,$bctime)
  4885. {
  4886. $pdf_path = './data/pdf/'.$bctime.'/';
  4887. $file_base64 = $pdf;
  4888. $file_base64 = preg_replace('/data:.*;base64,/i', '', $file_base64);
  4889. $file_base64 = base64_decode($file_base64);
  4890. if(!is_dir($pdf_path))mkdir($pdf_path,0777); //上传目录不存在则创建
  4891. file_put_contents($pdf_path.$title.'.pdf',$file_base64);
  4892. return $bctime;
  4893. }
  4894. public function _find($find)
  4895. {
  4896. preg_match_all('/\d+/',$find,$n);
  4897. $a = '';
  4898. foreach($n[0] as $v)
  4899. {
  4900. $a .= $v;
  4901. }
  4902. return $a;
  4903. }
  4904. public function _dqpm()
  4905. {
  4906. if(isset($_SESSION['api']))
  4907. {
  4908. $user = $this->user->get_api($_SESSION['api']);
  4909. $usp = $user;
  4910. $fgshop = "";$sid = "";
  4911. $usersp = explode('|',trim($user['shop'],'|'));
  4912. foreach ($usersp as $value)
  4913. {
  4914. $fgshop .= " shop = ".$value." or";
  4915. $sid .= " id = ".$value." or";
  4916. }
  4917. }
  4918. $post = $this->input->post(NULL, TRUE);
  4919. if(isset($post['page']))
  4920. {
  4921. $timetk = $this->input->post('timetk',true);
  4922. $timetj = $this->input->post('timetj',true);
  4923. $timetk = strtotime($timetk);
  4924. $timetj = strtotime($timetj);
  4925. $where = "mergeid = 0 and (".rtrim($fgshop,'or').")";
  4926. if($timetk && $timetj)
  4927. {
  4928. $where .= " and dtime > '$timetk' and dtime < '$timetj'";
  4929. }
  4930. //数据排序
  4931. $order_str = "dtime desc";
  4932. if(empty($page))
  4933. {
  4934. $start = 0;
  4935. $perpage = 1;
  4936. }
  4937. else
  4938. {
  4939. $start = ($page - 1)*$perpage;
  4940. }
  4941. $continentdata = '';
  4942. $continent = array();//陆地板块
  4943. $num = $this->fullorder->find_count($where);//订单总数量
  4944. $country = $this->country->find_all('1=1','id,continent,ename,zname');
  4945. foreach ($country as $k=>$v)
  4946. {
  4947. $tc = $this->typeclass->read($v['continent']);
  4948. $continent[$v['continent']] = array(0=>$tc['title'],1=>0,2=>'');
  4949. }
  4950. foreach ($country as $k=>$v)
  4951. {
  4952. $n = $this->fullorder->find_count($where.' and country = "'.$v['id'].'"');
  4953. $country[$k]['continent'] = $continent[$v['continent']][0];//此国家数量
  4954. $country[$k]['zname'] = '<a href="/fullorder/dqpmprovince/'.$v['id'].'/'.$timetk.'/'.$timetj.'">'.$v['zname'].'</a>';//此国家数量
  4955. $country[$k]['num'] = $n;//此国家数量
  4956. $country[$k]['zb'] = (sprintf("%.4f",$n/$num)*100).'%';//此国家占比
  4957. $continent[$v['continent']]['1'] += $n;//此洲数量增加;
  4958. }
  4959. array_multisort(array_column($continent, '1'), SORT_DESC, $continent);
  4960. array_multisort(array_column($country, 'num'), SORT_DESC, $country);
  4961. foreach ($continent as $k=>$v)
  4962. {
  4963. $continentdata .= $v['0'].' 总量:'.$v['1'].' 占比:'.(sprintf("%.4f",$v['1']/$num)*100).'%&nbsp;&nbsp; - &nbsp;&nbsp;';
  4964. }
  4965. echo json_encode(array('ewnr'=>$continentdata,'rows'=>$country,'total'=>count($country),'over'=>0,'pagenum'=>1,'success'=>true));exit;
  4966. }
  4967. $this->_Template('fullorder_dqpm',$this->data);
  4968. }
  4969. public function _dqpmprovince($arg_array)
  4970. {
  4971. if(isset($_SESSION['api']))
  4972. {
  4973. $user = $this->user->get_api($_SESSION['api']);
  4974. $usp = $user;
  4975. $fgshop = "";$sid = "";
  4976. $usersp = explode('|',trim($user['shop'],'|'));
  4977. foreach ($usersp as $value)
  4978. {
  4979. $fgshop .= " shop = ".$value." or";
  4980. $sid .= " id = ".$value." or";
  4981. }
  4982. }
  4983. $post = $this->input->post(NULL, TRUE);
  4984. if(isset($post['page']))
  4985. {
  4986. $country = $this->input->post('country',true);
  4987. $timetk = $this->input->post('timetk',true);
  4988. $timetj = $this->input->post('timetj',true);
  4989. $where = "mergeid = 0 and dtime > '$timetk' and dtime < '$timetj' and country = '$country' and (".rtrim($fgshop,'or').")";
  4990. $province = array();
  4991. $city_list = $this->fullorder->find_all($where,'id,province');
  4992. $ToState = array('AL'=>'alabama','AK'=>'alaska','AZ'=>'arizona','AR'=>'arkansas','CA'=>'california','CO'=>'colorado','CT'=>'connecticut','DE'=>'delaware','FL'=>'florida','GA'=>'georgia','HI'=>'hawaii','ID'=>'idaho','IL'=>'illinois','IN'=>'indiana','IA'=>'iowa','KS'=>'kansas','KY'=>'kentucky','LA'=>'louisiana','ME'=>'maine','MD'=>'maryland','MA'=>'massachusetts','MI'=>'michigan','MN'=>'minnesota','MS'=>'mississippi','MO'=>'missouri','MT'=>'montana','NE'=>'nebraska','NV'=>'nevada','NH'=>'new hampshire','NJ'=>'new jersey','NM'=>'new mexico','NY'=>'new york','NC'=>'north carolina','ND'=>'north dakota','OH'=>'ohio','OK'=>'oklahoma','OR'=>'oregon','PA'=>'pennsylvania','RI'=>'rhode island','SC'=>'south carolina','SD'=>'south dakota','TN'=>'tennessee','TX'=>'texas','UT'=>'utah','VT'=>'vermont','VA'=>'virginia','WA'=>'washington','WV'=>'west virginia','WI'=>'wisconsin','WY'=>'wyoming','DC'=>'district of columbia','VI'=>'virgin islands');
  4993. foreach ($city_list as $k=>$v)
  4994. {
  4995. $v['province'] = strtoupper(trim($v['province'],' '));
  4996. if(isset($ToState[$v['province']]))
  4997. {
  4998. $v['province'] = $ToState[$v['province']];
  4999. }
  5000. if(!isset($province[$v['province']]))
  5001. {
  5002. $province[$v['province']] = array('id'=>$v['id'],'province'=>'<a href="/fullorder/ddpmdata/'.$country.'/'.$timetk.'/'.$timetj.'/'.strtoupper($v['province']).'">'.$v['province'].'</a>','num'=>0,'zb'=>'');
  5003. }
  5004. $province[$v['province']]['num'] += 1;
  5005. }
  5006. array_multisort(array_column($province, 'num'), SORT_DESC, $province);
  5007. $province = array_values($province);
  5008. foreach ($province as $k=>$v)
  5009. {
  5010. $province[$k]['zb'] = (sprintf("%.4f",$v['num']/count($city_list))*100).'%';
  5011. }
  5012. echo json_encode(array('rows'=>($province),'total'=>count($province),'over'=>0,'pagenum'=>1,'success'=>true));exit;
  5013. }
  5014. $this->data['arg_array'] = $arg_array;
  5015. $this->_Template('fullorder_dqpmprovince',$this->data);
  5016. }
  5017. public function _ddpmdata($arg_array)
  5018. {
  5019. $arg_array[3] = str_replace('%20',' ',$arg_array[3]);
  5020. if(isset($_SESSION['api']))
  5021. {
  5022. $user = $this->user->get_api($_SESSION['api']);
  5023. $usp = $user;
  5024. $fgshop = "";$sid = "";
  5025. $usersp = explode('|',trim($user['shop'],'|'));
  5026. foreach ($usersp as $value)
  5027. {
  5028. $fgshop .= " shop = ".$value." or";
  5029. $sid .= " id = ".$value." or";
  5030. }
  5031. }
  5032. $post = $this->input->post(NULL, TRUE);
  5033. if(isset($post['page']))
  5034. {
  5035. $page = $this->input->post('page',true);
  5036. $perpage = $this->input->post('perpage',true);
  5037. $province = $this->input->post('province',true);
  5038. $timetk = $this->input->post('timetk',true);;
  5039. $timetj = $this->input->post('timetj',true);;
  5040. $country = $this->input->post('country',true);;
  5041. $where = "mergeid = 0 and dtime > '$timetk' and dtime < '$timetj' and country = '$country' and (".rtrim($fgshop,'or').")";
  5042. if($province)
  5043. {
  5044. $where .= " and province = '$province'";
  5045. }
  5046. $order_str = "dtime desc";
  5047. if(empty($page))
  5048. {
  5049. $start = 0;
  5050. $perpage = 1;
  5051. }
  5052. else
  5053. {
  5054. $start = ($page - 1)*$perpage;
  5055. }
  5056. $info_list = $this->fullorder->find_all($where,'id,orderinfo,number,shipremarks,shouldmoney',$order_str,$start,$perpage);
  5057. $total = $this->fullorder->find_count($where);
  5058. $pagenum = ceil($total/$perpage);
  5059. $over = $total-($start+$perpage);
  5060. $rows = array('total'=>$total,'over'=>$over,'pagenum'=>$pagenum,'rows'=>($info_list));
  5061. echo json_encode($rows);exit;
  5062. }
  5063. $province = array();
  5064. $city_list = $this->fullorder->find_all("mergeid = 0 and dtime > '$arg_array[1]' and dtime < '$arg_array[2]' and country = '$arg_array[0]' and (".rtrim($fgshop,'or').")",'province');
  5065. $ToState = array('AL'=>'alabama','AK'=>'alaska','AZ'=>'arizona','AR'=>'arkansas','CA'=>'california','CO'=>'colorado','CT'=>'connecticut','DE'=>'delaware','FL'=>'florida','GA'=>'georgia','HI'=>'hawaii','ID'=>'idaho','IL'=>'illinois','IN'=>'indiana','IA'=>'iowa','KS'=>'kansas','KY'=>'kentucky','LA'=>'louisiana','ME'=>'maine','MD'=>'maryland','MA'=>'massachusetts','MI'=>'michigan','MN'=>'minnesota','MS'=>'mississippi','MO'=>'missouri','MT'=>'montana','NE'=>'nebraska','NV'=>'nevada','NH'=>'new hampshire','NJ'=>'new jersey','NM'=>'new mexico','NY'=>'new york','NC'=>'north carolina','ND'=>'north dakota','OH'=>'ohio','OK'=>'oklahoma','OR'=>'oregon','PA'=>'pennsylvania','RI'=>'rhode island','SC'=>'south carolina','SD'=>'south dakota','TN'=>'tennessee','TX'=>'texas','UT'=>'utah','VT'=>'vermont','VA'=>'virginia','WA'=>'washington','WV'=>'west virginia','WI'=>'wisconsin','WY'=>'wyoming','DC'=>'district of columbia','VI'=>'virgin islands');
  5066. foreach ($city_list as $k=>$v)
  5067. {
  5068. $v['province'] = strtoupper(trim($v['province'],' '));
  5069. if(isset($ToState[$v['province']]))
  5070. {
  5071. $v['province'] = $ToState[$v['province']];
  5072. }
  5073. $province[$v['province']] = array('province'=>$v['province']);
  5074. }
  5075. $this->data['province'] = $province;
  5076. $this->data['arg_array'] = $arg_array;
  5077. $this->_Template('fullorder_ddpmdata',$this->data);
  5078. }
  5079. public function _ddpmexcel($arg_array)
  5080. {
  5081. if(isset($_SESSION['api']))
  5082. {
  5083. $user = $this->user->get_api($_SESSION['api']);
  5084. $usp = $user;
  5085. $fgshop = "";$sid = "";
  5086. $usersp = explode('|',trim($user['shop'],'|'));
  5087. foreach ($usersp as $value)
  5088. {
  5089. $fgshop .= " shop = ".$value." or";
  5090. $sid .= " id = ".$value." or";
  5091. }
  5092. }
  5093. $province = $this->input->get('province',true);
  5094. $timetk = $arg_array[1];
  5095. $timetj = $arg_array[2];
  5096. $country = $arg_array[0];
  5097. $where = "mergeid = 0 and dtime > '$timetk' and dtime < '$timetj' and country = '$country' and (".rtrim($fgshop,'or').")";
  5098. if($province)
  5099. {
  5100. $where .= " and province = '$province'";
  5101. }
  5102. $order_str = "dtime desc";
  5103. $info_list = $this->fullorder->find_all($where,'orderinfo,number,shipremarks,shouldmoney',$order_str);
  5104. $country = $this->country->read($arg_array[0]);
  5105. $title = $country['zname'].date('Y-m-d',$timetk).'-'.date('Y-m-d',$timetj);
  5106. $titlename = "<table border=1>
  5107. <tr><th colspan='4' align='left'><h3>".$title."<h3></th></tr>
  5108. <tr>
  5109. <td>订单号</td>
  5110. <td>订单编号</td>
  5111. <td>仓库品名</td>
  5112. <td>订单金额</td>
  5113. </tr>
  5114. </table>";
  5115. $filename = $title.".xls";
  5116. $tail = "\n";
  5117. $this->excel->get_fz2($info_list,$titlename,$filename,$tail);
  5118. }
  5119. public function _statedc()
  5120. {
  5121. $user = $this->user->get_api($_SESSION['api']);
  5122. if($user)
  5123. {
  5124. $fgshop = "";$sid = "";
  5125. $user = explode('|',trim($user['shop'],'|'));
  5126. foreach ($user as $value)
  5127. {
  5128. $fgshop .= " shop = ".$value." or";
  5129. $sid .= " id = ".$value." or";
  5130. }
  5131. }
  5132. $post = $this->input->get(NULL, TRUE);
  5133. if(isset($post['timetk']))
  5134. {
  5135. $page = $this->input->get('page',true);
  5136. $perpage = $this->input->get('perpage',true);
  5137. $timetk = $this->input->get('timetk',true);
  5138. $timetj = $this->input->get('timetj',true);
  5139. $shop = $this->input->get('shop',true);
  5140. $source = $this->input->get('source',true);
  5141. $state = $this->input->get('state',true);
  5142. $review = $this->input->get('review',true);
  5143. $express = $this->input->get('express',true);
  5144. $fs = $this->input->get('fs',true);
  5145. $orderinfo = $this->input->get('orderinfo',true);
  5146. $number = $this->input->get('number',true);
  5147. $user = $this->input->get('user',true);
  5148. $name = $this->input->get('name',true);
  5149. $waybill = $this->input->get('waybill',true);
  5150. $expressstate = $this->input->get('expressstate',true);
  5151. $wltype = $this->input->get('wltype',true);
  5152. $wlyc = $this->input->get('wlyc',true);
  5153. $xztime = $this->input->get('xztime',true);
  5154. $timetk = strtotime($timetk);
  5155. $timetj = strtotime($timetj);
  5156. $where = "1=1 and mergeid = 0 and (".rtrim($fgshop,'or').")";
  5157. if($timetk && $timetj)
  5158. {
  5159. $where .= " and ".$xztime." > '$timetk' and ".$xztime." < '$timetj'";
  5160. }
  5161. if($xztime == 'librarytime')
  5162. {
  5163. $order_str = "librarytime desc";
  5164. }
  5165. else if($xztime == 'dtime')
  5166. {
  5167. $order_str = "dtime desc";
  5168. }
  5169. if($shop)
  5170. {
  5171. $where .= " and shop = '$shop'";
  5172. }
  5173. if($source)
  5174. {
  5175. if($source == 11)
  5176. {
  5177. $where .= " and source != '1'";
  5178. }
  5179. else
  5180. {
  5181. $where .= " and source = '$source'";
  5182. }
  5183. }
  5184. if($fs)
  5185. {
  5186. if($fs == '2')
  5187. {
  5188. $where .= " and exstateerror != ''";
  5189. }
  5190. else
  5191. {
  5192. $where .= " and exstateerror = ''";
  5193. }
  5194. }
  5195. if($state)
  5196. {
  5197. $where .= " and state = '$state'";
  5198. }
  5199. if($review)
  5200. {
  5201. $where .= " and review = '$review'";
  5202. }
  5203. if($expressstate != "")
  5204. {
  5205. $where .= " and expressstate = '$expressstate'";
  5206. }
  5207. if($wltype != "")
  5208. {
  5209. $where .= " and wltype = '$wltype'";
  5210. }
  5211. if($wlyc != "")
  5212. {
  5213. $where .= " and wlyc = '$wlyc'";
  5214. }
  5215. if($express)
  5216. {
  5217. $where .= " and express = '$express'";
  5218. }
  5219. if($orderinfo)
  5220. {
  5221. $where .= " and orderinfo = '$orderinfo'";
  5222. }
  5223. if($number)
  5224. {
  5225. $where .= " and number = '$number'";
  5226. }
  5227. if($user)
  5228. {
  5229. $where .= " and user = '$user'";
  5230. }
  5231. if($name)
  5232. {
  5233. $where .= " and name = '$name'";
  5234. }
  5235. if($waybill)
  5236. {
  5237. $where .= " and waybill = '$waybill'";
  5238. }
  5239. if(empty($page))
  5240. {
  5241. $start = 0;
  5242. $perpage = 1;
  5243. }
  5244. else
  5245. {
  5246. $start = ($page - 1)*$perpage;
  5247. }
  5248. //取得信息列表
  5249. $info_list = $this->fullorder->find_all($where,'shop,number,country,library,librarytime,expressstate,express,waybill,content,exstateerror,excontent',$order_str);
  5250. //格式化数据
  5251. foreach ($info_list as $key=>$value)
  5252. {
  5253. $shop = $this->shop->read($value['shop']);
  5254. $info_list[$key]['shop'] = $shop['shopname'];
  5255. $country = $this->country->read($value['country']);
  5256. $info_list[$key]['country'] = $country['name'];
  5257. //$state = $this->typeclass->read($value['state']);
  5258. //$info_list[$key]['state'] = $state['title'];
  5259. if($value['library'] == 1)
  5260. {
  5261. $info_list[$key]['library'] = "未出库";
  5262. }
  5263. else if($value['library'] == 2)
  5264. {
  5265. $info_list[$key]['library'] = "已出库";
  5266. }
  5267. else if($value['library'] == 3)
  5268. {
  5269. $info_list[$key]['library'] = "已退库";
  5270. }
  5271. if($value['librarytime'] == '0')
  5272. {
  5273. $info_list[$key]['librarytime'] = '无';
  5274. }
  5275. else
  5276. {
  5277. $info_list[$key]['librarytime'] = date('Y-m-d H:i:s',$value['librarytime']);
  5278. }
  5279. if($value['expressstate'] == 0)
  5280. {
  5281. $info_list[$key]['expressstate'] = "无信息";
  5282. }
  5283. else if($value['expressstate'] == 2)
  5284. {
  5285. $info_list[$key]['expressstate'] = "已取件";
  5286. }
  5287. else if($value['expressstate'] == 3)
  5288. {
  5289. $info_list[$key]['expressstate'] = "在途中";
  5290. }
  5291. /**
  5292. else if($value['expressstate'] == 4)
  5293. {
  5294. $info_list[$key]['expressstate'] = "到达目的地国";
  5295. }
  5296. **/
  5297. else if($value['expressstate'] == 4 || $value['expressstate'] == 5)
  5298. {
  5299. $info_list[$key]['expressstate'] = "即将派送";
  5300. }
  5301. else if($value['expressstate'] == 6)
  5302. {
  5303. $info_list[$key]['expressstate'] = "已签收";
  5304. }
  5305. else if($value['expressstate'] == 1)
  5306. {
  5307. $info_list[$key]['expressstate'] = "派送异常";
  5308. }
  5309. $express = $this->express->read($value['express']);
  5310. $info_list[$key]['express'] = $express['servicename'];
  5311. }
  5312. }
  5313. $title = date('Y-m-d',$timetk).'-'.date('Y-m-d',$timetj);
  5314. $titlename = "<table border=1>
  5315. <tr>
  5316. <td>店铺名称</td>
  5317. <td>编号</td>
  5318. <td>收件人国家</td>
  5319. <td>出库状态</td>
  5320. <td>发货时间</td>
  5321. <td>物流状态</td>
  5322. <td>快递公司</td>
  5323. <td>运单号</td>
  5324. <td>消息状态</td>
  5325. <td>错误提示</td>
  5326. <td>物流信息</td>
  5327. </tr>
  5328. </table>";
  5329. $filename = $title.".xls";
  5330. $tail = "\n";
  5331. $this->excel->get_fz2($info_list,$titlename,$filename,$tail);
  5332. }
  5333. public function _statedcwl()
  5334. {
  5335. $user = $this->user->get_api($_SESSION['api']);
  5336. if($user)
  5337. {
  5338. $fgshop = "";$sid = "";
  5339. $user = explode('|',trim($user['shop'],'|'));
  5340. foreach ($user as $value)
  5341. {
  5342. $fgshop .= " shop = ".$value." or";
  5343. $sid .= " id = ".$value." or";
  5344. }
  5345. }
  5346. $post = $this->input->get(NULL, TRUE);
  5347. if(isset($post['timetk']))
  5348. {
  5349. $dowid = $this->input->get('a');
  5350. $wid = "";
  5351. if($dowid != "")
  5352. {
  5353. $id_arr = explode(',',rtrim($dowid,','));
  5354. $wid .= " id = 0 or";
  5355. foreach ($id_arr as $v)
  5356. {
  5357. $wid .= " id = '$v' or";
  5358. }
  5359. $wid = " and".rtrim($wid,'or');
  5360. }
  5361. $page = $this->input->get('page',true);
  5362. $perpage = $this->input->get('perpage',true);
  5363. $timetk = $this->input->get('timetk',true);
  5364. $timetj = $this->input->get('timetj',true);
  5365. $shop = $this->input->get('shop',true);
  5366. $expressstate = $this->input->get('expressstate',true);
  5367. $fs = $this->input->get('fs',true);
  5368. $state = $this->input->get('state',true);
  5369. $express = $this->input->get('express',true);
  5370. $orderinfo = $this->input->get('orderinfo',true);
  5371. $number = $this->input->get('number',true);
  5372. $waybill = $this->input->get('waybill',true);
  5373. $wlyc = $this->input->get('wlyc',true);
  5374. $wltype = $this->input->get('wltype',true);
  5375. $source = $this->input->get('source',true);
  5376. $xztime = $this->input->get('xztime',true);
  5377. $timetk = strtotime($timetk);
  5378. $timetj = strtotime($timetj);
  5379. $where = "1=1 and mergeid = 0 and (".rtrim($fgshop,'or').")";
  5380. if($timetk && $timetj)
  5381. {
  5382. $where .= " and ".$xztime." > '$timetk' and ".$xztime." < '$timetj'";
  5383. }
  5384. if($xztime == 'librarytime')
  5385. {
  5386. $order_str = "librarytime desc";
  5387. }
  5388. else if($xztime == 'dtime')
  5389. {
  5390. $order_str = "dtime desc";
  5391. }else if($xztime == 'wlfstime'){
  5392. $order_str = "wlfstime desc";
  5393. }
  5394. if($shop)
  5395. {
  5396. $where .= " and shop = '$shop'";
  5397. }
  5398. if($expressstate)
  5399. {
  5400. $where .= " and expressstate = '$expressstate'";
  5401. }
  5402. if($fs)
  5403. {
  5404. if($fs == '1')
  5405. {
  5406. $where .= " and wlcontent != ''";
  5407. }
  5408. if($fs == '2')
  5409. {
  5410. $where .= " and wlerror != ''";
  5411. }
  5412. if($fs == '3')
  5413. {
  5414. $where .= " and wlcontent = '' and shouldmoney > 100";
  5415. }
  5416. else if($fs == '4')
  5417. {
  5418. $where .= " and wltype = '1'";
  5419. }
  5420. }
  5421. if($state)
  5422. {
  5423. $where .= " and state = '$state'";
  5424. }
  5425. if($express)
  5426. {
  5427. $where .= " and express = '$express'";
  5428. }
  5429. if($orderinfo)
  5430. {
  5431. $where .= " and orderinfo = '$orderinfo'";
  5432. }
  5433. if($number)
  5434. {
  5435. $where .= " and number = '$number'";
  5436. }
  5437. if($waybill)
  5438. {
  5439. $where .= " and waybill = '$waybill'";
  5440. }
  5441. if($wlyc!='')
  5442. {
  5443. $where .= " and wlyc = '$wlyc'";
  5444. }
  5445. if($wltype!='')
  5446. {
  5447. $where .= " and wltype = '$wltype'";
  5448. }
  5449. if($source)
  5450. {
  5451. if($source == 1)
  5452. {
  5453. $where .= " and source = '$source'";
  5454. }
  5455. else
  5456. {
  5457. $where .= " and source != '1'";
  5458. }
  5459. }
  5460. $info_list = $this->fullorder->find_all($where.$wid,'orderinfo,number,country,library,librarytime,expressstate,express,waybill,wlbz,orderremarks,shipremarks,wlfstime,email,phone,wlcontent,wlerror,excontent',$order_str);
  5461. //格式化数据
  5462. foreach ($info_list as $key=>$value)
  5463. {
  5464. $country = $this->country->read($value['country']);
  5465. $info_list[$key]['country'] = $country['name'];
  5466. //$state = $this->typeclass->read($value['state']);
  5467. //$info_list[$key]['state'] = $state['title'];
  5468. if($value['library'] == 1)
  5469. {
  5470. $info_list[$key]['library'] = "未出库";
  5471. }
  5472. else if($value['library'] == 2)
  5473. {
  5474. $info_list[$key]['library'] = "已出库";
  5475. }
  5476. else if($value['library'] == 3)
  5477. {
  5478. $info_list[$key]['library'] = "已退库";
  5479. }
  5480. if($value['librarytime'] == '0')
  5481. {
  5482. $info_list[$key]['librarytime'] = '无';
  5483. }
  5484. else
  5485. {
  5486. $info_list[$key]['librarytime'] = date('Y-m-d H:i:s',$value['librarytime']);
  5487. }
  5488. if($value['expressstate'] == 0)
  5489. {
  5490. $info_list[$key]['expressstate'] = "无信息";
  5491. }
  5492. else if($value['expressstate'] == 2)
  5493. {
  5494. $info_list[$key]['expressstate'] = "已取件";
  5495. }
  5496. else if($value['expressstate'] == 3)
  5497. {
  5498. $info_list[$key]['expressstate'] = "在途中";
  5499. }
  5500. /**
  5501. else if($value['expressstate'] == 4)
  5502. {
  5503. $info_list[$key]['expressstate'] = "到达目的地国";
  5504. }
  5505. **/
  5506. else if($value['expressstate'] == 4 || $value['expressstate'] == 5)
  5507. {
  5508. $info_list[$key]['expressstate'] = "即将派送";
  5509. }
  5510. else if($value['expressstate'] == 6)
  5511. {
  5512. $info_list[$key]['expressstate'] = "已签收";
  5513. }
  5514. else if($value['expressstate'] == 1)
  5515. {
  5516. $info_list[$key]['expressstate'] = "派送异常";
  5517. }
  5518. $info_list[$key]['wlfstime'] = date('Y-m-d H:i:s',$value['wlfstime']);
  5519. $express = $this->express->read($value['express']);
  5520. $info_list[$key]['express'] = $express['servicename'];
  5521. $info_list[$key]['excontent'] = str_replace('<br />','',$value['excontent']);
  5522. }
  5523. }
  5524. $title = date('Y-m-d',$timetk).'-'.date('Y-m-d',$timetj);
  5525. $titlename = "<table border=1>
  5526. <tr>
  5527. <td>订单号</td>
  5528. <td>编号</td>
  5529. <td>收件人国家</td>
  5530. <td>出库状态</td>
  5531. <td>出库时间</td>
  5532. <td>物流状态</td>
  5533. <td>快递公司</td>
  5534. <td>运单号</td>
  5535. <td>物流备注</td>
  5536. <td>订单备注</td>
  5537. <td>仓库品名</td>
  5538. <td>发送时间</td>
  5539. <td>邮箱</td>
  5540. <td>电话</td>
  5541. <td>邮件发送</td>
  5542. <td>错误提示</td>
  5543. <td>物流信息</td>
  5544. </tr>
  5545. </table>";
  5546. $filename = $title.".xls";
  5547. $tail = "\n";
  5548. $this->excel->get_fz2($info_list,$titlename,$filename,$tail);
  5549. }
  5550. public function _waybillemail()
  5551. {
  5552. $user = $this->user->get_api($_SESSION['api']);
  5553. if($user)
  5554. {
  5555. $fgshop = "";$sid = "";
  5556. $user = explode('|',trim($user['shop'],'|'));
  5557. foreach ($user as $value)
  5558. {
  5559. $fgshop .= " shop = ".$value." or";
  5560. $sid .= " id = ".$value." or";
  5561. }
  5562. }
  5563. $post = $this->input->post(NULL, TRUE);
  5564. if(isset($post['page']))
  5565. {
  5566. $page = $this->input->post('page',true);
  5567. $perpage = $this->input->post('perpage',true);
  5568. $timetk = $this->input->post('timetk',true);
  5569. $timetj = $this->input->post('timetj',true);
  5570. $shop = $this->input->post('shop',true);
  5571. $source = $this->input->post('source',true);
  5572. $expressstate = $this->input->post('expressstate',true);
  5573. $fs = $this->input->post('fs',true);
  5574. $state = $this->input->post('state',true);
  5575. $express = $this->input->post('express',true);
  5576. $orderinfo = $this->input->post('orderinfo',true);
  5577. $number = $this->input->post('number',true);
  5578. $waybill = $this->input->post('waybill',true);
  5579. $dlzemail = $this->input->post('dlzemail',true);
  5580. $xztime = $this->input->post('xztime',true);
  5581. $timetk = strtotime($timetk);
  5582. $timetj = strtotime($timetj);
  5583. $where = "1=1 and mergeid = 0 and (".rtrim($fgshop,'or').")";
  5584. if($timetk && $timetj)
  5585. {
  5586. $where .= " and ".$xztime." > '$timetk' and ".$xztime." < '$timetj'";
  5587. }
  5588. $order_str = $xztime." desc";
  5589. if($source)
  5590. {
  5591. if($source == '2d')
  5592. {
  5593. $where .= " and source >= '2' and shop != 19";
  5594. }
  5595. else
  5596. {
  5597. $where .= " and source = '$source'";
  5598. }
  5599. }
  5600. if($shop)
  5601. {
  5602. $where .= " and shop = '$shop'";
  5603. }
  5604. if($expressstate)
  5605. {
  5606. $where .= " and expressstate = '$expressstate'";
  5607. }
  5608. if($state)
  5609. {
  5610. $where .= " and state = '$state'";
  5611. }
  5612. if($express)
  5613. {
  5614. $where .= " and express = '$express'";
  5615. }
  5616. if($orderinfo)
  5617. {
  5618. $where .= " and orderinfo = '$orderinfo'";
  5619. }
  5620. if($number)
  5621. {
  5622. $where .= " and number = '$number'";
  5623. }
  5624. if($waybill)
  5625. {
  5626. $where .= " and waybill = '$waybill'";
  5627. }
  5628. if($dlzemail != '')
  5629. {
  5630. $where .= " and dlzemail = '$dlzemail'";
  5631. }
  5632. if(empty($page))
  5633. {
  5634. $start = 0;
  5635. $perpage = 1;
  5636. }
  5637. else
  5638. {
  5639. $start = ($page - 1)*$perpage;
  5640. }
  5641. //取得信息列表
  5642. $info_list = $this->fullorder->find_all($where,'id,shop,orderinfo,number,country,library,librarytime,express,waybill,dlzemail,dlzemailtime',$order_str,$start,$perpage);
  5643. //格式化数据
  5644. foreach ($info_list as $key=>$value)
  5645. {
  5646. $shop = $this->shop->read($value['shop']);
  5647. $info_list[$key]['shop'] = $shop['shopname'];
  5648. $country = $this->country->read($value['country']);
  5649. $info_list[$key]['country'] = $country['name'];
  5650. //$state = $this->typeclass->read($value['state']);
  5651. //$info_list[$key]['state'] = $state['title'];
  5652. if($value['library'] == 1)
  5653. {
  5654. $info_list[$key]['library'] = "未出库";
  5655. }
  5656. else if($value['library'] == 2)
  5657. {
  5658. $info_list[$key]['library'] = "已出库";
  5659. }
  5660. else if($value['library'] == 3)
  5661. {
  5662. $info_list[$key]['library'] = "已退库";
  5663. }
  5664. if($value['librarytime'] == '0')
  5665. {
  5666. $info_list[$key]['librarytime'] = '无';
  5667. }
  5668. else
  5669. {
  5670. $info_list[$key]['librarytime'] = date('Y-m-d',$value['librarytime']).'<br>'.date('H:i:s',$value['librarytime']);
  5671. }
  5672. $express = $this->express->read($value['express']);
  5673. $info_list[$key]['express'] = $express['servicename'];
  5674. if($value['dlzemail'] == '1')
  5675. {
  5676. $info_list[$key]['dlzemail'] = '发送成功';
  5677. }
  5678. else if ($value['dlzemail'] == '2')
  5679. {
  5680. $info_list[$key]['dlzemail'] = '发送失败';
  5681. }
  5682. else
  5683. {
  5684. $info_list[$key]['dlzemail'] = '';
  5685. }
  5686. $info_list[$key]['dlzemailtime'] = ($value['dlzemailtime']>0)?date('Y-m-d H:i:s',$value['dlzemailtime']):'';
  5687. }
  5688. $total = $this->fullorder->find_count($where);
  5689. $pagenum = ceil($total/$perpage);
  5690. $over = $total-($start+$perpage);
  5691. $rows = array('total'=>$total,'over'=>$over,'pagenum'=>$pagenum,'rows'=>($info_list));
  5692. echo json_encode($rows);exit;
  5693. }
  5694. $notice = $this->notice->find_all("type = '2' and (".rtrim($fgshop,'or').")");
  5695. $this->data['notice'] = $notice;
  5696. $wlshop = $this->shop->find_all('1=1 and '.rtrim($sid,'or'));
  5697. $this->data['wlshop'] = $wlshop;
  5698. $this->data['express'] = $this->express->find_all();
  5699. $this->_Template('fullorder_waybillemail',$this->data);
  5700. }
  5701. public function _khdd()
  5702. {
  5703. $dt = 0;$fgshop = "shop = 0";$sid = 'id = 0';
  5704. if(isset($_SESSION['api']))
  5705. {
  5706. $user = $this->user->get_api($_SESSION['api']);
  5707. $usp = $user;
  5708. $fgshop = "";$sid = "";
  5709. $usersp = explode('|',trim($user['shop'],'|'));
  5710. foreach ($usersp as $value)
  5711. {
  5712. $fgshop .= " shop = ".$value." or";
  5713. $sid .= " id = ".$value." or";
  5714. }
  5715. if($user['vip'] == 1)
  5716. {
  5717. $vip = 1;
  5718. }
  5719. else
  5720. {
  5721. $vip = 0;
  5722. }
  5723. }
  5724. $post = $this->input->post(NULL, TRUE);
  5725. if(isset($_GET['excel']))
  5726. {
  5727. $page = $this->input->get('page',true);
  5728. $perpage = $this->input->get('perpage',true);
  5729. $warehouse = $this->input->get('warehouse',true);
  5730. $timetk = $this->input->get('timetk',true);
  5731. $timetj = $this->input->get('timetj',true);
  5732. $shop = $this->input->get('shop',true);
  5733. $source = $this->input->get('source',true);
  5734. $state = $this->input->get('state',true);
  5735. $review = $this->input->get('review',true);
  5736. $type = $this->input->get('type',true);
  5737. $express = $this->input->get('express',true);
  5738. $orderinfo = $this->input->get('orderinfo',true);
  5739. $user = $this->input->get('user',true);
  5740. $client = $this->input->get('name',true);
  5741. $waybill = $this->input->get('waybill',true);
  5742. $number = $this->input->get('number',true);
  5743. $email = $this->input->get('email',true);
  5744. $phone = $this->input->get('phone',true);
  5745. $dlz = $this->input->get('dlz',true);
  5746. $print = $this->input->get('print',true);
  5747. $library = $this->input->get('library',true);
  5748. $js = $this->input->get('js',true);
  5749. $exstate = $this->input->get('exstate',true);
  5750. $xztime = $this->input->get('xztime',true);
  5751. $libraryconfirm = $this->input->get('libraryconfirm',true);
  5752. $timetk = strtotime($timetk);
  5753. $timetj = strtotime($timetj);
  5754. $plorder = $this->input->get('pl',true);
  5755. $paypal = $this->input->get('paypal',true);
  5756. $zf = $this->input->get('zf',true);
  5757. $pay = $this->input->get('pay',true);
  5758. $excel = $this->input->get('excel',true);
  5759. $where = "1=1 and mergeid = 0 and (".rtrim($fgshop,'or').")";
  5760. if($warehouse)
  5761. {
  5762. $where .= " and type = '$warehouse'";
  5763. }
  5764. if($timetk && $timetj)
  5765. {
  5766. $where .= " and ".$xztime." > '$timetk' and ".$xztime." < '$timetj'";
  5767. }
  5768. if($shop)
  5769. {
  5770. $where .= " and shop = '$shop'";
  5771. }
  5772. if($source)
  5773. {
  5774. if($source == '2d')
  5775. {
  5776. $where .= " and source >= '2'";
  5777. }
  5778. else
  5779. {
  5780. $where .= " and source = '$source'";
  5781. }
  5782. }
  5783. if($state)
  5784. {
  5785. $where .= " and state = '$state'";
  5786. }
  5787. if($review)
  5788. {
  5789. $where .= " and review = '$review'";
  5790. }
  5791. if($type)
  5792. {
  5793. $where .= " and type = '$type'";
  5794. }
  5795. if($express)
  5796. {
  5797. $where .= " and express = '$express'";
  5798. }
  5799. if($orderinfo)
  5800. {
  5801. $where .= " and orderinfo = '$orderinfo'";
  5802. }
  5803. if($user)
  5804. {
  5805. $where .= " and user = '$user'";
  5806. }
  5807. if($client)
  5808. {
  5809. $where .= " and client like '%$client%'";
  5810. }
  5811. if($waybill)
  5812. {
  5813. $where .= " and waybill = '$waybill'";
  5814. }
  5815. if($number)
  5816. {
  5817. $where .= " and number = '$number'";
  5818. }
  5819. if($email)
  5820. {
  5821. $where .= " and email = '$email'";
  5822. }
  5823. if($phone)
  5824. {
  5825. $where .= " and phone like '%$phone%'";
  5826. }
  5827. if($library)
  5828. {
  5829. $where .= " and library = '$library'";
  5830. }
  5831. if($print)
  5832. {
  5833. $where .= " and print = '$print'";
  5834. }
  5835. if($dlz != '')
  5836. {
  5837. $where .= " and dlz = '$dlz'";
  5838. }
  5839. if($js)
  5840. {
  5841. $where .= " and js = '$js'";
  5842. }
  5843. if($exstate)
  5844. {
  5845. $where .= " and exstate = '$exstate'";
  5846. }
  5847. if($libraryconfirm)
  5848. {
  5849. $where .= " and libraryconfirm = '$libraryconfirm'";
  5850. }
  5851. if($paypal)
  5852. {
  5853. $where .= " and paypal = '$paypal'";
  5854. }
  5855. if($pay)
  5856. {
  5857. $where .= " and pay = '$pay'";
  5858. }
  5859. if($zf)
  5860. {
  5861. if($zf == 1)
  5862. {
  5863. $where .= " and paypal not like '%-%-%-%'";
  5864. }
  5865. else
  5866. {
  5867. $where .= " and paypal like '%-%-%-%'";
  5868. }
  5869. }
  5870. if($plorder)
  5871. {
  5872. $plorderinfo = '';$plnumber = '';$pln = 0;
  5873. $plorder = explode(',',trim($plorder,','));
  5874. foreach ($plorder as $value)
  5875. {
  5876. if(is_numeric($value))
  5877. {
  5878. $plorderinfo .= " orderinfo = ".$value." or";
  5879. }
  5880. else if($value != '')
  5881. {
  5882. $plorderinfo .= " number = '".$value."' or";
  5883. }
  5884. }
  5885. if($pln > 0)
  5886. {
  5887. $where .= " and (".rtrim($plorderinfo,'or').") and (".rtrim($plnumber,'or').")";
  5888. }
  5889. else
  5890. {
  5891. $where .= " and (".rtrim($plorderinfo,'or').")";
  5892. }
  5893. }
  5894. //数据排序
  5895. $order_str = "dtime desc";
  5896. if(empty($page))
  5897. {
  5898. $start = 0;
  5899. $perpage = 1;
  5900. }
  5901. else
  5902. {
  5903. $start = ($page - 1)*$perpage;
  5904. }
  5905. if($excel == '1')
  5906. {
  5907. $shop = array();
  5908. $shopdata = $this->shop->find_all("type = '269'");
  5909. foreach ($shopdata as $v)
  5910. {
  5911. $shop[$v['id']] = array('t'=>$v['brandname'],'z'=>0,'l'=>0,'x'=>0);//店铺名称,总客户,老客户,新客户
  5912. }
  5913. $oldnumber = 0;$newnumber = 0;
  5914. $info_list = $this->db->query('select distinct shop,email from crowd_fullorder where '.$where)->result_array();
  5915. foreach ($info_list as $key=>$v)
  5916. {
  5917. $shop[$v['shop']]['z'] += 1;
  5918. $num = $this->fullorder->find_count("email = '".$v['email']."' and shop = '".$v['shop']."' and ".$xztime." < '$timetj'");
  5919. if($num > 1)
  5920. {
  5921. $shop[$v['shop']]['l'] += 1;
  5922. }
  5923. else
  5924. {
  5925. $shop[$v['shop']]['x'] += 1;
  5926. }
  5927. if(isset($v['email']) && $usp['excelpass'] == '1')
  5928. {
  5929. $emailpass = $this->setting->get_excelpass($v['email']);
  5930. $info_list[$key]['email'] = $emailpass;
  5931. }
  5932. }
  5933. $title = date('Y-m-d',$timetk).'-'.date('Y-m-d',$timetj);
  5934. $titlename = "<table border=1>
  5935. <tr>
  5936. <td>店铺</td>
  5937. <td>客户数</td>
  5938. <td>老客户数</td>
  5939. <td>新客户数</td>
  5940. </tr>
  5941. </table>";
  5942. $filename = $title.".xls";
  5943. $tail = "\n";
  5944. $this->excel->get_fz2($shop,$titlename,$filename,$tail);
  5945. }
  5946. else if($excel == '2' || $excel == '3')
  5947. {
  5948. $kh = array();
  5949. $info_list = $this->db->query('select distinct shop,email from crowd_fullorder where email != "" and '.$where)->result_array();
  5950. foreach ($info_list as $key=>$v)
  5951. {
  5952. $k = $this->fullorder->find_all("shop = '".$v['shop']."' and email = '".$v['email']."' and ".$xztime." < '$timetj'",'name,email,dtime,shouldmoney','dtime desc');
  5953. if($excel == 2 && count($k) > 1)
  5954. {
  5955. $kh[] = array($k[0]['name'],$k[0]['email'],date("Y-m-d H:i:s",$k[0]['dtime']),count($k),array_sum(array_column($k,'shouldmoney')));
  5956. }
  5957. if($excel == 3 && count($k) < 2)
  5958. {
  5959. $kh[] = array($k[0]['name'],$k[0]['email'],date("Y-m-d H:i:s",$k[0]['dtime']),count($k),array_sum(array_column($k,'shouldmoney')));
  5960. }
  5961. if(isset($v['email']) && $usp['excelpass'] == '1')
  5962. {
  5963. $emailpass = $this->setting->get_excelpass($v['email']);
  5964. $info_list[$key]['email'] = $emailpass;
  5965. }
  5966. }
  5967. $title = $country['zname'].date('Y-m-d',$timetk).'-'.date('Y-m-d',$timetj);
  5968. $titlename = "<table border=1>
  5969. <tr>
  5970. <td>名称</td>
  5971. <td>邮箱</td>
  5972. <td>最后购买时间</td>
  5973. <td>购买次数</td>
  5974. <td>购买总额</td>
  5975. </tr>
  5976. </table>";
  5977. $filename = $title.".xls";
  5978. $tail = "\n";
  5979. $this->excel->get_fz2($kh,$titlename,$filename,$tail);
  5980. }
  5981. else if($excel == '4' || $excel == '5')
  5982. {
  5983. $kh = array();
  5984. $info_list = $this->db->query('select distinct shop,email from crowd_fullorder where email != "" and '.$where)->result_array();
  5985. foreach ($info_list as $key=>$value)
  5986. {
  5987. $k = $this->fullorder->find_all("shop = '".$value['shop']."' and email = '".$value['email']."' and ".$xztime." < '$timetj'",'orderinfo,state,product,name,email,dtime,shouldmoney','dtime desc');
  5988. if($excel == 4 && count($k) > 1)
  5989. {
  5990. foreach ($k as $v)
  5991. {
  5992. $typeclass = $this->typeclass->read($v['state']);
  5993. $kh[] = array($v['orderinfo'],$typeclass['spare'],$v['product'],$v['name'],$v['email'],date("Y-m-d H:i:s",$v['dtime']),$v['shouldmoney']);
  5994. }
  5995. }
  5996. if($excel == 5 && count($k) < 2)
  5997. {
  5998. if(!isset($k[0]['state']))
  5999. {
  6000. $typeclass = $k[0]['state'].'-数据字典无此信息';
  6001. }
  6002. else
  6003. {
  6004. $typeclass = $this->typeclass->read($k[0]['state']);
  6005. }
  6006. $kh[] = array($k[0]['orderinfo'],$typeclass['spare'],$k[0]['product'],$k[0]['name'],$k[0]['email'],date("Y-m-d H:i:s",$k[0]['dtime']),$k[0]['shouldmoney']);
  6007. }
  6008. if(isset($value['email']) && $usp['excelpass'] == '1')
  6009. {
  6010. $emailpass = $this->setting->get_excelpass($value['email']);
  6011. $info_list[$key]['email'] = $emailpass;
  6012. }
  6013. }
  6014. $title = $country['zname'].date('Y-m-d',$timetk).'-'.date('Y-m-d',$timetj);
  6015. $titlename = "<table border=1>
  6016. <tr>
  6017. <td>订单号</td>
  6018. <td>订单状态</td>
  6019. <td>产品名</td>
  6020. <td>客户名</td>
  6021. <td>客户邮箱</td>
  6022. <td>下单时间</td>
  6023. <td>订单金额</td>
  6024. </tr>
  6025. </table>";
  6026. $filename = $title.".xls";
  6027. $tail = "\n";
  6028. $this->excel->get_fz2($kh,$titlename,$filename,$tail);
  6029. }
  6030. }
  6031. }
  6032. public function _klarnadata()
  6033. {
  6034. $post = $this->input->post(NULL, TRUE);
  6035. if(isset($post['number']))
  6036. {
  6037. $number = $this->input->post('number',true);
  6038. $data = $this->fullorder->get_number($number);
  6039. $shop = $this->shop->read($data['shop']);
  6040. $f = '';
  6041. if($data['pay'] == '23')
  6042. {
  6043. $url = 'https://api-na.klarna.com/ordermanagement/v1/orders/'.$data['paypal'];
  6044. $header[] = "Content-Type:application/json";
  6045. $header[] = "Authorization: Basic ".base64_encode($shop['klarnaname'].":".$shop['klarnapass']);
  6046. $ch = curl_init();
  6047. curl_setopt($ch, CURLOPT_URL, $url);
  6048. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  6049. curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
  6050. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  6051. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
  6052. $res = curl_exec($ch);
  6053. curl_close($ch);
  6054. $res = json_decode($res,true);
  6055. if(isset($res['fraud_status']) && $shop['klarnaname'] != '')
  6056. {
  6057. $f = (($res['fraud_status'] == 'ACCEPTED')?1:2).'|<strong>'.$res['purchase_currency'].($res['order_amount']/100).'</strong> , '.(($res['fraud_status'] != 'ACCEPTED')?'<font style="color:#f00">'.$res['fraud_status'].'</font>':$res['fraud_status']).' , description:'.$res['initial_payment_method']['description'].' , number of installments:'.$res['initial_payment_method']['number_of_installments'].'|'.$res['billing_address']['street_address'].(($res['billing_address']['street_address2']!='')?' '.$res['billing_address']['street_address2']:'').','.$res['billing_address']['city'].','.$res['billing_address']['region'].','.$res['billing_address']['postal_code'].','.$res['billing_address']['country'].','.$res['billing_address']['given_name'].' '.$res['billing_address']['family_name'].','.$res['billing_address']['phone'].','.$res['billing_address']['email'].'|'.$res['shipping_address']['street_address'].(($res['shipping_address']['street_address2']!='')?' '.$res['shipping_address']['street_address2']:'').','.$res['shipping_address']['city'].','.$res['shipping_address']['region'].','.$res['shipping_address']['postal_code'].','.$res['shipping_address']['country'].','.$res['shipping_address']['given_name'].' '.$res['shipping_address']['family_name'].','.$res['shipping_address']['phone'].','.$res['shipping_address']['email'];
  6058. }
  6059. }
  6060. else if(($data['pay'] == '22' || $data['pay'] == '7') && $shop['paypalname'] != '')
  6061. {
  6062. $f = $this->paypal->data($data['paypal'],$shop);
  6063. }
  6064. else if(($data['pay'] == '26') && $shop['afterpayname'] != '')
  6065. {
  6066. $url = 'https://global-api.afterpay.com/v2/payments?ids='.$data['paypal'];
  6067. $header[] = "Accept:application/json";
  6068. $header[] = "User-Agent: Readme.io API Simulator'";
  6069. $header[] = "Authorization: Basic ".base64_encode($shop['afterpayname'].":".$shop['afterpaypass']);
  6070. $ch = curl_init();
  6071. curl_setopt($ch, CURLOPT_URL, $url);
  6072. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  6073. curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
  6074. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  6075. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
  6076. $res = curl_exec($ch);
  6077. curl_close($ch);
  6078. $res = json_decode($res,true);
  6079. if(isset($res['results'][0]['orderDetails']['consumer']['email']))
  6080. {
  6081. $f = $res['results'][0]['orderDetails']['consumer']['email'].'|'.$res['results'][0]['orderDetails']['billing']['line1'].','.$res['results'][0]['orderDetails']['billing']['line2'].','.$res['results'][0]['orderDetails']['billing']['area1'].','.$res['results'][0]['orderDetails']['billing']['region'].','.$res['results'][0]['orderDetails']['billing']['postcode'].','.$res['results'][0]['orderDetails']['billing']['countryCode'].','.$res['results'][0]['orderDetails']['billing']['name'].','.$res['results'][0]['orderDetails']['billing']['phoneNumber'].'|'.$res['results'][0]['orderDetails']['shipping']['line1'].','.$res['results'][0]['orderDetails']['shipping']['line2'].','.$res['results'][0]['orderDetails']['shipping']['area1'].','.$res['results'][0]['orderDetails']['shipping']['region'].','.$res['results'][0]['orderDetails']['shipping']['postcode'].','.$res['results'][0]['orderDetails']['shipping']['countryCode'].','.$res['results'][0]['orderDetails']['shipping']['name'].','.$res['results'][0]['orderDetails']['shipping']['phoneNumber'];
  6082. $f = str_replace(',,',',',$f);
  6083. }
  6084. }
  6085. else if(($data['pay'] == '27') && $shop['clearpayname'] != '')
  6086. {
  6087. $url = 'https://global-api.afterpay.com/v2/payments?ids='.$data['paypal'];
  6088. $header[] = "Accept:application/json";
  6089. $header[] = "User-Agent: Readme.io API Simulator'";
  6090. $header[] = "Authorization: Basic ".base64_encode($shop['clearpayname'].":".$shop['clearpaypass']);
  6091. $ch = curl_init();
  6092. curl_setopt($ch, CURLOPT_URL, $url);
  6093. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  6094. curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
  6095. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  6096. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
  6097. $res = curl_exec($ch);
  6098. curl_close($ch);
  6099. $res = json_decode($res,true);
  6100. if(isset($res['results'][0]['orderDetails']['consumer']['email']))
  6101. {
  6102. $f = $res['results'][0]['orderDetails']['consumer']['email'].'|'.$res['results'][0]['orderDetails']['billing']['line1'].','.$res['results'][0]['orderDetails']['billing']['line2'].','.$res['results'][0]['orderDetails']['billing']['area1'].','.$res['results'][0]['orderDetails']['billing']['region'].','.$res['results'][0]['orderDetails']['billing']['postcode'].','.$res['results'][0]['orderDetails']['billing']['countryCode'].','.$res['results'][0]['orderDetails']['billing']['name'].','.$res['results'][0]['orderDetails']['billing']['phoneNumber'].'|'.$res['results'][0]['orderDetails']['shipping']['line1'].','.$res['results'][0]['orderDetails']['shipping']['line2'].','.$res['results'][0]['orderDetails']['shipping']['area1'].','.$res['results'][0]['orderDetails']['shipping']['region'].','.$res['results'][0]['orderDetails']['shipping']['postcode'].','.$res['results'][0]['orderDetails']['shipping']['countryCode'].','.$res['results'][0]['orderDetails']['shipping']['name'].','.$res['results'][0]['orderDetails']['shipping']['phoneNumber'];
  6103. $f = str_replace(',,',',',$f);
  6104. }
  6105. }
  6106. else if($data['pay'] == '1211')
  6107. {
  6108. $url = 'https://api.stripe.com/v1/payment_intents/'.$data['paypal'];
  6109. $header[] = "Authorization:Bearer ".$shop['stripe'];
  6110. $ch = curl_init();
  6111. curl_setopt($ch, CURLOPT_URL, $url);
  6112. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  6113. curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
  6114. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  6115. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
  6116. $res = curl_exec($ch);
  6117. curl_close($ch);
  6118. $res = json_decode($res,true);
  6119. $f = '';
  6120. if(isset($res['shipping']['name']))
  6121. {
  6122. $line = ($res['shipping']['address']['line2'] != '')?$res['shipping']['address']['line1'].' '.$res['shipping']['address']['line2']:$res['shipping']['address']['line1'];
  6123. $f = 'stripe|'.json_encode(array('name'=>$res['shipping']['name'],'email'=>$res['receipt_email'],'address'=>$line.','.$res['shipping']['address']['city'].','.$res['shipping']['address']['state'].','.$res['shipping']['address']['postal_code'].','.$res['shipping']['address']['country'].','.$res['shipping']['phone'],'shouldmoney'=>$res['amount']/100));
  6124. }
  6125. }
  6126. else
  6127. {
  6128. echo json_encode(array('msg'=>'此店铺没有对接信息','success'=>false));exit;
  6129. }
  6130. if($f != '')
  6131. {
  6132. if($this->fullorder->save(array('klarnadata'=>$f),$data['id']))
  6133. {
  6134. echo json_encode(array('msg'=>'获取成功,请关闭此页重新打开','success'=>true));exit;
  6135. }
  6136. else
  6137. {
  6138. echo json_encode(array('msg'=>'写入失败,请重试','success'=>false));exit;
  6139. }
  6140. }
  6141. else
  6142. {
  6143. echo json_encode(array('msg'=>'获取失败,请稍后重试','cl'=>base64_encode($shop['afterpayname'].":".$shop['afterpaypass']),'a'=>$data['paypal'],'success'=>false));exit;
  6144. }
  6145. }
  6146. }
  6147. public function _kcyz($warehouse,$whlabel,$id,$shop,$number)
  6148. {
  6149. if(!$whlabel || $whlabel == '|')
  6150. {
  6151. return array('t'=>1,'m'=>json_encode(array('t'=>1,'msg'=>'请先添加产品信息!','success'=>false)));exit;
  6152. }
  6153. $w = $this->warehouse->read($warehouse);
  6154. if($w['zd'] != 1)
  6155. {
  6156. return 1;
  6157. }
  6158. $pp = explode('|',trim($whlabel,'|'));
  6159. $x = 0;$save = array();
  6160. foreach ($pp as $va)
  6161. {
  6162. $num = explode('-',$va);
  6163. if($number)
  6164. {
  6165. $whlabel = $this->whlabel->find_all("state = 0 and number = '$num[0]' and warehouse = '$warehouse' and (zd = '$number' or zd = '') and (shop IS NULL or shop = '')");//通用
  6166. $shopwhlabel = $this->whlabel->find_all("state = 0 and number = '$num[0]' and warehouse = '$warehouse' and (zd = '$number' or zd = '') and shop like '%,".$shop.",%'");//专属
  6167. }
  6168. else
  6169. {
  6170. $whlabel = $this->whlabel->find_all("state = 0 and number = '$num[0]' and warehouse = '$warehouse' and zd = '' and (shop IS NULL or shop = '')");//通用
  6171. $shopwhlabel = $this->whlabel->find_all("state = 0 and number = '$num[0]' and warehouse = '$warehouse' and zd = '' and shop like '%,".$shop.",%'");//专属
  6172. }
  6173. $x++;
  6174. if(count($whlabel)+count($shopwhlabel) < $num[1])
  6175. {
  6176. $save[] = $x-1;continue;//提前先加X不然出错,所以要减1
  6177. }
  6178. }
  6179. return $save;
  6180. }
  6181. public function _epod()
  6182. {
  6183. $post = $this->input->post(NULL, TRUE);
  6184. if(isset($post['number']))
  6185. {
  6186. $number = $this->input->post('number',true);
  6187. $data = $this->fullorder->get_number($number);
  6188. if(is_file('./data/epod/'.date('Y',time()).'/epod-'.$data['waybill'].'.pdf'))
  6189. {
  6190. echo json_encode(array('msg'=>'http://'.$_SERVER['HTTP_HOST'].'/data/epod/'.date('Y',time()).'/epod-'.$data['waybill'].'.pdf','success'=>true));exit;
  6191. }
  6192. else
  6193. {
  6194. $epod = $this->dhl->get_epod($data);
  6195. if($epod['c'] == 1)
  6196. {
  6197. echo json_encode(array('msg'=>'http://'.$_SERVER['HTTP_HOST'].$epod['d'],'success'=>true));exit;
  6198. }
  6199. else
  6200. {
  6201. echo json_encode(array('msg'=>$epod['d'],'success'=>false));exit;
  6202. }
  6203. }
  6204. }
  6205. }
  6206. public function _zw($arg_array)
  6207. {
  6208. $arg_array = $arg_array[0];$fpdata = array();
  6209. $fullorder = $this->fullorder->read($arg_array);
  6210. $fullorder['shipremarks'] = str_replace(array('<','>'),array('&lt;','&gt;'),$fullorder['shipremarks']);
  6211. $fullorder['parameter'] = str_replace(",","---",$fullorder['parameter']);
  6212. $this->data['fullorder'] = $fullorder;
  6213. $this->data['countrys'] = $this->country->find_all();
  6214. $this->data['express'] = $this->express->find_all();
  6215. $warehouse = $this->warehouse->read($fullorder['type']);
  6216. if(stripos($fullorder['fpdata'],';') !== false)
  6217. {
  6218. $fpdata = explode(';',rtrim($fullorder['fpdata'],';'));
  6219. foreach ($fpdata as $k=>$v)
  6220. {
  6221. $xxv = explode('|',$v);
  6222. if(isset($xxv[9]) && stripos($xxv[9],$warehouse['hz']) !== false && $warehouse['hz'] != '' && $warehouse['zd'] == 1)
  6223. {
  6224. $xxv['zd'] = "<p>已占单</p>";
  6225. $bdck = $warehouse['bdck'];
  6226. if(stripos($xxv[9],'~') !== false)
  6227. {
  6228. $dxxv = explode('~',trim($xxv[9],'~'));
  6229. foreach ($dxxv as $val)
  6230. {
  6231. $wzid = $this->$bdck->read(trim($val,$warehouse['hz']));
  6232. if($wzid['details'] != '')
  6233. {
  6234. $xxv['zd'] .= '<p>位置:'.$wzid['details'].' - '.$wzid['cpid'].'</p>';
  6235. }
  6236. }
  6237. }
  6238. else
  6239. {
  6240. $wzid = $this->$bdck->read(trim($xxv[9],$warehouse['hz']));
  6241. if($wzid['details'] != '')
  6242. {
  6243. $xxv['zd'] .= '<p>位置:'.$wzid['details'].' - '.$wzid['cpid'].'</p>';
  6244. }
  6245. }
  6246. }
  6247. $fpdata[$k] = $xxv;
  6248. }
  6249. }
  6250. $this->data['fpdata'] = $fpdata;
  6251. $this->data['fpdata'] = $fpdata;
  6252. $thfpdataxs = array();
  6253. if($fullorder['thfpdata'] != '')
  6254. {
  6255. $thfpdata = explode(';',trim($fullorder['thfpdata'],';'));
  6256. foreach ($thfpdata as $k=>$v)
  6257. {
  6258. $thxs = explode('~',trim($v,'~'));
  6259. $thxs[0] = explode('|',trim($thxs[0],'|'));
  6260. $thxs[1] = explode('|',trim($thxs[1],'|'));
  6261. $thfpdataxs[] = array("<p>".$thxs[0][1]."<i class='fa fa-level-down'></i></p><p>".$thxs[1][1]."</p>","<p>".$thxs[0][2]."</p><p>".$thxs[1][2]."</p>","<p>旧</p><p>新</p>",$thxs[1][0]);
  6262. }
  6263. }
  6264. $this->data['thfpdata'] = $thfpdataxs;
  6265. $shop = $this->shop->read($fullorder['shop']);
  6266. $this->data['et'] = $shop['estimaterate'];//此店铺配置预计到帐金额比例
  6267. $is = 0;
  6268. if($shop['type'] == 269 || $shop['type'] == 2678)//判断是否独立站,269是独立站
  6269. {
  6270. $is = 1;
  6271. }
  6272. $this->data['is'] = $is;
  6273. //单项开始
  6274. $warehouse = $this->warehouse->read($fullorder['warehouse']);//发货仓库
  6275. $state = $this->typeclass->read($fullorder['state']);//订单状态
  6276. $country = $this->country->read($fullorder['country']);//国家
  6277. if($fullorder['capital'] == 1)
  6278. {
  6279. $capital = '暂未支付';
  6280. }
  6281. else if($fullorder['capital'] == 2)
  6282. {
  6283. $capital = '部分支付';
  6284. }
  6285. else if($fullorder['capital'] == 3)
  6286. {
  6287. $capital = '全部支付';
  6288. }
  6289. if($fullorder['printtype'] == 1)
  6290. {
  6291. $printtype = '运单';
  6292. }
  6293. else if($fullorder['printtype'] == 2)
  6294. {
  6295. $printtype = '发货单';
  6296. }
  6297. else if($fullorder['printtype'] == 3)
  6298. {
  6299. $printtype = '不打印单据';
  6300. }
  6301. else
  6302. {
  6303. $printtype = '未选择';
  6304. }
  6305. $this->data['warehouse'] = $warehouse['title'];
  6306. $this->data['state'] = $state['title'];
  6307. $this->data['capital'] = $capital;
  6308. $this->data['country'] = $country['name'];
  6309. $this->data['printtype'] = $printtype;
  6310. //单项结束
  6311. /** 历史运单号展示并下载PDF 打印时间需要2019-3-21 0点之后有记录 **/
  6312. $downwaybill = '';$dwls = array();
  6313. $oldwaybill = explode('-',ltrim($fullorder['oldwaybill'],'-'));
  6314. if(isset($oldwaybill[0][1]))
  6315. {
  6316. $oldwaybill = array_reverse($oldwaybill); //调整顺序
  6317. foreach ($oldwaybill as $v)
  6318. {
  6319. $dw = explode('/',$v);
  6320. if(isset($dw[1]))
  6321. {
  6322. if(stripos($downwaybill,$dw[1]) === false)
  6323. {
  6324. $dwls[$dw[1]] = 1;
  6325. $downwaybill .= '<a href="/data/pdf/'.$dw[0].'/y-'.$dw[1].'.pdf" target="_blank">'.$dw[1].'</a>、';
  6326. }
  6327. }
  6328. }
  6329. }
  6330. if($fullorder['printtype'] == 1)
  6331. {
  6332. if($fullorder['waybill'] != '' && !isset($dwls[$fullorder['waybill']]))
  6333. {
  6334. $downwaybill = '<a href="/data/pdf/'.date('Ymd',$fullorder['printtime']).'/y-'.$fullorder['waybill'].'.pdf" target="_blank">'.$fullorder['waybill'].'</a>、'.$downwaybill;
  6335. }
  6336. }
  6337. $this->data['downwaybill'] = rtrim($downwaybill,'、');
  6338. /** 历史打印时间 **/
  6339. $printtime = '';
  6340. if($fullorder['oldprinttime'])
  6341. {
  6342. $pte = explode('-',rtrim($fullorder['oldprinttime'],'-'));
  6343. foreach ($pte as $v)
  6344. {
  6345. $printtime .= date('Y-m-d H:i:s',$v).'、';
  6346. }
  6347. }
  6348. $this->data['printtime'] = rtrim($printtime,'、');
  6349. $product = '';
  6350. $fullorder['product'] = str_replace("'","",$fullorder['product']);
  6351. if($fullorder['link'] != '' && $fullorder['source'] != '1')
  6352. {
  6353. $pt = explode(',',$fullorder['product']);
  6354. $lk = explode(',',$fullorder['link']);
  6355. for($i=0;$i<count($pt);$i++)
  6356. {
  6357. if(isset($lk[$i]))
  6358. {
  6359. $octs = $this->colourorderts->get_texturl($pt[$i],$lk[$i]);
  6360. }
  6361. else
  6362. {
  6363. $octs = '';
  6364. }
  6365. $a = $octs?'<font style="color:#'.$octs['colour'].'">'.$pt[$i].'</font>':$pt[$i];
  6366. //$a = (stripos($pt[$i],'Lace Front Wig Body Wave Human Hair Wigs Pre Plucked Brazilian Virgin Hair') !== false || stripos($pt[$i],'Deep Wave Wig 100 Human Hair Swiss Lace Curly Hair Lace Front Wig') !== false || stripos($pt[$i],'Alipearl Lace Front Wig Silky Straight 100% Virgin Human Hair') !== false || stripos($pt[$i],'Long Wigs Water Wave Lace Front Wigs Natural Wave Wigs For Sale') !== false || stripos($pt[$i],'Deep Wave Long Hair Wigs Lace Front Wigs Cheap Human Hair Wigs') !== false || stripos($pt[$i],'Long Wigs Loose Deep Wave Lace Front Wigs For Black Women') !== false || stripos($pt[$i],'Long Black Wigs Body Wave Lace Front Wigs With Baby Hair') !== false || stripos($pt[$i],'Long Curly Wigs Lace Front Wigs Human Hair Lace Front Wigs') !== false || stripos($pt[$i],'Blonde Skunk Stripe Hair Natural Body Wave Hairstyle Lace Wigs for Women') !== false)?'<font style="color:#F39">'.$pt[$i].'</font>':$pt[$i];
  6367. if(isset($lk[$i]))
  6368. {
  6369. $product .= ($product != '')?' , <a href="'.$lk[$i].'" target="_blank">'.$a.'</a>':'<a href="'.$lk[$i].'" target="_blank">'.$a.'</a>';
  6370. }
  6371. else
  6372. {
  6373. $product .= ($product != '')?' , '.$a:$a;
  6374. }
  6375. }
  6376. }
  6377. else
  6378. {
  6379. $octs = $this->colourorderts->get_text($fullorder['product']);
  6380. $a = $octs?'<font style="color:#F39">'.$fullorder['product'].'</font>':$fullorder['product'];
  6381. //$a = (stripos($fullorder['product'],'Lace Front Wig Body Wave Human Hair Wigs Pre Plucked Brazilian Virgin Hair') !== false || stripos($fullorder['product'],'Deep Wave Wig 100 Human Hair Swiss Lace Curly Hair Lace Front Wig') !== false || stripos($fullorder['product'],'Alipearl Lace Front Wig Silky Straight 100% Virgin Human Hair') !== false || stripos($fullorder['product'],'Long Wigs Water Wave Lace Front Wigs Natural Wave Wigs For Sale') !== false || stripos($fullorder['product'],'Deep Wave Long Hair Wigs Lace Front Wigs Cheap Human Hair Wigs') !== false || stripos($fullorder['product'],'Long Wigs Loose Deep Wave Lace Front Wigs For Black Women') !== false || stripos($fullorder['product'],'Long Black Wigs Body Wave Lace Front Wigs With Baby Hair') !== false || stripos($fullorder['product'],'Long Curly Wigs Lace Front Wigs Human Hair Lace Front Wigs') !== false || stripos($fullorder['product'],'Blonde Skunk Stripe Hair Natural Body Wave Hairstyle Lace Wigs for Women') !== false)?'<font style="color:#F39">'.$fullorder['product'].'</font>':$fullorder['product'];
  6382. $product = $a;
  6383. }
  6384. $this->data['product'] = $product;
  6385. $out = $this->systemtransfer->find_all("number = '".$fullorder['number']."'");
  6386. $outread = '';
  6387. if($out)
  6388. {
  6389. foreach ($out as $val)
  6390. {
  6391. $list = '';
  6392. $rk = explode('|',trim($val['rk'],'|'));
  6393. $rktime = explode('|',trim($val['rktime'],'|'));
  6394. $zw = array();
  6395. $t = $this->transfer->find_all("1=1");
  6396. foreach ($t as $v)
  6397. {
  6398. $zw[$v['id']] = $v['title'];
  6399. }
  6400. if($val['rk'] != '' && count($rk) > 0)
  6401. {
  6402. for($i=0;$i<count($rk);$i++)
  6403. {
  6404. if(!isset($rktime[$i]))
  6405. {
  6406. $list .= $zw[$cz[$i]];
  6407. }
  6408. else
  6409. {
  6410. $list .= $zw[$rk[$i]].' :'.date('Y-m-d H:i',$rktime[$i]).',';
  6411. }
  6412. }
  6413. }
  6414. $outread .= '<span style="color:#f00">'.$val['pm'].'</span>:'.$list.'<br>';
  6415. }
  6416. }
  6417. else
  6418. {
  6419. $systemwigsout = $this->systemwigsout->find_all("number = '".$fullorder['number']."'");
  6420. $outread = array();
  6421. if($systemwigsout)
  6422. {
  6423. foreach ($systemwigsout as $v)
  6424. {
  6425. if($v['czwarehouse'] == 37)
  6426. {
  6427. $outread[] = '华荣厂';
  6428. }
  6429. else if($v['czwarehouse'] == 0)
  6430. {
  6431. $outread[] = '龙盈厂';
  6432. }
  6433. $cz = explode('|',trim($v['cz'],'|'));
  6434. $cztime = explode('|',trim($v['cztime'],'|'));
  6435. $zw = $this->transfer->get_list();
  6436. if($v['cz'] != '' && count($cz) > 0)
  6437. {
  6438. for($i=0;$i<count($cz);$i++)
  6439. {
  6440. if(!isset($cztime[$i]))
  6441. {
  6442. $outread[] = $zw[$cz[$i]].' -&gt; ';
  6443. }
  6444. else
  6445. {
  6446. $outread[] = $zw[$cz[$i]].' :'.date('Y-m-d H:i',$cztime[$i]).' -&gt; ';
  6447. }
  6448. }
  6449. $outread[] = '<br>';
  6450. }
  6451. }
  6452. }
  6453. }
  6454. $klarnacolor = '';
  6455. if($fullorder['klarnadata'] !='')
  6456. {
  6457. $klarnadata = explode('|',$fullorder['klarnadata']);
  6458. if($klarnadata[0] == 'paypal' || $klarnadata[0] == 'stripe')
  6459. {
  6460. $klarnadata[1] = json_decode($klarnadata[1],true);
  6461. if($klarnadata[0] == 'stripe' && $klarnadata[1]['shouldmoney'] != $fullorder['shouldmoney'] && $fullorder['pay'] == 1211)
  6462. {
  6463. $klarnacolor = 'style="color:#F00"';
  6464. }
  6465. }
  6466. else if($klarnadata[0]!=1 && $fullorder['pay']!=26 && $fullorder['pay']!=27 && $fullorder['pay']!=1211)
  6467. {
  6468. $klarnacolor = 'style="color:#F00"';
  6469. }
  6470. if($fullorder['pay'] == 23)//klarna
  6471. {
  6472. $ToState = array('alabama'=>'AL','alaska'=>'AK','arizona'=>'AZ','arkansas'=>'AR','california'=>'CA','colorado'=>'CO','connecticut'=>'CT','delaware'=>'DE','florida'=>'FL','georgia'=>'GA','hawaii'=>'HI','idaho'=>'ID','illinois'=>'IL','indiana'=>'IN','iowa'=>'IA','kansas'=>'KS','kentucky'=>'KY','louisiana'=>'LA','maine'=>'ME','maryland'=>'MD','massachusetts'=>'MA','michigan'=>'MI','minnesota'=>'MN','mississippi'=>'MS','missouri'=>'MO','montana'=>'MT','nebraska'=>'NE','nevada'=>'NV','new hampshire'=>'NH','new jersey'=>'NJ','new mexico'=>'NM','new york'=>'NY','north carolina'=>'NC','north dakota'=>'ND','ohio'=>'OH','oklahoma'=>'OK','oregon'=>'OR','pennsylvania'=>'PA','rhode island'=>'RI','south carolina'=>'SC','south dakota'=>'SD','tennessee'=>'TN','texas'=>'TX','utah'=>'UT','vermont'=>'VT','virginia'=>'VA','washington'=>'WA','west virginia'=>'WV','wisconsin'=>'WI','wyoming'=>'WY','district of columbia'=>'DC','virgin islands'=>'VI','guam'=>'GU','puerto rico'=>'PR');
  6473. $ToState = array_flip($ToState);
  6474. $klarnadata3 = str_replace(' ','',$klarnadata[3]);
  6475. $city = str_replace(' ','',$fullorder['city']);
  6476. $klarnadataaddress = explode($city,$klarnadata3);
  6477. if(isset($klarnadataaddress[1]))
  6478. {
  6479. $klarnadata3 = $city.$klarnadataaddress[1];
  6480. $klarnadatacolor = explode(',',$klarnadata3);
  6481. unset($klarnadatacolor[4]);
  6482. unset($klarnadatacolor[6]);
  6483. if(isset($ToState[$klarnadatacolor[1]]))
  6484. {
  6485. $klarnadatacolor[1] = ucwords($ToState[$klarnadatacolor[1]]);
  6486. }
  6487. $klarnadata['color'] = $klarnadataaddress[0].implode(",",$klarnadatacolor);
  6488. }
  6489. else
  6490. {
  6491. $klarnadata['color'] = $klarnadata3;
  6492. }
  6493. }
  6494. }
  6495. else
  6496. {
  6497. $klarnadata = '';
  6498. }
  6499. $p = explode('-',$fullorder['paypal']);
  6500. $this->data['klarnacolor'] = $klarnacolor;
  6501. $this->data['klarnadata'] = $klarnadata;
  6502. $this->data['systemwigsout'] = $outread;
  6503. $this->_Template('fullorder_zw',$this->data);
  6504. }
  6505. public function _dcdxyz()
  6506. {
  6507. $post = $this->input->get(NULL, TRUE);
  6508. if(isset($post['timetk']))
  6509. {
  6510. $timetk = $this->input->get('timetk',true);
  6511. $timetj = $this->input->get('timetj',true);
  6512. $timetk = strtotime($timetk);
  6513. $timetj = strtotime($timetj);
  6514. $where = "oldwaybill != ''";
  6515. if($timetk && $timetj)
  6516. {
  6517. $where .= " and dtime > '$timetk' and dtime < '$timetj'";
  6518. }
  6519. //数据排序
  6520. $order_str = "dtime desc";
  6521. //取得信息列表
  6522. $info_list = $this->fullorder->find_all($where,'orderinfo,number,oldwaybill',$order_str);
  6523. $data = array();
  6524. foreach ($info_list as $key=>$value)
  6525. {
  6526. $ob = '';
  6527. $oldwaybill = explode('-',trim($value['oldwaybill'],'-'));
  6528. if(count($oldwaybill) < 2)
  6529. {
  6530. continue;
  6531. }
  6532. $oldwaybill = array_reverse($oldwaybill); //调整顺序
  6533. foreach ($oldwaybill as $v)
  6534. {
  6535. $dw = explode('/',$v);
  6536. if(isset($dw[1]))
  6537. {
  6538. $dwls[$dw[1]] = 1;
  6539. $ob .= $dw[1].'、';
  6540. }
  6541. }
  6542. $info_list[$key]['oldwaybill'] = trim($ob,'、');
  6543. $data[] = $info_list[$key];
  6544. }
  6545. $title = "多运单信息 ".date("Y-m-d");
  6546. $titlename = "<table border=1>
  6547. <tr><th colspan='14' align='left'><h3>".$title."<h3></th></tr>
  6548. <tr>
  6549. <td>订单号</td>
  6550. <td>编号</td>
  6551. <td>运单号</td>
  6552. </tr>
  6553. </table>";
  6554. $filename = $title.".xls";
  6555. $tail = "\n";
  6556. $this->excel->get_fz2($data,$titlename,$filename,$tail);
  6557. }
  6558. }
  6559. public function _thxz()
  6560. {
  6561. $post = $this->input->get(NULL, TRUE);
  6562. if(isset($post['timetk']))
  6563. {
  6564. $timetk = $this->input->get('timetk',true);
  6565. $timetj = $this->input->get('timetj',true);
  6566. $timetk = strtotime($timetk);
  6567. $timetj = strtotime($timetj);
  6568. $where = "returndata != ''";
  6569. if($timetk && $timetj)
  6570. {
  6571. $where .= " and dtime > '$timetk' and dtime < '$timetj'";
  6572. }
  6573. //数据排序
  6574. $order_str = "dtime desc";
  6575. //取得信息列表
  6576. $info_list = $this->fullorder->find_all($where,'orderinfo,number,returndata',$order_str);
  6577. foreach ($info_list as $key=>$value)
  6578. {
  6579. $ydh = explode('">',$value['returndata']);
  6580. $ydh = explode('</a>',$ydh[1]);
  6581. $info_list[$key]['returndata'] = $ydh[0];
  6582. $time = explode('pdf/',$value['returndata']);
  6583. $time = explode('/',$time[1]);
  6584. $info_list[$key]['time'] = $time[0];
  6585. }
  6586. $title = "退货订单信息 ".date("Y-m-d");
  6587. $titlename = "<table border=1>
  6588. <tr><th colspan='14' align='left'><h3>".$title."<h3></th></tr>
  6589. <tr>
  6590. <td>订单号</td>
  6591. <td>编号</td>
  6592. <td>退货运单号</td>
  6593. <td>退货时间</td>
  6594. </tr>
  6595. </table>";
  6596. $filename = $title.".xls";
  6597. $tail = "\n";
  6598. $this->excel->get_fz2($info_list,$titlename,$filename,$tail);
  6599. }
  6600. }
  6601. public function _ddcf()
  6602. {
  6603. $post = $this->input->post(NULL, TRUE);
  6604. if(isset($post['number']))
  6605. {
  6606. $number = $this->input->post('number',true);
  6607. $data = $this->fullorder->get_number($number);
  6608. if(!$data)
  6609. {
  6610. echo json_encode(array('msg'=>'没有找到此订单','success'=>false));exit;
  6611. }
  6612. if($data['review'] != 1 && $data['review'] != 2)
  6613. {
  6614. echo json_encode(array('msg'=>'必须是 待审核 状态才能拆分','success'=>false));exit;
  6615. }
  6616. if($data['merge'] != 0)
  6617. {
  6618. echo json_encode(array('msg'=>'已合并的订单无法使用此拆分功能','success'=>false));exit;
  6619. }
  6620. $cfnum = explode('-',trim($number,'-'));
  6621. // if((count($cfnum) > 3 && stripos($number,'-PF-') === false))
  6622. // {
  6623. // echo json_encode(array('msg'=>'只能在原单操作拆分','success'=>false));exit;
  6624. // }
  6625. if(count($cfnum) > 4 && stripos($number,'-PF-') !== false)
  6626. {
  6627. echo json_encode(array('msg'=>'只能在原单操作拆分','success'=>false));exit;
  6628. }
  6629. $num = $this->fullorder->find_count("number like '".$number."%'");
  6630. $data['number'] = $data['number'].'-'.$num;
  6631. $data['orderinfo'] = $data['shop'].date('ymdHis',time()).rand(0,1);;
  6632. $data['shouldmoney'] = 0;
  6633. $data['budget'] = 0;
  6634. $data['shipremarks'] = '';
  6635. $data['source'] = 1;
  6636. //$data['review'] = 2;
  6637. $data['extra_status'] = 1;//拆分的订单
  6638. unset($data['id']);
  6639. unset($data['jweight']);
  6640. unset($data['fpcount']);
  6641. unset($data['returndata']);
  6642. unset($data['waybill']);
  6643. unset($data['oldwaybill']);
  6644. unset($data['printtime']);
  6645. if($this->fullorder->insert($data))
  6646. {
  6647. echo json_encode(array('msg'=>'拆分成功!新订单编号:'.$data['number'],'success'=>true));exit;
  6648. }
  6649. else
  6650. {
  6651. echo json_encode(array('msg'=>'拆分失败,请重试','success'=>false));exit;
  6652. }
  6653. }
  6654. }
  6655. public function _cf() //合并订单拆分
  6656. {
  6657. $post = $this->input->post(NULL, TRUE);
  6658. if(isset($post['id']))
  6659. {
  6660. $id = $this->input->post('id',true);
  6661. $b = $this->fullorder->read($id);
  6662. $order = array();
  6663. if($b['merge'] == $b['id'])
  6664. {
  6665. $data = $this->fullorder->find_all("merge = '".$b['merge']."'");
  6666. foreach ($data as $v)
  6667. {
  6668. $a = $this->fullorderhb->get_orderinfo($v['orderinfo']);
  6669. if($a)
  6670. {
  6671. $this->fullorder->save($a,$v['id']);
  6672. }
  6673. $order[] = $v['id'];
  6674. }
  6675. echo json_encode(array('msg'=>'拆分成功!','d'=>$order,'success'=>true));exit;
  6676. }
  6677. else
  6678. {
  6679. echo json_encode(array('msg'=>'拆分条件错误!','success'=>false));exit;
  6680. }
  6681. }
  6682. }
  6683. }