Fullorder.php 237 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747
  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 = 1 and number NOT like '%-%-%-%' and (".rtrim($fgshop,'or').")";
  822. if($shop)
  823. {
  824. $where .= " and shop = '$shop'";
  825. }
  826. if($email)
  827. {
  828. $where .= " and email = '$email'";
  829. }
  830. if($timetk && $timetj)
  831. {
  832. $where .= " and dtime > '$timetk' and dtime < '$timetj'";
  833. }
  834. //数据排序
  835. $order_str = "id desc";
  836. if(empty($page))
  837. {
  838. $start = 0;
  839. $perpage = 1;
  840. }
  841. else
  842. {
  843. $start = ($page - 1)*$perpage;
  844. }
  845. //取得信息列表
  846. $info_list = $this->fullorder->find_all($where,'id,shop,orderinfo,number,name,email,address,state,dtime,shipremarks,type,merge');
  847. $info = array();
  848. $len = count($info_list);
  849. //格式化数据
  850. foreach ($info_list as $key=>$value)
  851. {
  852. $ud = $this->fullorder->read($value['id']);
  853. $shop = $this->shop->read($value['shop']);
  854. $warehouse = $this->warehouse->read($value['type']);
  855. $info_list[$key]['shop'] = '<p>'.$shop['shopname'].'</p>'.'<p>'.$warehouse['title'].'</p>';
  856. $info_list[$key]['email'] = '<p>'.$value['email'].'</p>'.'<p>'.$ud['phone'].'</p>';
  857. $typeclass = $this->typeclass->read($value['state']);
  858. $info_list[$key]['state'] = $typeclass['spare'];
  859. $info_list[$key]['type'] = $ud['orderremarks'];
  860. $info_list[$key]['dtime'] = '<p>'.date('Y-m-d',$value['dtime']).'</p><p>'.date('H:i:s',$value['dtime']).'</p>';
  861. if($value['merge'] == 0)
  862. {
  863. $info_list[$key]['merge'] = "<p>可合并</p>";
  864. }
  865. else
  866. {
  867. if($value['merge'] == $value['id'])
  868. {
  869. if($ud['print'] < '3' && $ud['library'] == '1')
  870. {
  871. $info_list[$key]['merge'] = "<p><b class='cforder' data-id='".$value['id']."'>拆分订单</b></p>";
  872. }
  873. else
  874. {
  875. $info_list[$key]['merge'] = "已合并";
  876. }
  877. }
  878. else
  879. {
  880. $info_list[$key]['merge'] = "被合并";
  881. }
  882. }
  883. }
  884. /** 操作合并
  885. if($value['merge'] == 0)
  886. {
  887. $info_list[$key]['merge'] = "<p><b class='jd' data-type='5'>合并订单</b></p>";
  888. }
  889. else
  890. {
  891. if($value['merge'] == $value['id'])
  892. {
  893. $info_list[$key]['merge'] = "已合并";
  894. }
  895. else
  896. {
  897. $info_list[$key]['merge'] = "被合并";
  898. }
  899. }
  900. **/
  901. $asd = array();
  902. for($i=0;$i<$len;$i++)
  903. {
  904. for($j=$i+1;$j<$len;$j++)
  905. {
  906. 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']
  907. {
  908. if(!array_key_exists($j,$info))
  909. {
  910. $info[$j] = $info_list[$j];
  911. }
  912. if(!array_key_exists($i,$info))
  913. {
  914. $info[$i] = $info_list[$i];
  915. }
  916. }
  917. }
  918. }
  919. rsort($info);
  920. $total = count($info);
  921. $pagenum = ceil($total/$perpage);
  922. $over = $total-($start+$perpage);
  923. $rows = array('total'=>$total,'over'=>$over,'pagenum'=>$pagenum,'rows'=>(array_slice($info,$start,$perpage)));
  924. echo json_encode($rows);exit;
  925. }
  926. $wlshop = $this->shop->find_all('1=1 and '.rtrim($sid,'or'));
  927. $this->data['wlshop'] = $wlshop;
  928. $this->_Template('fullorder_repeat',$this->data);
  929. }
  930. //修改
  931. public function _edit($arg_array)
  932. {
  933. if(isset($_SESSION['api']))
  934. {
  935. $user = $this->user->get_api($_SESSION['api']);
  936. if($user['vip'] == 1)
  937. {
  938. $vip = 1;
  939. }
  940. else
  941. {
  942. $vip = 0;
  943. }
  944. $this->data['userid'] = $user['id'];
  945. }
  946. else
  947. {
  948. $this->data['userid'] = 0;
  949. $vip = 0;
  950. }
  951. $post = $this->input->post(NULL, TRUE);
  952. if(isset($post['id']))
  953. {
  954. // $dtsbjz = $this->input->post('dtsbjz',true);
  955. // $ts = $this->input->post('ts',true);
  956. // $dtsbjz = sprintf("%.2f",$dtsbjz);
  957. // $total_sbjz = $dtsbjz*$ts;
  958. // $tmp_zsbjz = $this->input->post('zsbjz',true);
  959. // $tmp_zsbjz = sprintf("%.2f",$tmp_zsbjz);
  960. // if($tmp_zsbjz*1 != $total_sbjz){
  961. // echo json_encode(array('msg'=>'单条申报价为2为小数!','success'=>false));exit;
  962. // }
  963. $id = $this->input->post('id',true);
  964. $data = $this->fullorder->read($id);
  965. $post['type'] = $this->input->post('warehouse',true);
  966. $post['country'] = $this->input->post('country',true);
  967. $currency = $this->country->read($post['country']);
  968. $post['al'] = $currency['lb'];
  969. $post['freight'] = $this->input->post('freight',true);
  970. $post['expressmoney'] = $this->input->post('expressmoney',true);
  971. $post['shouldmoney'] = $this->input->post('shouldmoney',true);
  972. $orderremarks = $this->input->post('orderremarks');
  973. $orderremarks = str_replace(array('%26','%2B'),array('&','+'),$orderremarks);
  974. $post['orderremarks'] = $orderremarks;
  975. $shipremarks = $this->input->post('shipremarks');
  976. $shipremarks = str_replace(array('%26','%2B'),array('&','+'),$shipremarks);
  977. $post['shipremarks'] = preg_replace('/( | | |\s)/',' ',$shipremarks);
  978. $email = $this->input->post('email',true);
  979. $post['email'] = preg_replace('/( | | |\s)/','',$email);
  980. //$post['paypal'] = $this->input->post('paypal',true);
  981. $name = $this->input->post('name',true);
  982. $post['name'] = str_replace("'","’",$name);
  983. $post['phone'] = $this->input->post('phone',true);
  984. $post['phone'] = preg_replace('/\D/s','',$post['phone']);
  985. $post['phone'] = preg_replace('/( | | |\s)/','',$post['phone']);
  986. $post['country'] = $this->input->post('country',true);
  987. $post['province'] = $this->input->post('province',true);//省、州
  988. $post['province'] = preg_replace("/^[\s\v".chr(227).chr(128)."]+/","", $post['province']); //替换开头空字符
  989. $post['province'] = preg_replace("/[\s\v".chr(227).chr(128)."]+$/","", $post['province']); //替换结尾空字符
  990. $post['city'] = $this->input->post('city',true);//城市
  991. $post['city'] = preg_replace("/^[\s\v".chr(227).chr(128)."]+/","", $post['city']); //替换开头空字符
  992. $post['city'] = preg_replace("/[\s\v".chr(227).chr(128)."]+$/","", $post['city']); //替换结尾空字符
  993. $post['zipcode'] = $this->input->post('zipcode',true);//邮编
  994. $post['zipcode'] = preg_replace("/^[\s\v".chr(227).chr(128)."]+/","", $post['zipcode']); //替换开头空字符
  995. $post['zipcode'] = preg_replace("/[\s\v".chr(227).chr(128)."]+$/","", $post['zipcode']); //替换结尾空字符
  996. $post['street'] = $this->input->post('street',true);
  997. $address = $this->input->post('address',true);
  998. $address = preg_replace('/( | | |\s)/',' ',$address);
  999. $post['address'] = str_replace("'","’",$address);
  1000. $address2 = $this->input->post('address2',true);
  1001. $address2 = preg_replace('/( | | |\s)/',' ',$address2);
  1002. if($address2 == ' ')
  1003. {
  1004. $address2 = '';
  1005. }
  1006. $post['address2'] = str_replace("'","’",$address2);
  1007. $post['express'] = $this->input->post('express',true);
  1008. $post['printtype'] = $this->input->post('printtype',true);
  1009. $fpdata = $this->input->post('fpdata');
  1010. $fpdata = str_replace(array('%26','%2B'),array('&','+'),$fpdata);
  1011. $post['fpdata'] = $fpdata;
  1012. $post['waybill'] = $this->input->post('waybill',true);
  1013. $post['msg'] = $this->input->post('msg',true);
  1014. $post['zsbjz'] = $this->input->post('zsbjz',true);
  1015. $post['refundy'] = $this->input->post('refundy',true);
  1016. $post['refundj'] = $this->input->post('refundj',true);
  1017. $rtime = $this->input->post('rtime',true);
  1018. $post['rtime'] = strtotime($rtime);
  1019. $post['rpaypal'] = $this->input->post('rpaypal',true);
  1020. $post['rtext'] = $this->input->post('rtext',true);
  1021. $post['sbpm'] = $this->input->post('sbpm',true);
  1022. $post['edittime'] = time();
  1023. $editstate = $this->input->post('state',true);
  1024. if(!$editstate)
  1025. {
  1026. $editstate = $data['state'];
  1027. }
  1028. $whlabel = $this->input->post('whlabel',true);
  1029. $fpcount = $this->input->post('fpcount',true);
  1030. $post['ioss'] = $this->input->post('ioss',true);
  1031. $post['waybill'] = preg_replace('/( | | | |\s)/','',$post['waybill']);
  1032. $pay = $this->pay->get_typeclass($data['pay']);
  1033. $yga = $post['shouldmoney'];
  1034. $ygc = $data['estimaterate'];
  1035. $post['budget'] = 0;
  1036. if($post['email'] == $post['send_email']){
  1037. $post['send_email'] = '';
  1038. }
  1039. $ifbudget = eval("return $yga*1.$ygc;");
  1040. if($ifbudget > 0)
  1041. {
  1042. $post['budget'] = eval("return $yga*1.$ygc;");
  1043. }
  1044. if($data['estimaterate'] == 1){
  1045. $post['budget'] = $post['shouldmoney'];
  1046. }
  1047. $whlabeldata = explode('|',trim($whlabel,'|'));$way = 0;
  1048. foreach ($whlabeldata as $va)
  1049. {
  1050. if(stripos($va,'z') !== false)
  1051. {
  1052. $way += 1;
  1053. }
  1054. }
  1055. //如果备注中出现网红的两个字 ,那么在fpdata种的品名中必须有 WH这两个字 且美仓不用
  1056. if($post['type'] !=5 ){
  1057. if(stripos($post['shipremarks'],'网红') !== false){
  1058. if(stripos($post['fpdata'],'-2090-') === false){
  1059. echo json_encode(array('msg'=>'网红单请在商品名称中勾选WH!','success'=>false));exit;
  1060. }
  1061. }
  1062. }
  1063. if((($post['express'] == 2 || $post['express'] == 63 || $post['express'] == 64 || $post['express'] == 81 || $post['express'] == 85 || $post['express'] == 87 ) && $post['type'] != 5) )
  1064. {
  1065. echo json_encode(array('msg'=>'此快递方式必须从美仓发货!','success'=>false));exit;
  1066. }
  1067. if( ($post['express'] != 2 && $post['express'] != 63 && $post['express'] != 64 && $post['express'] != 81 && $post['express'] != 85 && $post['express'] != 87 && $post['type'] == 5)){
  1068. echo json_encode(array('msg'=>'此快递方式不能美仓发货!','success'=>false));exit;
  1069. }
  1070. //仅独立站 地址美国对电话 10或者11位进行判断
  1071. if($post['country'] == 192){
  1072. if((strlen($post['phone'])!= 10) && (strlen($post['phone'])!= 11)){
  1073. echo json_encode(array('msg'=>'美国电话号码应为10/11位!','success'=>false));exit;
  1074. }
  1075. }
  1076. //减少代码复用吧
  1077. $lo_ret = $this->logic_order->checkEditExpress($post);
  1078. if($lo_ret['code'] != 1){
  1079. echo json_encode(array('msg'=>$lo_ret['msg'],'success'=>false));exit;
  1080. }
  1081. //检测PayPal有但是为空的情况
  1082. if(isset($post['paypal'])){
  1083. if(empty($post['paypal'])){
  1084. echo json_encode(array('msg'=>'交易号不可为空!','success'=>false));exit;
  1085. }
  1086. }else{
  1087. $tmp_info = $this->fullorder->read($post['id']);
  1088. if(empty($tmp_info)){
  1089. echo json_encode(array('msg'=>'订单信息异常','success'=>false));exit;
  1090. }
  1091. if(empty($tmp_info['paypal'])){
  1092. echo json_encode(array('msg'=>'交易号不可为空!','success'=>false));exit;
  1093. }
  1094. }
  1095. // if($post['express'] == 42 && $post['sbpm'] != 'Human Hair Wigs' && $post['sbpm'] != 'Human Hair Goods')//$post['express'] == 3 ||
  1096. // {
  1097. // echo json_encode(array('msg'=>'此快递方式必须选择Human Hair Wigs/Human Hair Goods!','success'=>false));exit;
  1098. // }
  1099. if($post['express'] == 24 && $post['sbpm'] != 'Hair Sample' && $post['sbpm'] != 'Human Hair Wigs' && $post['sbpm'] != 'Human Hair Goods')//$post['express'] == 3 ||
  1100. {
  1101. echo json_encode(array('msg'=>'此快递方式必须选择Hair Sample/Human Hair Wigs/Human Hair Goods!','success'=>false));exit;
  1102. }
  1103. // if($post['country'] != 192 && $post['express'] == 1 && $post['sbpm'] != 'Synthetic Hair Wigs' && $post['sbpm'] != 'Synthetic Hair Goods')//$post['express'] == 3 ||
  1104. // {
  1105. // echo json_encode(array('msg'=>'非美国选择官方DHL必须选择Synthetic Hair Wigs/Synthetic Hair Goods','success'=>false));exit;
  1106. // }
  1107. if($way == count($whlabeldata) && $post['type'] != 12)
  1108. {
  1109. echo json_encode(array('msg'=>'必须选择特殊仓!','success'=>false));exit;
  1110. }
  1111. if($way == '0' && $post['type'] == 12)
  1112. {
  1113. echo json_encode(array('msg'=>'特殊仓必须包含特殊仓货物!','success'=>false));exit;
  1114. }
  1115. $post['review'] = 1;
  1116. if($post['zsbjz'] < '0.01')
  1117. {
  1118. echo json_encode(array('msg'=>'总申报价错误!','success'=>false));exit;
  1119. }
  1120. if($data['library'] == 1)
  1121. {
  1122. if($data['print'] != 3)
  1123. {
  1124. $post['print'] = 1;
  1125. $post['libraryconfirm'] = 1;
  1126. $post['librarynot'] = "订单未打印,未审核或未通过";
  1127. }
  1128. else
  1129. {
  1130. $post['libraryconfirm'] = 1;
  1131. $post['librarynot'] = "订单被修改或重新提交";
  1132. }
  1133. }
  1134. if($data['yhs'] == 1)
  1135. {
  1136. echo json_encode(array('msg'=>'仓库货物验证中,请稍后再试!','success'=>false));exit;
  1137. }
  1138. if($post['express'] == 2 && (stripos($post['name'],'&') !== false || stripos($post['name'],"'") !== false))
  1139. {
  1140. echo json_encode(array('msg'=>'USPS收件人或公司名不可用特殊符号!','success'=>false));exit;
  1141. }
  1142. if(strlen($post['client']) > 34 || strlen($post['name']) > 34)//收件人姓名或公司名不允许超过35位
  1143. {
  1144. echo json_encode(array('msg'=>'收件人姓名或公司名不可超过34个字符!','success'=>false));exit;
  1145. }
  1146. if($post['express'] == '3' && $post['address2'] != '')//UPS不允许提交地址2
  1147. {
  1148. echo json_encode(array('msg'=>'UPS不允许提交地址2','success'=>false));exit;
  1149. }
  1150. if(($post['express'] == '5' || $post['express'] == '24' || $post['express'] == '42' || $post['express'] == '31') && $post['country'] != 192)
  1151. {
  1152. echo json_encode(array('msg'=>'非美国无法选择Fedex、DHL官方-美国!','success'=>false));exit;
  1153. }
  1154. if($post['express'] == '3' && $post['country'] != 192 && $post['country'] != 35)
  1155. {
  1156. echo json_encode(array('msg'=>'非美国和加拿大无法选择UPS!','success'=>false));exit;
  1157. }
  1158. if($post['country'] == 35 && $post['zsbjz'] > 20)
  1159. {
  1160. echo json_encode(array('msg'=>'加拿大最高申报不可超过20','success'=>false));exit;
  1161. }
  1162. if(($post['express'] == '28' || $post['express'] == '7') && $post['country'] != 191)
  1163. {
  1164. echo json_encode(array('msg'=>'非英国无法选择CNE和GES!','success'=>false));exit;
  1165. }
  1166. $express = $this->express->read($post['express']);
  1167. if($express['ioss'] == 1 && $post['ioss'] == '')
  1168. {
  1169. echo json_encode(array('msg'=>'此快递方式必须选择IOSS!','success'=>false));exit;
  1170. }
  1171. if(strlen($post['address']) > $express['addresssize'] || strlen($post['address2']) > $express['addresssize'])
  1172. {
  1173. echo json_encode(array('msg'=>'此快递地址不可超出'.$express['addresssize'].'个字符','success'=>false));exit;
  1174. }
  1175. if(strlen($post['address']) < 5)
  1176. {
  1177. echo json_encode(array('msg'=>'地址不可留空!','success'=>false));exit;
  1178. }
  1179. if(($express['sbjz'] > 0) && ($post['zsbjz'] > $express['sbjz']))
  1180. {
  1181. echo json_encode(array('msg'=>'总申报价值不可超出'.$express['sbjz'],'success'=>false));exit;
  1182. }
  1183. if($post['shouldmoney'] > $express['shouldmoney'] && $express['shouldmoney'] != 0)
  1184. {
  1185. echo json_encode(array('msg'=>'订单金额不可超出'.$express['shouldmoney'],'success'=>false));exit;
  1186. }
  1187. if($post['express'] == '2' && $post['zzl'] > '16' && isset($post['js']) && $post['js'] == '0')
  1188. {
  1189. echo json_encode(array('msg'=>'重量大于16不可按Ground Advantage提交!','success'=>false));exit;
  1190. }
  1191. // if($post['express'] == '2' && isset($post['js']) && $post['js'] == '0'&& $post['qm'] == '1')
  1192. // {
  1193. // echo json_encode(array('msg'=>'Ground Advantage不可使用签名服务!','success'=>false));exit;
  1194. // }
  1195. if(isset($post['bx']))
  1196. {
  1197. if($post['express'] == '99' && $post['bx'] > 0)
  1198. {
  1199. echo json_encode(array('msg'=>'此物流不允许购买保险','success'=>false));exit;
  1200. }
  1201. }
  1202. if(($post['express'] == '3' || $post['express'] == '42' || $post['express'] == '24') && $post['shouldmoney'] < 1)
  1203. {
  1204. //echo json_encode(array('msg'=>'零金额订单不可发 UPS/DHL官方-美国/Fedex(杭州)','success'=>false));exit;
  1205. }
  1206. if($post['express'] == '42' && $post['zsbjz'] < 1)
  1207. {
  1208. echo json_encode(array('msg'=>'零申报金额不可发 DHL官方-美国','success'=>false));exit;
  1209. }
  1210. if($post['express'] == '6' && $post['province'] == '')
  1211. {
  1212. echo json_encode(array('msg'=>'选择DPEX必须填写州信息','success'=>false));exit;
  1213. }
  1214. if(($post['express'] == '24' || $post['express'] == '3') && $post['shouldmoney'] == 0)
  1215. {
  1216. echo json_encode(array('msg'=>'0金额订单不可发UPS/Fedex(杭州)!!!','success'=>false));exit;
  1217. }
  1218. if($post['country'] == '35' && $post['zsbjz'] > 20)
  1219. {
  1220. echo json_encode(array('msg'=>'加拿大不可申报超过20美金!!!','success'=>false));exit;
  1221. }
  1222. if($post['printtype'] == 1)//如果是运单
  1223. {
  1224. $post['productdescription'] = $this->input->post('productdescription',true);
  1225. $post['customs'] = $this->input->post('customs',true);
  1226. }
  1227. if($post['express'] == 2 && strlen($post['zipcode']) != 5)//如果usps 邮编不是5位
  1228. {
  1229. echo json_encode(array('msg'=>'USPS-USA的邮编需按5位数格式提交!','success'=>false));exit;
  1230. }
  1231. if(strlen($post['phone']) > 11 && $post['express'] == 63)
  1232. {
  1233. echo json_encode(array('msg'=>'美国联邦,电话号码不允许超过11位!','success'=>false));exit;
  1234. }
  1235. /**
  1236. if($post['paypal'] != '')
  1237. {
  1238. $pp = $this->fullorder->get_paypal($post['paypal']);
  1239. if(isset($pp['number']) && $pp['number'] != $data['number'])
  1240. {
  1241. echo json_encode(array('msg'=>'此交易号的订单已存在!-'.$pp['number'],'success'=>false));exit;
  1242. }
  1243. }
  1244. **/
  1245. /**
  1246. if($editstate == 216 && $data['state'] != 216)
  1247. {
  1248. echo json_encode(array('msg'=>'不可修改为完成状态','success'=>false));exit;
  1249. }
  1250. **/
  1251. $post['review'] = $data['review'];
  1252. $post['state'] = $editstate;
  1253. if($editstate == 216)
  1254. {
  1255. foreach ($post as $k=>$v)
  1256. {
  1257. 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')
  1258. {
  1259. continue;
  1260. }
  1261. else
  1262. {
  1263. //当时不知道为会把 当前不可修改订单信息 给注释掉 但是 如果注释掉 这个判断就没意义了 还引起了报错 我这里就注释掉了
  1264. // if($v != $data[$k])
  1265. // {
  1266. // //echo json_encode(array('msg'=>'当前不可修改订单信息','cs'=>$k,'success'=>false));exit;
  1267. // }
  1268. }
  1269. }
  1270. }
  1271. /**
  1272. if($editstate == 216 && $post['waybill'] != '' && $data['waybill'] != '')//if($editstate == 216 && preg_match('/\d/is',$post['waybill']) != true)
  1273. {
  1274. echo json_encode(array('msg'=>'当前信息不可修改订单状态','success'=>false));exit;
  1275. }
  1276. else
  1277. {
  1278. $post['review'] = $data['review'];
  1279. $post['state'] = $editstate;
  1280. }
  1281. **/
  1282. $thisdata = $this->fullorder->read($id);
  1283. $warehouse = $this->warehouse->read($thisdata['type']);
  1284. $warehousenew = $this->warehouse->read($post['type']);
  1285. if($warehousenew['bdcountry'] != 0 && $post['country'] != $warehousenew['bdcountry'])
  1286. {
  1287. echo json_encode(array('msg'=>'当前国家无法选择'.$warehousenew['title'].'!','success'=>false));exit;
  1288. }
  1289. if(($warehouse['zd'] == '1' || stripos($thisdata['whlabel'],'z|') !== false) && $thisdata['library'] == '2' && $post['type'] != $thisdata['type'])//如果已出库并且开启库存模式仓库或者有特殊库存,禁止调整仓库
  1290. {
  1291. echo json_encode(array('msg'=>'此单已占用库存并出库,无法更改仓库!','success'=>false));exit;
  1292. }
  1293. $expt = $this->express->read($post['express']);
  1294. if($expt['pt'] != '' && stripos($post['fpdata'],$expt['pt']) !== false)
  1295. {
  1296. echo json_encode(array('msg'=>$expt['ptts'],'success'=>false));exit;
  1297. }
  1298. if($expt['province'] != '' && stripos($expt['province'],$post['province'].'、') !== false)
  1299. {
  1300. echo json_encode(array('msg'=>'此省/州不可使用 '.$expt['servicename'],'success'=>false));exit;
  1301. }
  1302. /**
  1303. if($warehouse['zd'] == '1' && $warehouse['ys'] != '1' && $thisdata['library'] == '2' && $post['fpdata'] != $thisdata['fpdata'])
  1304. {
  1305. echo json_encode(array('msg'=>'已扣减库存,无法更改产品!','success'=>false));exit;
  1306. }
  1307. **/
  1308. //开始注释 xyxg
  1309. /**
  1310. $ft = array();
  1311. $ftdata = explode('|',rtrim($fpcount,'|'));
  1312. foreach ($ftdata as $va)
  1313. {
  1314. $ftitle = '';
  1315. $va = explode('-',trim($va,'-'));
  1316. foreach ($va as $v)
  1317. {
  1318. $v = $this->typeclass->read($v);
  1319. $ftitle .= $v['title'].' ';
  1320. }
  1321. $ft[] = rtrim($ftitle,' ');
  1322. }
  1323. if($data['library'] == 1)
  1324. {
  1325. $tqkcyz = $this->_kcyz($post['type'],$whlabel,$id,$data['shop'],$data['number']);
  1326. if(isset($tqkcyz[0]))
  1327. {
  1328. echo json_encode(array('t'=>2,'msg'=>"红色商品名库存匹配错误或库存不够扣减",'error'=>$tqkcyz,'success'=>false));exit;
  1329. }
  1330. if(stripos($whlabel,'z|') !== false || stripos($thisdata['whlabel'],'z|') !== false)
  1331. {
  1332. $tskcyz = $this->specialstock->get_kc($thisdata['state'],$post['state'],$whlabel,$thisdata['whlabel'],$thisdata['number']);
  1333. if($tskcyz['t'] > '0')
  1334. {
  1335. echo $tskcyz['m'];exit;
  1336. }
  1337. }
  1338. $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']);//旧状态、新状态、仓库占单设置、仓库预设设置、新仓库、新产品简化数字、旧产品数字、旧产品名称、订单号、订单店铺、旧订单仓库、旧产品简化数字
  1339. if($kcyz['t'] > '0')
  1340. {
  1341. echo $kcyz['m'];exit;
  1342. }
  1343. }
  1344. //结束注释
  1345. **/
  1346. /** 重新写产品名称
  1347. $dtctitle = array();
  1348. $dictionaries = $this->typeclass->find_all();
  1349. foreach ($dictionaries as $v)
  1350. {
  1351. $dtctitle[$v['id']] = array($v['title'],$v['bqsku']);
  1352. }
  1353. if(stripos($fpdata,'-128-') !== false || stripos($fpdata,'-127-') !== false)
  1354. {
  1355. $dfp = explode(';',trim($fpdata,';'));
  1356. $fdata = '';
  1357. foreach ($dfp as $k=>$v)
  1358. {
  1359. $ptitleb = '';
  1360. $fp = explode('|',trim($v,'|'));
  1361. $fp0 = explode(',',$fp[0]);
  1362. $fp1 = explode('-',trim($fp0[1],'-'));
  1363. foreach ($fp1 as $vv)
  1364. {
  1365. $ptitleb .= isset($dtctitle[$vv])?$dtctitle[$vv][0].' ':'';
  1366. }
  1367. $ptitleb .= $dtctitle[$fp0[0]][1].'inch ';
  1368. $fp[1] = $ptitleb;
  1369. $fdata .= implode("|",$fp).";";
  1370. }
  1371. $fpdata = $fdata;
  1372. }
  1373. **/
  1374. $warehouse = $this->warehouse->read($post['type']);
  1375. //未出库或者(已退库并且订单的状态不是等待买家收货和代发货状态)
  1376. if($data['library'] == 1 || ($data['library'] != 2 && ($post['state'] != '207' || $post['state'] == '209')))
  1377. {
  1378. // echo "<pre>";
  1379. // var_dump($post['state']);
  1380. // var_dump($warehouse);
  1381. // var_dump($thisdata['shop']);
  1382. // var_dump($thisdata['number']);
  1383. // var_dump($whlabel);
  1384. // var_dump($fpdata);
  1385. // die;
  1386. $kcyz = $this->ck->get_kc($post['state'],$warehouse,$thisdata['shop'],$thisdata['number'],$whlabel,$fpdata);
  1387. if($kcyz['t'] > '0')
  1388. {
  1389. echo $kcyz['m'];exit;
  1390. }
  1391. else if($kcyz['fpdata'] != '')
  1392. {
  1393. $post['whlabel'] = $kcyz['whlabel'];
  1394. $post['fpdata'] = $kcyz['fpdata'];
  1395. }
  1396. }
  1397. $fl = $this->ck->get_fl($warehouse['hz'],$whlabel,$fpdata);
  1398. $post['sfxh'] = $fl['sfxh'];
  1399. $post['ckfl'] = $fl['ckfl'];
  1400. //查询净重开始
  1401. $post['jweight'] = $this->weight->get_weightcx($post['fpdata']);
  1402. unset($post[0]);
  1403. //查询净重结束
  1404. if($this->fullorder->save($post,$id))
  1405. {
  1406. if($data['printtime'] == '0')
  1407. {
  1408. $xghz = ',将自动禁止打印';
  1409. }
  1410. else if($data['printtime'] > '0' && $data['librarytime'] == '0')
  1411. {
  1412. $q = '';
  1413. if($data['libraryconfirm'] == 1)
  1414. {
  1415. $q = ',<em style="color: #F00;">改前状态为:禁止出库</em>';
  1416. }
  1417. $xghz = ',将自动禁止发货'.$q;
  1418. }
  1419. else
  1420. {
  1421. $xghz = '';
  1422. }
  1423. echo json_encode(array('msg'=>'修改成功'.$xghz,'id'=>$id,'success'=>true));exit;
  1424. }
  1425. else
  1426. {
  1427. echo json_encode(array('msg'=>'修改失败,请重试','success'=>false));exit;
  1428. }
  1429. }
  1430. $this->data['vip'] = $vip;
  1431. $arg_array = $arg_array[0];$fpdata = array();
  1432. $fullorder = $this->fullorder->read($arg_array);
  1433. $returngoods = $this->returngoods->get_orderinfo($fullorder['orderinfo']);
  1434. $this->data['returngoods'] = 0;
  1435. if(!empty($returngoods)){
  1436. if($returngoods['status'] != 120){
  1437. $this->data['returngoods'] = 1;
  1438. }
  1439. }
  1440. $fullorder['parameter'] = str_replace(",","---",$fullorder['parameter']);
  1441. $country = $this->country->find_all('1=1','id,name','name asc');//所有国家信息
  1442. $express = $this->express->find_all('1=1');//所有快递配置信息
  1443. $this->data['fullorder'] = $fullorder;
  1444. if($fullorder['express'] == 2)
  1445. {
  1446. $zzhl = 'oz';
  1447. }
  1448. else
  1449. {
  1450. $zzhl = 'kg';
  1451. }
  1452. $this->data['zzhl'] = $zzhl;
  1453. $this->data['country'] = $country;
  1454. $this->data['express'] = $express;
  1455. $this->data['dtime'] = date('Y-m-d H:i:s',$fullorder['dtime']);
  1456. $warehouse = $this->warehouse->read($fullorder['type']);
  1457. if(stripos($fullorder['fpdata'],';') !== false)
  1458. {
  1459. $fpdata = explode(';',rtrim($fullorder['fpdata'],';'));
  1460. foreach ($fpdata as $k=>$v)
  1461. {
  1462. $xxv = explode('|',$v);
  1463. if(isset($xxv[9]) && stripos($xxv[9],$warehouse['hz']) !== false && $warehouse['hz'] != '' && $warehouse['zd'] == 1)
  1464. {
  1465. $xxv['zd'] = "<p>已占单</p>";
  1466. $bdck = $warehouse['bdck'];
  1467. if(stripos($xxv[9],'~') !== false)
  1468. {
  1469. $dxxv = explode('~',trim($xxv[9],'~'));
  1470. foreach ($dxxv as $val)
  1471. {
  1472. $wzid = $this->$bdck->read(trim($val,$warehouse['hz']));
  1473. if($wzid['details'] != '')
  1474. {
  1475. $xxv['zd'] .= '<p>位置:'.$wzid['details'].' - '.$wzid['cpid'].'</p>';
  1476. }
  1477. }
  1478. }
  1479. else
  1480. {
  1481. $wzid = $this->$bdck->read(trim($xxv[9],$warehouse['hz']));
  1482. if($wzid['details'] != '')
  1483. {
  1484. $xxv['zd'] .= '<p>位置:'.$wzid['details'].' - '.$wzid['cpid'].'</p>';
  1485. }
  1486. }
  1487. }
  1488. $fpdata[$k] = $xxv;
  1489. }
  1490. }
  1491. $fpdata = $this->logic_order->checkOrderProduct($fpdata);
  1492. // $tmp_features = array_column($fpdata,0);
  1493. // $do_trans_pms = [];
  1494. // foreach ($tmp_features as $k=>$v) {
  1495. // if(strpos($v,",") === false){
  1496. // $do_trans_pms[] = [
  1497. // 'features'=>$v
  1498. // ];
  1499. // }else{
  1500. // $tmp_arr = explode(",",$v);
  1501. // $do_trans_pms[] = [
  1502. // 'features'=>$tmp_arr[1].$tmp_arr[0]."-"
  1503. // ];
  1504. // }
  1505. // }
  1506. // $r = $this->logic_whlabel->dataTran($do_trans_pms,['pm']);
  1507. // foreach ($fpdata as $k=>$v) {
  1508. // $fpdata[$k]['pm'] = $r[$k]['pm'];
  1509. // }
  1510. $this->data['fpdata'] = $fpdata;
  1511. $thfpdataxs = array();
  1512. if($fullorder['thfpdata'] != '')
  1513. {
  1514. $thfpdata = explode(';',trim($fullorder['thfpdata'],';'));
  1515. foreach ($thfpdata as $k=>$v)
  1516. {
  1517. $thxs = explode('~',trim($v,'~'));
  1518. $thxs[0] = explode('|',trim($thxs[0],'|'));
  1519. $thxs[1] = explode('|',trim($thxs[1],'|'));
  1520. $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]);
  1521. }
  1522. }
  1523. $this->data['thfpdata'] = $thfpdataxs;
  1524. $shop = $this->shop->read($fullorder['shop']);
  1525. $this->data['et'] = $shop['estimaterate'];//此店铺配置预计到帐金额比例
  1526. $is = 0;
  1527. if($shop['type'] == 269 || $shop['type'] == 2768)//判断是否独立站,269是独立站
  1528. {
  1529. $is = 1;
  1530. }
  1531. $this->data['is'] = $is;
  1532. if(isset($_SESSION['api']))
  1533. {
  1534. $user = $this->user->get_api($_SESSION['api']);
  1535. if($user['vip'] == 1)
  1536. {
  1537. $vip = 1;
  1538. }
  1539. else
  1540. {
  1541. $vip = 0;
  1542. }
  1543. }
  1544. else
  1545. {
  1546. $vip = 0;
  1547. }
  1548. $this->data['power'] = $vip;
  1549. /** 历史运单号展示并下载PDF 打印时间需要2019-3-21 0点之后有记录 **/
  1550. $downwaybill = '';$dwls = array();
  1551. $oldwaybill = explode('-',ltrim($fullorder['oldwaybill'],'-'));
  1552. if(isset($oldwaybill[0][1]))
  1553. {
  1554. $oldwaybill = array_reverse($oldwaybill); //调整顺序
  1555. foreach ($oldwaybill as $v)
  1556. {
  1557. $dw = explode('/',$v);
  1558. if(isset($dw[1]))
  1559. {
  1560. if(stripos($downwaybill,$dw[1]) === false)
  1561. {
  1562. $dwls[$dw[1]] = 1;
  1563. $downwaybill .= '<a href="/data/pdf/'.$dw[0].'/y-'.$dw[1].'.pdf" target="_blank">'.$dw[1].'</a>、';
  1564. }
  1565. }
  1566. }
  1567. }
  1568. if($fullorder['printtype'] == 1)
  1569. {
  1570. if($fullorder['waybill'] != '' && !isset($dwls[$fullorder['waybill']]))
  1571. {
  1572. $downwaybill = '<a href="/data/pdf/'.date('Ymd',$fullorder['printtime']).'/y-'.$fullorder['waybill'].'.pdf" target="_blank">'.$fullorder['waybill'].'</a>、'.$downwaybill;
  1573. }
  1574. }
  1575. $this->data['downwaybill'] = rtrim($downwaybill,'、');
  1576. /** 历史打印时间 **/
  1577. $printtime = '';
  1578. if($fullorder['oldprinttime'])
  1579. {
  1580. $pte = explode('-',rtrim($fullorder['oldprinttime'],'-'));
  1581. foreach ($pte as $v)
  1582. {
  1583. if(!empty($v)){
  1584. $printtime .= date('Y-m-d H:i:s',$v).'、';
  1585. }
  1586. }
  1587. }
  1588. $this->data['printtime'] = rtrim($printtime,'、');
  1589. $product = '';
  1590. $fullorder['product'] = str_replace("'","",$fullorder['product']);
  1591. if($fullorder['link'] != '' && $fullorder['source'] != '1')
  1592. {
  1593. $pt = explode(',',$fullorder['product']);
  1594. $lk = explode(',',$fullorder['link']);
  1595. for($i=0;$i<count($pt);$i++)
  1596. {
  1597. if(isset($lk[$i]))
  1598. {
  1599. $octs = $this->colourorderts->get_texturl($pt[$i],$lk[$i]);
  1600. }
  1601. else
  1602. {
  1603. $octs = '';
  1604. }
  1605. $a = $octs?'<font style="color:#'.$octs['colour'].'">'.$pt[$i].'</font>':$pt[$i];
  1606. //$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];
  1607. if(isset($lk[$i]))
  1608. {
  1609. $product .= ($product != '')?' , <a href="'.$lk[$i].'" target="_blank">'.$a.'</a>':'<a href="'.$lk[$i].'" target="_blank">'.$a.'</a>';
  1610. }
  1611. else
  1612. {
  1613. $product .= ($product != '')?' , '.$a:$a;
  1614. }
  1615. }
  1616. }
  1617. else
  1618. {
  1619. $octs = $this->colourorderts->get_text($fullorder['product']);
  1620. $a = $octs?'<font style="color:#F39">'.$fullorder['product'].'</font>':$fullorder['product'];
  1621. //$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'];
  1622. $product = $a;
  1623. }
  1624. $this->data['product'] = $product;
  1625. $out = $this->systemtransfer->find_all("number = '".$fullorder['number']."'");
  1626. $outread = '';
  1627. if($out)
  1628. {
  1629. foreach ($out as $val)
  1630. {
  1631. $list = '';
  1632. $rk = explode('|',trim($val['rk'],'|'));
  1633. $rktime = explode('|',trim($val['rktime'],'|'));
  1634. $zw = array();
  1635. $t = $this->transfer->find_all("1=1");
  1636. foreach ($t as $v)
  1637. {
  1638. $zw[$v['id']] = $v['title'];
  1639. }
  1640. if($val['rk'] != '' && count($rk) > 0)
  1641. {
  1642. for($i=0;$i<count($rk);$i++)
  1643. {
  1644. if(!isset($rktime[$i]))
  1645. {
  1646. if(isset($cz[$i]))
  1647. {
  1648. $list .= $zw[$cz[$i]];
  1649. }
  1650. }
  1651. else
  1652. {
  1653. $list .= $zw[$rk[$i]].' :'.date('Y-m-d H:i',$rktime[$i]).',';
  1654. }
  1655. }
  1656. }
  1657. $outread .= '<span style="color:#f00">'.$val['shipremarks'].'</span>:'.$list.'<br>';
  1658. //$outread .= '<span style="color:#f00">'.$val['pm'].'</span>:'.$list.'<br>';
  1659. }
  1660. }
  1661. else
  1662. {
  1663. $systemwigsout = $this->systemwigsout->find_all("number = '".$fullorder['number']."'");
  1664. $outread = array();
  1665. if($systemwigsout)
  1666. {
  1667. foreach ($systemwigsout as $v)
  1668. {
  1669. if($v['czwarehouse'] == 37)
  1670. {
  1671. $outread[] = '华荣厂';
  1672. }
  1673. else if($v['czwarehouse'] == 0)
  1674. {
  1675. $outread[] = '龙盈厂';
  1676. }
  1677. $cz = explode('|',trim($v['cz'],'|'));
  1678. $cztime = explode('|',trim($v['cztime'],'|'));
  1679. $zw = $this->transfer->get_list();
  1680. if($v['cz'] != '' && count($cz) > 0)
  1681. {
  1682. for($i=0;$i<count($cz);$i++)
  1683. {
  1684. if(!isset($cztime[$i]))
  1685. {
  1686. $outread[] = $zw[$cz[$i]].' -&gt; ';
  1687. }
  1688. else
  1689. {
  1690. $outread[] = $zw[$cz[$i]].' :'.date('Y-m-d H:i',$cztime[$i]).' -&gt; ';
  1691. }
  1692. }
  1693. $outread[] = '<br>';
  1694. }
  1695. }
  1696. }
  1697. }
  1698. $klarnacolor = '';
  1699. if($fullorder['klarnadata'] !='')
  1700. {
  1701. $klarnadata = explode('|',$fullorder['klarnadata']);
  1702. if($klarnadata[0] == 'paypal' || $klarnadata[0] == 'stripe')
  1703. {
  1704. $klarnadata[1] = json_decode($klarnadata[1],true);
  1705. if($klarnadata[0] == 'stripe' && $klarnadata[1]['shouldmoney'] != $fullorder['shouldmoney'] && $fullorder['pay'] == 1211)
  1706. {
  1707. $klarnacolor = 'style="color:#F00"';
  1708. }
  1709. }
  1710. else if($klarnadata[0]!=1 && $fullorder['pay']!=26 && $fullorder['pay']!=27 && $fullorder['pay']!=1211)
  1711. {
  1712. $klarnacolor = 'style="color:#F00"';
  1713. }
  1714. if($fullorder['pay'] == 23)//klarna
  1715. {
  1716. $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');
  1717. $ToState = array_flip($ToState);
  1718. $klarnadata3 = str_replace(' ','',$klarnadata[3]);
  1719. $city = str_replace(' ','',$fullorder['city']);
  1720. $klarnadataaddress = explode($city,$klarnadata3);
  1721. if(isset($klarnadataaddress[1]))
  1722. {
  1723. $klarnadata3 = $city.$klarnadataaddress[1];
  1724. $klarnadatacolor = explode(',',$klarnadata3);
  1725. unset($klarnadatacolor[4]);
  1726. unset($klarnadatacolor[6]);
  1727. if(isset($ToState[$klarnadatacolor[1]]))
  1728. {
  1729. $klarnadatacolor[1] = ucwords($ToState[$klarnadatacolor[1]]);
  1730. }
  1731. $klarnadata['color'] = $klarnadataaddress[0].implode(",",$klarnadatacolor);
  1732. }
  1733. else
  1734. {
  1735. $klarnadata['color'] = $klarnadata3;
  1736. }
  1737. }
  1738. }
  1739. else
  1740. {
  1741. $klarnadata = '';
  1742. }
  1743. $p = explode('-',$fullorder['paypal']);
  1744. $this->data['klarnacolor'] = $klarnacolor;
  1745. $this->data['klarnadata'] = $klarnadata;
  1746. $this->data['systemwigsout'] = $outread;
  1747. $quantity = explode(';',trim($fullorder['quantity'],';'));
  1748. $qc = 0;
  1749. foreach ($quantity as $v)
  1750. {
  1751. if($v > 1)
  1752. {
  1753. $qc += 1;
  1754. }
  1755. }
  1756. $this->data['qc'] = $qc;
  1757. //新增row_total和sub_total
  1758. $product_ids = $row_total = $sub_total = "";
  1759. if(!empty($fullorder['extra_price'])){
  1760. $extra_price = json_decode($fullorder['extra_price'],true);
  1761. foreach($extra_price as $k=>$v){
  1762. $row_total .= sprintf("%.2f",($v['qty']* $v['price'])).";";
  1763. $sub_total .= sprintf("%.2f",$v['sub_total']).";";
  1764. if(!empty($v['product_id'])){
  1765. $product_ids .= $v['product_id'].";";
  1766. }
  1767. }
  1768. }
  1769. $this->data['row_total'] = trim($row_total,";");
  1770. $this->data['sub_total'] = trim($sub_total,";");
  1771. $this->data['product_ids'] = trim($product_ids,";");
  1772. $this->_Template('fullorder_edit',$this->data);
  1773. }
  1774. //不可修改
  1775. public function _readonly($arg_array)
  1776. {
  1777. $post = $this->input->post(NULL, TRUE);
  1778. if(isset($post['id']))
  1779. {
  1780. $id = $this->input->post('id',true);
  1781. $ud = $this->fullorder->read($id);
  1782. $post['type'] = $this->input->post('warehouse',true);
  1783. $post['orderremarks'] = $this->input->post('orderremarks',true);
  1784. $post['state'] = $this->input->post('state',true);
  1785. $post['msg'] = $this->input->post('msg',true);
  1786. $post['refundy'] = $this->input->post('refundy',true);
  1787. $post['refundj'] = $this->input->post('refundj',true);
  1788. $fpdata = $this->input->post('fpdata');
  1789. $fpdata = str_replace(array('%26','%2B'),array('&','+'),$fpdata);
  1790. $post['fpdata'] = $fpdata;
  1791. $rtime = $this->input->post('rtime',true);
  1792. $post['rtime'] = strtotime($rtime);
  1793. $post['rpaypal'] = $this->input->post('rpaypal',true);
  1794. $post['rtext'] = $this->input->post('rtext',true);
  1795. $post['express'] = $this->input->post('express',true);
  1796. $whlabel = $this->input->post('whlabel',true);
  1797. //$post['ioss'] = $this->input->post('ioss',true);
  1798. $post['edittime'] = time();
  1799. $editstate = $post['state'];
  1800. if(!$editstate)
  1801. {
  1802. $editstate = $ud['state'];
  1803. $post['state'] = $editstate;
  1804. }
  1805. /**
  1806. if($post['state'] == 216 && $ud['state'] != 216)
  1807. {
  1808. echo json_encode(array('msg'=>'不可修改为完成状态','success'=>false));exit;
  1809. }
  1810. **/
  1811. $whlabeldata = explode('|',trim($whlabel,'|'));$way = 0;
  1812. foreach ($whlabeldata as $va)
  1813. {
  1814. if(stripos($va,'z') !== false)
  1815. {
  1816. $way += 1;
  1817. }
  1818. }
  1819. 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))
  1820. {
  1821. echo json_encode(array('msg'=>'此快递方式必须选择美仓!','success'=>false));exit;
  1822. }
  1823. if($way == count($whlabeldata) && $post['type'] != 12)
  1824. {
  1825. echo json_encode(array('msg'=>'必须选择特殊仓!','success'=>false));exit;
  1826. }
  1827. if($way == '0' && $post['type'] == 12)
  1828. {
  1829. echo json_encode(array('msg'=>'特殊仓必须包含特殊仓货物!','success'=>false));exit;
  1830. }
  1831. $fpcount = $this->input->post('fpcount',true);
  1832. if(!$fpcount)
  1833. {
  1834. echo json_encode(array('msg'=>'需要先清理浏览器缓存,刷新当前页面后再试!','success'=>false));exit;
  1835. }
  1836. if($ud['library'] == 1)
  1837. {
  1838. if($ud['print'] != 3)
  1839. {
  1840. $post['print'] = 1;
  1841. $post['libraryconfirm'] = 1;
  1842. $post['librarynot'] = "订单未打印,未审核或未通过";
  1843. }
  1844. else
  1845. {
  1846. $post['libraryconfirm'] = 1;
  1847. $post['librarynot'] = "订单被重新提交";
  1848. }
  1849. }
  1850. if(($post['express'] == '5' || $post['express'] == '24' || $post['express'] == '42' || $post['express'] == '31') && $ud['country'] != 192)
  1851. {
  1852. echo json_encode(array('msg'=>'非美国无法选择Fedex、DHL官方-美国!','success'=>false));exit;
  1853. }
  1854. if($post['express'] == '3' && $ud['country'] != 192 && $ud['country'] != 35)
  1855. {
  1856. echo json_encode(array('msg'=>'非美国和加拿大无法选择UPS!','success'=>false));exit;
  1857. }
  1858. if(($post['express'] == '28' || $post['express'] == '7') && $ud['country'] != 191)
  1859. {
  1860. echo json_encode(array('msg'=>'非英国无法选择CNE和GES!','success'=>false));exit;
  1861. }
  1862. $express = $this->express->read($post['express']);
  1863. /**
  1864. if($express['ioss'] == 1 && $post['ioss'] == '')
  1865. {
  1866. echo json_encode(array('msg'=>'此快递方式必须选择IOSS!','success'=>false));exit;
  1867. }
  1868. **/
  1869. $thisdata = $this->fullorder->read($id);
  1870. $warehouse = $this->warehouse->read($thisdata['type']);
  1871. $warehousenew = $this->warehouse->read($post['type']);
  1872. if(($warehouse['zd'] == '1' || stripos($thisdata['whlabel'],'z|') !== false) && $thisdata['library'] == '2' && $post['type'] != $thisdata['type'])//如果已出库并且开启库存模式仓库或者有特殊库存,禁止调整仓库
  1873. {
  1874. echo json_encode(array('msg'=>'此单已占用库存并出库,无法更改仓库!','success'=>false));exit;
  1875. }
  1876. if($ud['yhs'] == 1)
  1877. {
  1878. echo json_encode(array('msg'=>'仓库货物验证中,请稍后再试!','success'=>false));exit;
  1879. }
  1880. $expt = $this->express->read($post['express']);
  1881. if($expt['pt'] != '' && stripos($post['fpdata'],$expt['pt']) !== false)
  1882. {
  1883. echo json_encode(array('msg'=>$expt['ptts'],'success'=>false));exit;
  1884. }
  1885. if($expt['province'] != '' && stripos($expt['province'],$ud['province'].'、') !== false)
  1886. {
  1887. echo json_encode(array('msg'=>'此省/州不可使用 '.$expt['servicename'],'success'=>false));exit;
  1888. }
  1889. if($post['type'] != 5 && in_array($post['express'],[2,63,64,81]))
  1890. {
  1891. echo json_encode(array('msg'=>"此快递方式必须从美仓发货!",'success'=>false));exit;
  1892. }
  1893. if($post['type'] == 5 && !in_array($post['express'],[2,63,64,81]))
  1894. {
  1895. echo json_encode(array('msg'=>"此快递方式不能美仓发货!",'success'=>false));exit;
  1896. }
  1897. /**
  1898. if($warehouse['zd'] == '1' && $warehouse['ys'] != '1' && $thisdata['library'] == '2' && $post['fpdata'] != $thisdata['fpdata'])
  1899. {
  1900. echo json_encode(array('msg'=>'已扣减库存,无法更改产品!','success'=>false));exit;
  1901. }
  1902. **/
  1903. /**
  1904. if($warehousenew['zd'] == '1' && $editstate != $thisdata['state'] && $thisdata['library'] == '1')//如果提交的仓库开启库存模式并且更改订单状态并且未出库,那么拒绝
  1905. {
  1906. echo json_encode(array('msg'=>'如需更改订单状态,请先把仓库选择为非开启库存模式仓库或等待订单出库!','success'=>false));exit;
  1907. }
  1908. if($warehousenew['zd'] == '1' && $editstate != '207' && $thisdata['library'] == '1')//如果提交的仓库开启库存模式并且更改订单状态并且未出库,那么拒绝
  1909. {
  1910. echo json_encode(array('msg'=>'非待发货状态,不允许修改为开启库存模式仓库','success'=>false));exit;
  1911. }
  1912. **/
  1913. //开始注释 xyxg
  1914. /**
  1915. $ft = array();
  1916. $ftdata = explode('|',rtrim($fpcount,'|'));
  1917. foreach ($ftdata as $va)
  1918. {
  1919. $ftitle = '';
  1920. $va = explode('-',trim($va,'-'));
  1921. foreach ($va as $v)
  1922. {
  1923. $v = $this->typeclass->read($v);
  1924. $ftitle .= $v['title'].' ';
  1925. }
  1926. $ft[] = rtrim($ftitle,' ');
  1927. }
  1928. $user = $this->user->get_api($_SESSION['api']);
  1929. if($ud['library'] == 1)
  1930. {
  1931. $tqkcyz = $this->_kcyz($post['type'],$whlabel,$id,$ud['shop'],$ud['number']);
  1932. if(isset($tqkcyz[0]))
  1933. {
  1934. echo json_encode(array('t'=>2,'msg'=>"红色商品名库存匹配错误或库存不够扣减",'error'=>$tqkcyz,'success'=>false));exit;
  1935. }
  1936. if(stripos($whlabel,'z|') !== false || stripos($thisdata['whlabel'],'z|') !== false)
  1937. {
  1938. $tskcyz = $this->specialstock->get_kc($thisdata['state'],$post['state'],$whlabel,$thisdata['whlabel'],$thisdata['number']);
  1939. if($tskcyz['t'] > '0')
  1940. {
  1941. echo $tskcyz['m'];exit;
  1942. }
  1943. }
  1944. $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']);//旧状态、新状态、仓库占单设置、仓库预设设置、新仓库、新产品简化数字、旧产品数字、旧产品名称、订单号、订单店铺、旧订单仓库、旧产品简化数字
  1945. if($kcyz['t'] > '0')
  1946. {
  1947. echo $kcyz['m'];exit;
  1948. }
  1949. }
  1950. //结束注释
  1951. **/
  1952. // $post['fpdata'] = preg_replace('/\s+/', '', $post['fpdata']);str_replace(" ", "", ); // 去除所有空格
  1953. // $post['fpdata'] = str_replace(array("\r", "\n"), "", $post['fpdata']);
  1954. // $ud['fpdata'] = str_replace(" ", "", $ud['fpdata']); // 去除所有空格
  1955. // $ud['fpdata'] = str_replace(array("\r", "\n"), "", $ud['fpdata']);
  1956. if($ud['estimaterate'] == 1){
  1957. $post['budget'] = $ud['shouldmoney'];
  1958. }
  1959. if($ud['state'] == 216 && $post['whlabel'] != $ud['whlabel'])
  1960. {
  1961. echo json_encode(array('msg'=>'商品信息需要找梦体修改','success'=>false));exit;
  1962. }
  1963. $warehouse = $this->warehouse->read($post['type']);
  1964. if($ud['library'] == 1 || ($ud['library'] != 2 && ($post['state'] != '207' || $post['state'] == '209')))
  1965. {
  1966. $kcyz = $this->ck->get_kc($post['state'],$warehouse,$thisdata['shop'],$thisdata['number'],$whlabel,$fpdata);
  1967. if($kcyz['t'] > '0')
  1968. {
  1969. echo $kcyz['m'];exit;
  1970. }
  1971. else if($kcyz['fpdata'] != '')
  1972. {
  1973. $post['whlabel'] = $kcyz['whlabel'];
  1974. $post['fpdata'] = $kcyz['fpdata'];
  1975. }
  1976. }
  1977. $fl = $this->ck->get_fl($warehouse['hz'],$whlabel,$fpdata);
  1978. $post['sfxh'] = $fl['sfxh'];
  1979. $post['ckfl'] = $fl['ckfl'];
  1980. //查询净重开始
  1981. $post['jweight'] = $this->weight->get_weightcx($post['fpdata']);
  1982. //查询净重结束
  1983. if($this->fullorder->save($post,$id))
  1984. {
  1985. if($ud['printtime'] == '0')
  1986. {
  1987. $xghz = ',将自动禁止打印';
  1988. }
  1989. else if($ud['printtime'] > '0' && $ud['librarytime'] == '0')
  1990. {
  1991. $q = '';
  1992. if($ud['libraryconfirm'] == 1)
  1993. {
  1994. $q = ',<em style="color: #F00;">改前状态为:禁止出库</em>';
  1995. }
  1996. $xghz = ',将自动禁止发货'.$q;
  1997. }
  1998. else
  1999. {
  2000. $xghz = '';
  2001. }
  2002. echo json_encode(array('msg'=>'修改成功'.$xghz,'id'=>$id,'cs'=>$ud['state'].' - '.$post['fpdata'].' - '.$ud['fpdata'],'success'=>true));exit;
  2003. }
  2004. else
  2005. {
  2006. echo json_encode(array('msg'=>'修改失败,请重试','success'=>false));exit;
  2007. }
  2008. }
  2009. $arg_array = $arg_array[0];$fpdata = array();
  2010. $fullorder = $this->fullorder->read($arg_array);
  2011. $returngoods = $this->returngoods->get_orderinfo($fullorder['orderinfo']);
  2012. $this->data['returngoods'] = $returngoods?1:0;
  2013. $fullorder['shipremarks'] = str_replace(array('<','>'),array('&lt;','&gt;'),$fullorder['shipremarks']);
  2014. $fullorder['parameter'] = str_replace(",","---",$fullorder['parameter']);
  2015. $this->data['fullorder'] = $fullorder;
  2016. if($fullorder['express'] == 2)
  2017. {
  2018. $zzhl = 'oz';
  2019. }
  2020. else
  2021. {
  2022. $zzhl = 'kg';
  2023. }
  2024. $this->data['zzhl'] = $zzhl;
  2025. $this->data['countrys'] = $this->country->find_all();
  2026. $this->data['express'] = $this->express->find_all();
  2027. $warehouse = $this->warehouse->read($fullorder['type']);
  2028. if(stripos($fullorder['fpdata'],';') !== false)
  2029. {
  2030. $fpdata = explode(';',rtrim($fullorder['fpdata'],';'));
  2031. foreach ($fpdata as $k=>$v)
  2032. {
  2033. $xxv = explode('|',$v);
  2034. if(isset($xxv[9]) && stripos($xxv[9],$warehouse['hz']) !== false && $warehouse['hz'] != '' && $warehouse['zd'] == 1)
  2035. {
  2036. $xxv['zd'] = "<p>已占单</p>";
  2037. $bdck = $warehouse['bdck'];
  2038. if(stripos($xxv[9],'~') !== false)
  2039. {
  2040. $dxxv = explode('~',trim($xxv[9],'~'));
  2041. foreach ($dxxv as $val)
  2042. {
  2043. $wzid = $this->$bdck->read(trim($val,$warehouse['hz']));
  2044. if($wzid['details'] != '')
  2045. {
  2046. $xxv['zd'] .= '<p>位置:'.$wzid['details'].' - '.$wzid['cpid'].'</p>';
  2047. }
  2048. }
  2049. }
  2050. else
  2051. {
  2052. $wzid = $this->$bdck->read(trim($xxv[9],$warehouse['hz']));
  2053. if($wzid['details'] != '')
  2054. {
  2055. $xxv['zd'] .= '<p>位置:'.$wzid['details'].' - '.$wzid['cpid'].'</p>';
  2056. }
  2057. }
  2058. }
  2059. $fpdata[$k] = $xxv;
  2060. }
  2061. }
  2062. $this->data['fpdata'] = $fpdata;
  2063. // $tmp_features = array_column($fpdata,0);
  2064. // $do_trans_pms = [];
  2065. // foreach ($tmp_features as $k=>$v) {
  2066. // if(strpos($v,",") === false){
  2067. // $do_trans_pms[] = [
  2068. // 'features'=>$v
  2069. // ];
  2070. // }else{
  2071. // $tmp_arr = explode(",",$v);
  2072. // $do_trans_pms[] = [
  2073. // 'features'=>$tmp_arr[1].$tmp_arr[0]."-"
  2074. // ];
  2075. // }
  2076. // }
  2077. // $r = $this->logic_whlabel->dataTran($do_trans_pms,['pm']);
  2078. // foreach ($fpdata as $k=>$v) {
  2079. // $fpdata[$k]['pm'] = $r[$k]['pm'];
  2080. // }
  2081. $this->data['fpdata'] = $fpdata;
  2082. $thfpdataxs = array();
  2083. if($fullorder['thfpdata'] != '')
  2084. {
  2085. $thfpdata = explode(';',trim($fullorder['thfpdata'],';'));
  2086. foreach ($thfpdata as $k=>$v)
  2087. {
  2088. $thxs = explode('~',trim($v,'~'));
  2089. $thxs[0] = explode('|',trim($thxs[0],'|'));
  2090. $thxs[1] = explode('|',trim($thxs[1],'|'));
  2091. $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]);
  2092. }
  2093. }
  2094. $this->data['thfpdata'] = $thfpdataxs;
  2095. $shop = $this->shop->read($fullorder['shop']);
  2096. $this->data['et'] = $shop['estimaterate'];//此店铺配置预计到帐金额比例
  2097. $is = 0;
  2098. if($shop['type'] == 269 || $shop['type']==2768 )//判断是否独立站,269是独立站
  2099. {
  2100. $is = 1;
  2101. }
  2102. $this->data['is'] = $is;
  2103. //单项开始
  2104. $warehouse = $this->warehouse->read($fullorder['warehouse']);//发货仓库
  2105. $state = $this->typeclass->read($fullorder['state']);//订单状态
  2106. $country = $this->country->read($fullorder['country']);//国家
  2107. if($fullorder['capital'] == 1)
  2108. {
  2109. $capital = '暂未支付';
  2110. }
  2111. else if($fullorder['capital'] == 2)
  2112. {
  2113. $capital = '部分支付';
  2114. }
  2115. else if($fullorder['capital'] == 3)
  2116. {
  2117. $capital = '全部支付';
  2118. }
  2119. if($fullorder['printtype'] == 1)
  2120. {
  2121. $printtype = '运单';
  2122. }
  2123. else if($fullorder['printtype'] == 2)
  2124. {
  2125. $printtype = '发货单';
  2126. }
  2127. else if($fullorder['printtype'] == 3)
  2128. {
  2129. $printtype = '不打印单据';
  2130. }
  2131. else
  2132. {
  2133. $printtype = '未选择';
  2134. }
  2135. $this->data['warehouse'] = $warehouse['title'];
  2136. $this->data['state'] = $state['title'];
  2137. $this->data['capital'] = $capital;
  2138. $this->data['country'] = $country['name'];
  2139. $this->data['printtype'] = $printtype;
  2140. //单项结束
  2141. /** 历史运单号展示并下载PDF 打印时间需要2019-3-21 0点之后有记录 **/
  2142. $downwaybill = '';$dwls = array();
  2143. $oldwaybill = explode('-',ltrim($fullorder['oldwaybill'],'-'));
  2144. if(isset($oldwaybill[0][1]))
  2145. {
  2146. $oldwaybill = array_reverse($oldwaybill); //调整顺序
  2147. foreach ($oldwaybill as $v)
  2148. {
  2149. $dw = explode('/',$v);
  2150. if(isset($dw[1]))
  2151. {
  2152. if(stripos($downwaybill,$dw[1]) === false)
  2153. {
  2154. $dwls[$dw[1]] = 1;
  2155. $downwaybill .= '<a href="/data/pdf/'.$dw[0].'/y-'.$dw[1].'.pdf" target="_blank">'.$dw[1].'</a>、';
  2156. }
  2157. }
  2158. }
  2159. }
  2160. if($fullorder['printtype'] == 1)
  2161. {
  2162. if($fullorder['waybill'] != '' && !isset($dwls[$fullorder['waybill']]))
  2163. {
  2164. $downwaybill = '<a href="/data/pdf/'.date('Ymd',$fullorder['printtime']).'/y-'.$fullorder['waybill'].'.pdf" target="_blank">'.$fullorder['waybill'].'</a>、'.$downwaybill;
  2165. }
  2166. }
  2167. $this->data['downwaybill'] = rtrim($downwaybill,'、');
  2168. /** 历史打印时间 **/
  2169. $printtime = '';
  2170. if($fullorder['oldprinttime'])
  2171. {
  2172. $pte = explode('-',rtrim($fullorder['oldprinttime'],'-'));
  2173. foreach ($pte as $v)
  2174. {
  2175. $printtime .= date('Y-m-d H:i:s',$v).'、';
  2176. }
  2177. }
  2178. $this->data['printtime'] = rtrim($printtime,'、');
  2179. $product = '';
  2180. $fullorder['product'] = str_replace("'","",$fullorder['product']);
  2181. if($fullorder['link'] != '' && $fullorder['source'] != '1')
  2182. {
  2183. $pt = explode(',',$fullorder['product']);
  2184. $lk = explode(',',$fullorder['link']);
  2185. for($i=0;$i<count($pt);$i++)
  2186. {
  2187. if(isset($lk[$i]))
  2188. {
  2189. $octs = $this->colourorderts->get_texturl($pt[$i],$lk[$i]);
  2190. }
  2191. else
  2192. {
  2193. $octs = '';
  2194. }
  2195. $a = $octs?'<font style="color:#'.$octs['colour'].'">'.$pt[$i].'</font>':$pt[$i];
  2196. //$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];
  2197. if(isset($lk[$i]))
  2198. {
  2199. $product .= ($product != '')?' , <a href="'.$lk[$i].'" target="_blank">'.$a.'</a>':'<a href="'.$lk[$i].'" target="_blank">'.$a.'</a>';
  2200. }
  2201. else
  2202. {
  2203. $product .= ($product != '')?' , '.$a:$a;
  2204. }
  2205. }
  2206. }
  2207. else
  2208. {
  2209. $octs = $this->colourorderts->get_text($fullorder['product']);
  2210. $a = $octs?'<font style="color:#F39">'.$fullorder['product'].'</font>':$fullorder['product'];
  2211. //$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'];
  2212. $product = $a;
  2213. }
  2214. $this->data['product'] = $product;
  2215. $out = $this->systemtransfer->find_all("number = '".$fullorder['number']."'");
  2216. $outread = '';
  2217. if($out)
  2218. {
  2219. foreach ($out as $val)
  2220. {
  2221. $list = '';
  2222. $rk = explode('|',trim($val['rk'],'|'));
  2223. $rktime = explode('|',trim($val['rktime'],'|'));
  2224. $zw = array();
  2225. $t = $this->transfer->find_all("1=1");
  2226. foreach ($t as $v)
  2227. {
  2228. $zw[$v['id']] = $v['title'];
  2229. }
  2230. if($val['rk'] != '' && count($rk) > 0)
  2231. {
  2232. for($i=0;$i<count($rk);$i++)
  2233. {
  2234. if(!isset($rktime[$i]))
  2235. {
  2236. $list .= $zw[$cz[$i]];
  2237. }
  2238. else
  2239. {
  2240. $list .= $zw[$rk[$i]].' :'.date('Y-m-d H:i',$rktime[$i]).',';
  2241. }
  2242. }
  2243. }
  2244. $outread .= '<span style="color:#f00">'.$val['pm'].'</span>:'.$list.'<br>';
  2245. }
  2246. }
  2247. else
  2248. {
  2249. $systemwigsout = $this->systemwigsout->find_all("number = '".$fullorder['number']."'");
  2250. $outread = array();
  2251. if($systemwigsout)
  2252. {
  2253. foreach ($systemwigsout as $v)
  2254. {
  2255. if($v['czwarehouse'] == 37)
  2256. {
  2257. $outread[] = '华荣厂';
  2258. }
  2259. else if($v['czwarehouse'] == 0)
  2260. {
  2261. $outread[] = '龙盈厂';
  2262. }
  2263. $cz = explode('|',trim($v['cz'],'|'));
  2264. $cztime = explode('|',trim($v['cztime'],'|'));
  2265. $zw = $this->transfer->get_list();
  2266. if($v['cz'] != '' && count($cz) > 0)
  2267. {
  2268. for($i=0;$i<count($cz);$i++)
  2269. {
  2270. if(!isset($cztime[$i]))
  2271. {
  2272. $outread[] = $zw[$cz[$i]].' -&gt; ';
  2273. }
  2274. else
  2275. {
  2276. $outread[] = $zw[$cz[$i]].' :'.date('Y-m-d H:i',$cztime[$i]).' -&gt; ';
  2277. }
  2278. }
  2279. $outread[] = '<br>';
  2280. }
  2281. }
  2282. }
  2283. }
  2284. $klarnacolor = '';
  2285. if($fullorder['klarnadata'] !='')
  2286. {
  2287. $klarnadata = explode('|',$fullorder['klarnadata']);
  2288. if($klarnadata[0] == 'paypal' || $klarnadata[0] == 'stripe')
  2289. {
  2290. $klarnadata[1] = json_decode($klarnadata[1],true);
  2291. if($klarnadata[0] == 'stripe' && $klarnadata[1]['shouldmoney'] != $fullorder['shouldmoney'] && $fullorder['pay'] == 1211)
  2292. {
  2293. $klarnacolor = 'style="color:#F00"';
  2294. }
  2295. }
  2296. else if($klarnadata[0]!=1 && $fullorder['pay']!=26 && $fullorder['pay']!=27 && $fullorder['pay']!=1211)
  2297. {
  2298. $klarnacolor = 'style="color:#F00"';
  2299. }
  2300. if($fullorder['pay'] == 23)//klarna
  2301. {
  2302. $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');
  2303. $ToState = array_flip($ToState);
  2304. $klarnadata3 = str_replace(' ','',$klarnadata[3]);
  2305. $city = str_replace(' ','',$fullorder['city']);
  2306. $klarnadataaddress = explode($city,$klarnadata3);
  2307. if(isset($klarnadataaddress[1]))
  2308. {
  2309. $klarnadata3 = $city.$klarnadataaddress[1];
  2310. $klarnadatacolor = explode(',',$klarnadata3);
  2311. unset($klarnadatacolor[4]);
  2312. unset($klarnadatacolor[6]);
  2313. if(isset($ToState[$klarnadatacolor[1]]))
  2314. {
  2315. $klarnadatacolor[1] = ucwords($ToState[$klarnadatacolor[1]]);
  2316. }
  2317. $klarnadata['color'] = $klarnadataaddress[0].implode(",",$klarnadatacolor);
  2318. }
  2319. else
  2320. {
  2321. $klarnadata['color'] = $klarnadata3;
  2322. }
  2323. }
  2324. }
  2325. else
  2326. {
  2327. $klarnadata = '';
  2328. }
  2329. $p = explode('-',$fullorder['paypal']);
  2330. $this->data['klarnacolor'] = $klarnacolor;
  2331. $this->data['klarnadata'] = $klarnadata;
  2332. $this->data['systemwigsout'] = $outread;
  2333. $quantity = explode(';',trim($fullorder['quantity'],';'));
  2334. $qc = 0;
  2335. foreach ($quantity as $v)
  2336. {
  2337. if($v > 1)
  2338. {
  2339. $qc += 1;
  2340. }
  2341. }
  2342. $this->data['qc'] = $qc;
  2343. //新增row_total和sub_total
  2344. $product_ids = $row_total = $sub_total = "";
  2345. if(!empty($fullorder['extra_price'])){
  2346. $extra_price = json_decode($fullorder['extra_price'],true);
  2347. foreach($extra_price as $k=>$v){
  2348. $row_total .= sprintf("%.2f",($v['qty']* $v['price'])).";";
  2349. $sub_total .= sprintf("%.2f",$v['sub_total']).";";
  2350. if(!empty($v['product_id'])){
  2351. $product_ids .= $v['product_id'].";";
  2352. }
  2353. }
  2354. }
  2355. $this->data['row_total'] = trim($row_total,";");
  2356. $this->data['sub_total'] = trim($sub_total,";");
  2357. $this->data['product_ids'] = trim($product_ids,";");
  2358. $this->_Template('fullorder_readonly',$this->data);
  2359. }
  2360. //浏览列表
  2361. public function _readlist()
  2362. {
  2363. if(isset($_SESSION['api']))
  2364. {
  2365. $user = $this->user->get_api($_SESSION['api']);
  2366. $usp = $user;
  2367. $fgshop = "";$sid = "";
  2368. $usersp = explode('|',trim($user['shop'],'|'));
  2369. foreach ($usersp as $value)
  2370. {
  2371. $fgshop .= " shop = ".$value." or";
  2372. $sid .= " id = ".$value." or";
  2373. }
  2374. }
  2375. $post = $this->input->post(NULL, TRUE);
  2376. if(isset($post['page']))
  2377. {
  2378. $page = $this->input->post('page',true);
  2379. $perpage = $this->input->post('perpage',true);
  2380. $shop = $this->input->post('shop',true);
  2381. $warehouse = $this->input->post('warehouse',true);
  2382. $express = $this->input->post('express',true);
  2383. $state = $this->input->post('state',true);
  2384. $print = $this->input->post('print',true);
  2385. $libraryconfirm = $this->input->post('libraryconfirm',true);
  2386. $orderinfo = $this->input->post('orderinfo',true);
  2387. $client = $this->input->post('name',true);
  2388. $email = $this->input->post('email',true);
  2389. $number = $this->input->post('number',true);
  2390. $waybill = $this->input->post('waybill',true);
  2391. $authorid = $this->input->post('authorid',true);
  2392. $sourcecontentid = $this->input->post('sourcecontentid',true);
  2393. $timetk = $this->input->post('timetk',true);
  2394. $timetj = $this->input->post('timetj',true);
  2395. $timetk = strtotime($timetk);
  2396. $timetj = strtotime($timetj);
  2397. $where = "1=1 and mergeid = 0 and (".rtrim($fgshop,'or').")";
  2398. if($shop)
  2399. {
  2400. $where .= " and shop = '$shop'";
  2401. }
  2402. if($warehouse)
  2403. {
  2404. $where .= " and type = '$warehouse'";
  2405. }
  2406. if($express)
  2407. {
  2408. $where .= " and express = '$express'";
  2409. }
  2410. if($state)
  2411. {
  2412. $where .= " and state = '$state'";
  2413. }
  2414. if($print)
  2415. {
  2416. $where .= " and print = '$print'";
  2417. }
  2418. if($libraryconfirm)
  2419. {
  2420. $where .= " and libraryconfirm = '$libraryconfirm'";
  2421. }
  2422. if($orderinfo)
  2423. {
  2424. $where .= " and orderinfo = '$orderinfo'";
  2425. }
  2426. if($client)
  2427. {
  2428. $where .= " and client like '%$client%'";
  2429. }
  2430. if($email)
  2431. {
  2432. $where .= " and email = '$email'";
  2433. }
  2434. if($number)
  2435. {
  2436. $where .= " and number = '$number'";
  2437. }
  2438. if($waybill)
  2439. {
  2440. $where .= " and waybill = '$waybill'";
  2441. }
  2442. if($authorid)
  2443. {
  2444. $where .= " and authorid = '$authorid'";
  2445. }
  2446. if($sourcecontentid)
  2447. {
  2448. $where .= " and sourcecontentid = '$sourcecontentid'";
  2449. }
  2450. if($timetk && $timetj)
  2451. {
  2452. $timetj = $timetj+24*3600;
  2453. $where .= " and dtime > '$timetk' and dtime < '$timetj'";
  2454. }
  2455. //数据排序
  2456. $order_str = "dtime desc";
  2457. if(empty($page))
  2458. {
  2459. $start = 0;
  2460. $perpage = 1;
  2461. }
  2462. else
  2463. {
  2464. $start = ($page - 1)*$perpage;
  2465. }
  2466. //取得信息列表
  2467. $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);
  2468. //格式化数据
  2469. $dt = 0;
  2470. foreach ($info_list as $key=>$value)
  2471. {
  2472. $ud = $this->fullorder->read($value['id']);
  2473. $ud['address'] = str_replace("'","’",$ud['address']);
  2474. $ud['name'] = str_replace("'","’",$ud['name']);
  2475. $customer = $this->customer->get_email($ud['email'],$value['shop']);
  2476. $customernum = $this->fullorder->find_count("email = '".$ud['email']."' and shop = '".$value['shop']."'");
  2477. preg_match_all('/[0-9]/u',$ud['phone'],$result);
  2478. $numphone = join('',$result[0]);
  2479. $customerb = $this->customer->find_all("type = 2 and (email = '".$ud['email']."' or address = '".$ud['address']."' or numphone = '".$numphone."')",'*','id desc');
  2480. $customerc = $this->customer->find_all("type = 1 and shop = '".$ud['shop']."' and address = '".$ud['address']."' and numphone = '".$numphone."'",'*','id desc');
  2481. //$a = array_column($customer, 'email'); //三维找其中健的数组
  2482. //$a = array_flip($a); //键和值调换
  2483. $lkh = $value['sname'];
  2484. $djlkh = 0;$djhmd = 0;
  2485. if($customer)
  2486. {
  2487. if(($customer['type'] == 1 && $customernum > 1))// || $customerc['type'] == 1 && $customerc['num'] > 1
  2488. {
  2489. $count = $customer['count']?'<i class="method fa fa-exclamation-circle" data-t="'.$customer['count'].'"></i>':'';
  2490. $lkh = "<p>".$value['sname']."</p><p style='color:#FF3333'>".$count."老客户</p>";
  2491. $djlkh = 1;
  2492. $djcount = $count;
  2493. }
  2494. else if(isset($customerc[0]['num']))
  2495. {
  2496. if($customerc[0]['num'] > 1)
  2497. {
  2498. $count = $customer['count']?'<i class="method fa fa-exclamation-circle" data-t="'.$customer['count'].'"></i>':'';
  2499. $lkh = "<p>".$value['sname']."</p><p style='color:#FF3333'>".$count."老客户</p>";
  2500. $djlkh = 1;
  2501. $djcount = $count;
  2502. }
  2503. }
  2504. }
  2505. if($customerb)
  2506. {
  2507. $hmsp = $this->shop->read($customerb[0]['shop']);
  2508. $count = $customerb[0]['count']?'<i class="method fa fa-exclamation-circle" data-t="'.$customerb[0]['count'].'"></i>':'';
  2509. $lkh = "<p>".$value['sname']."</p><p style='color:#9900CC'>".$count."黑名单</p><p style='color:#9900CC'>来自".$hmsp['shopname']."</p>";
  2510. $djhmd = 1;
  2511. }
  2512. if($djlkh == '1' && $djhmd == '1')
  2513. {
  2514. $lkh = "<p>".$value['sname']."</p><p style='color:#9900CC'><em style='color:#FF3333'>".$djcount."老客户</em> - ".$count."黑名单</p><p style='color:#9900CC'>来自".$hmsp['shopname']."</p>";
  2515. }
  2516. $info_list[$key]['sname'] = $lkh;
  2517. $shop = $this->shop->read($value['shop']);
  2518. $info_list[$key]['shop'] = $shop['shopname'];
  2519. //$info_list[$key]['user'] = $shop['shopuser'];
  2520. $warehouse = $this->warehouse->read($value['type']);
  2521. $warehousetitle = $warehouse['title'];
  2522. if($value['type'] != 1){$warehousetitle = "<font style='color:#f64b4b'>".$warehouse['title']."</font>";}
  2523. $info_list[$key]['type'] = $warehousetitle;
  2524. $typeclass = $this->typeclass->read($value['state']);
  2525. $info_list[$key]['state'] = $typeclass['spare'];
  2526. $wl = '';
  2527. if($value['exstate'] == '99')
  2528. {
  2529. $wl = '<font style="color:#ccc">未获取到物流信息</font>';
  2530. }
  2531. else if($value['exstate'] == '1')
  2532. {
  2533. $wl = '<font id="wl'.$ud['id'].'" class="lbwlxx">已揽收<font style="display: none">'.$ud['excontent'].'</font></font>';
  2534. }
  2535. else if($value['exstate'] == '2')
  2536. {
  2537. $wl = '<font id="wl'.$ud['id'].'" class="lbwlxx">在途中<font style="display: none">'.$ud['excontent'].'</font></font>';
  2538. }
  2539. else if($value['exstate'] == '3')
  2540. {
  2541. $wl = '<font id="wl'.$ud['id'].'" class="lbwlxx">派送中<font style="display: none">'.$ud['excontent'].'</font></font>';
  2542. }
  2543. else if($value['exstate'] == '4')
  2544. {
  2545. $wl = '<font id="wl'.$ud['id'].'" class="lbwlxx">已签收<font style="display: none">'.$ud['excontent'].'</font></font>';
  2546. }
  2547. else if($value['exstate'] == '5')
  2548. {
  2549. $wl = '<font id="wl'.$ud['id'].'" class="lbwlxx">派送异常<font style="display: none">'.$ud['excontent'].'</font></font>';
  2550. }
  2551. $info_list[$key]['exstate'] = $wl.'<br />';
  2552. if($ud['source'] == 1) //线下单用订单时间,其他用付款时间
  2553. {
  2554. $info_list[$key]['buytime'] = '<p>'.date('Y-m-d',$ud['dtime']).'</p><p>'.date('H:i:s',$ud['dtime']).'</p>';
  2555. }
  2556. else
  2557. {
  2558. $info_list[$key]['buytime'] = '<p>'.date('Y-m-d',$value['buytime']+$dt).'</p><p>'.date('H:i:s',$value['buytime']+$dt).'</p>';
  2559. }
  2560. if($value['review'] == 1)
  2561. {
  2562. $info_list[$key]['review'] = "未送审";
  2563. }
  2564. else if($value['review'] == 2)
  2565. {
  2566. $info_list[$key]['review'] = "<font style='color:#555'>待审核</font>";
  2567. }
  2568. else if($value['review'] == 3)
  2569. {
  2570. $info_list[$key]['review'] = "<font style='color:#f90f4b'>不通过</font>";
  2571. }
  2572. else if($value['review'] == 4)
  2573. {
  2574. $info_list[$key]['review'] = "取消重审";
  2575. }
  2576. else if($value['review'] == 5)
  2577. {
  2578. $info_list[$key]['review'] = "<font style='color:#2f80f9'>审核通过</font>";
  2579. }
  2580. else if($value['review'] == 6)
  2581. {
  2582. $info_list[$key]['review'] = "<font style='color:#2f80f9'>自动通过</font>";
  2583. }
  2584. if($ud['dlz'] == 1)
  2585. {
  2586. $dlz = "<p>独立站已更新</p>";
  2587. }
  2588. else if($ud['dlz'] == 3)
  2589. {
  2590. $dlz = "<p>不需要更新</p>";
  2591. }
  2592. else if($ud['dlz'] == 2)
  2593. {
  2594. $dlz = "<p style='color:#C3C'>独立站更新失败</p>";
  2595. }
  2596. else
  2597. {
  2598. $dlz = "";
  2599. }
  2600. if($value['waybill'] != "")
  2601. {
  2602. $info_list[$key]['waybill'] = "<p>".$value['waybill']."</p>".$dlz;
  2603. if( !empty($value['waybillid'])){
  2604. $info_list[$key]['waybill'] = "<p>".$value['waybill']."</p>".$dlz."<p>".$value['waybillid']."</p>";
  2605. }
  2606. }
  2607. if($value['express'] != 0)
  2608. {
  2609. $express = $this->express->read($value['express']);
  2610. $expressservicename = $express['servicename'];
  2611. if($value['express'] != 1){$expressservicename = "<font style='color:#f64b4b'>".$express['servicename']."</font>";}
  2612. $info_list[$key]['express'] = $expressservicename;
  2613. }
  2614. else
  2615. {
  2616. $info_list[$key]['express'] = "无";
  2617. }
  2618. $tly = "";
  2619. if($value['clientremarks'] != "")
  2620. {
  2621. $tly = "<p style='color:#FF3333'>有客户留言</p>";
  2622. }
  2623. if($value['library'] == 1 && $ud['printtype'] == 3)
  2624. {
  2625. $info_list[$key]['library'] = "不需要";
  2626. }
  2627. else if($value['library'] == 1 && $ud['printtype'] != 3)
  2628. {
  2629. $info_list[$key]['library'] = "未出库";
  2630. }
  2631. else if($value['library'] == 2)
  2632. {
  2633. $info_list[$key]['library'] = '<p>'.date('Y-m-d',$ud['librarytime']).'</p><p>'.date('H:i:s',$ud['librarytime']).'出库</p>';
  2634. }
  2635. else if($value['library'] == 3)
  2636. {
  2637. $info_list[$key]['library'] = '<p>'.date('Y-m-d',$ud['retreattime']).'</p><p>'.date('H:i:s',$ud['retreattime']).'退库</p>';
  2638. }
  2639. if($ud['authorid'] != '' && $ud['authorid'] != 0)
  2640. {
  2641. $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>';
  2642. }
  2643. unset($info_list[$key]['waybillid']);
  2644. }
  2645. $total = $this->fullorder->find_count($where);
  2646. $pagenum = ceil($total/$perpage);
  2647. $over = $total-($start+$perpage);
  2648. $rows = array('total'=>$total,'over'=>$over,'pagenum'=>$pagenum,'rows'=>($info_list));
  2649. echo json_encode($rows);exit;
  2650. }
  2651. $wlshop = $this->shop->find_all('1=1 and '.rtrim($sid,'or'));
  2652. $this->data['wlshop'] = $wlshop;
  2653. $this->_Template('fullorder_readlist',$this->data);
  2654. }
  2655. public function _readlistdown()
  2656. {
  2657. if(isset($_SESSION['api']))
  2658. {
  2659. $user = $this->user->get_api($_SESSION['api']);
  2660. $usp = $user;
  2661. $fgshop = "";$sid = "";
  2662. $usersp = explode('|',trim($user['shop'],'|'));
  2663. foreach ($usersp as $value)
  2664. {
  2665. $fgshop .= " shop = ".$value." or";
  2666. $sid .= " id = ".$value." or";
  2667. }
  2668. }
  2669. $post = $this->input->get(NULL, TRUE);
  2670. if(isset($post['excel']))
  2671. {
  2672. $shop = $this->input->get('shop',true);
  2673. $warehouse = $this->input->get('warehouse',true);
  2674. $express = $this->input->get('express',true);
  2675. $state = $this->input->get('state',true);
  2676. $print = $this->input->get('print',true);
  2677. $libraryconfirm = $this->input->get('libraryconfirm',true);
  2678. $orderinfo = $this->input->get('orderinfo',true);
  2679. $client = $this->input->get('name',true);
  2680. $email = $this->input->get('email',true);
  2681. $number = $this->input->get('number',true);
  2682. $waybill = $this->input->get('waybill',true);
  2683. $authorid = $this->input->get('authorid',true);
  2684. $sourcecontentid = $this->input->get('sourcecontentid',true);
  2685. $timetk = $this->input->get('timetk',true);
  2686. $timetj = $this->input->get('timetj',true);
  2687. $timetk = strtotime($timetk);
  2688. $timetj = strtotime($timetj);
  2689. $where = "1=1 and mergeid = 0 and (".rtrim($fgshop,'or').")";
  2690. if($shop)
  2691. {
  2692. $where .= " and shop = '$shop'";
  2693. }
  2694. if($warehouse)
  2695. {
  2696. $where .= " and type = '$warehouse'";
  2697. }
  2698. if($express)
  2699. {
  2700. $where .= " and express = '$express'";
  2701. }
  2702. if($state)
  2703. {
  2704. $where .= " and state = '$state'";
  2705. }
  2706. if($print)
  2707. {
  2708. $where .= " and print = '$print'";
  2709. }
  2710. if($libraryconfirm)
  2711. {
  2712. $where .= " and libraryconfirm = '$libraryconfirm'";
  2713. }
  2714. if($orderinfo)
  2715. {
  2716. $where .= " and orderinfo = '$orderinfo'";
  2717. }
  2718. if($client)
  2719. {
  2720. $where .= " and client like '%$client%'";
  2721. }
  2722. if($email)
  2723. {
  2724. $where .= " and email = '$email'";
  2725. }
  2726. if($number)
  2727. {
  2728. $where .= " and number = '$number'";
  2729. }
  2730. if($waybill)
  2731. {
  2732. $where .= " and waybill = '$waybill'";
  2733. }
  2734. if($authorid)
  2735. {
  2736. $where .= " and authorid = '$authorid'";
  2737. }
  2738. if($sourcecontentid)
  2739. {
  2740. $where .= " and sourcecontentid = '$sourcecontentid'";
  2741. }
  2742. if($timetk && $timetj)
  2743. {
  2744. $timetj = $timetj+24*3600;
  2745. $where .= " and dtime > '$timetk' and dtime < '$timetj'";
  2746. }
  2747. //数据排序
  2748. $order_str = "dtime desc";
  2749. //取得信息列表
  2750. $info_list = $this->fullorder->find_all($where,'shop,number,orderinfo,buytime,name,express,waybill,email,shipremarks,shouldmoney,orderremarks,librarytime,authorid,sourcecontentid',$order_str);
  2751. //格式化数据
  2752. $dt = 0;
  2753. foreach ($info_list as $key=>$value)
  2754. {
  2755. $shop = $this->shop->read($value['shop']);
  2756. $info_list[$key]['shop'] = $shop['shopname'];
  2757. $info_list[$key]['buytime'] = date('Y-m-d H:i:s',$value['buytime']);
  2758. if($value['librarytime'] > 0)
  2759. {
  2760. $info_list[$key]['librarytime'] = date('Y-m-d H:i:s',$value['librarytime']);
  2761. }
  2762. if($value['express'] != 0)
  2763. {
  2764. $express = $this->express->read($value['express']);
  2765. $info_list[$key]['express'] = $express['servicename'];
  2766. }
  2767. else
  2768. {
  2769. $info_list[$key]['express'] = "无";
  2770. }
  2771. }
  2772. $title = "订单列表 ".date("Y-m-d");
  2773. $titlename = "<table border=1>
  2774. <tr><th colspan='14' align='left'><h3>".$title."<h3></th></tr>
  2775. <tr>
  2776. <td>店铺</td>
  2777. <td>编号</td>
  2778. <td>订单号</td>
  2779. <td>订单日期</td>
  2780. <td>客户姓名</td>
  2781. <td>快递方式</td>
  2782. <td>运单号</td>
  2783. <td>邮箱</td>
  2784. <td>仓库品名</td>
  2785. <td>订单金额</td>
  2786. <td>订单备注</td>
  2787. <td>出库时间</td>
  2788. <td>author_id</td>
  2789. <td>source_content_id</td>
  2790. </tr>
  2791. </table>";
  2792. $filename = $title.".xls";
  2793. $tail = "\n";
  2794. $this->excel->get_fz2($info_list,$titlename,$filename,$tail);
  2795. }
  2796. }
  2797. //删除
  2798. public function _del()
  2799. {
  2800. $post = $this->input->post(NULL, TRUE);
  2801. if(isset($post['s']))
  2802. {
  2803. $id_arr = $this->input->post('s');
  2804. $id_arr = explode(',',$id_arr);
  2805. if(!$id_arr)
  2806. {
  2807. echo json_encode(array('msg'=>'参数错误!','success'=>false));exit;
  2808. }
  2809. //循环删除记录
  2810. foreach ($id_arr as $v)
  2811. {
  2812. $this->fullorder->remove($v);
  2813. }
  2814. echo json_encode(array('del'=>$id_arr,'msg'=>'删除记录成功!','success'=>true));
  2815. }
  2816. }
  2817. //查找商品价格
  2818. public function _price()
  2819. {
  2820. $post = $this->input->post(NULL, TRUE);
  2821. if(isset($post['data']))
  2822. {
  2823. $data = $this->input->post('data');
  2824. $data = explode('-',$data);
  2825. $number = '';$num = count($data);
  2826. //循环删除记录
  2827. for($i=0;$i<$num-1;$i++)
  2828. {
  2829. if($data[$i] != 0)
  2830. {
  2831. $number=$number.$data[$i];
  2832. if($i == 2)
  2833. {
  2834. $number=$number.$data[$num-1];
  2835. }
  2836. }
  2837. }
  2838. $list = $this->productdescribe->get_number($number);
  2839. if($list)
  2840. {
  2841. echo json_encode(array('msg'=>($list),'n'=>$data[$num-1],'number'=>$number,'success'=>true));
  2842. }
  2843. else
  2844. {
  2845. $list = array('purchase'=>0,'cost'=>0,'salesprice'=>0);
  2846. //echo json_encode(array('msg'=>'此信息没有配置价格!','n'=>$data[$num-1],'success'=>false));exit;
  2847. echo json_encode(array('msg'=>($list),'n'=>$data[$num-1],'number'=>$number,'success'=>true));exit;
  2848. }
  2849. }
  2850. }
  2851. public function _customs()
  2852. {
  2853. $post = $this->input->post(NULL, TRUE);
  2854. if(isset($post['e']))
  2855. {
  2856. $e = $this->input->post('e');//快递信息
  2857. $c = $this->input->post('c');//国家信息
  2858. $data = $this->customs->find_all('express = "'.$e.'" and country = "'.$c.'"');
  2859. $list = $this->productdescription->find_all('express = "'.$e.'" and country = "'.$c.'"');
  2860. $rows = array();
  2861. foreach ($data as $key=>$value)
  2862. {
  2863. $detailed = explode('|',trim($value['detailed'],'|'));
  2864. //此处未对比重量选择价值,暂直接选择第一条海关价值
  2865. $detailed = $this->detailed->read($detailed[0]);
  2866. $money = $detailed['customsval'];//找到海关价值
  2867. }
  2868. foreach ($list as $key=>$value)
  2869. {
  2870. $description = $this->typeclass->read($value['description']);
  2871. $list[$key]['title'] = $description['title'];//产品描述名称
  2872. }
  2873. if(!$data && !$list)
  2874. {
  2875. echo json_encode(array('msg'=>'无此快递配置信息!','success'=>false));exit;
  2876. }
  2877. else
  2878. {
  2879. //$list-title -description 取值
  2880. echo json_encode(array('money'=>sprintf("%.2f",$money),'msg'=>$list,'success'=>true));
  2881. }
  2882. }
  2883. }
  2884. public function _express()
  2885. {
  2886. $post = $this->input->post(NULL, TRUE);
  2887. if(isset($post['e']))
  2888. {
  2889. $e = $this->input->post('e');//快递信息
  2890. $c = $this->input->post('c');//国家信息
  2891. $data = $this->logistics->find_all('express = "'.$e.'" and country = "'.$c.'"');
  2892. if(!$data)
  2893. {
  2894. echo json_encode(array('success'=>false));exit;
  2895. }
  2896. else
  2897. {
  2898. echo json_encode(array('money'=>sprintf("%.2f",$data[0]['firstmoney']),'success'=>true));
  2899. }
  2900. }
  2901. }
  2902. public function _hl()
  2903. {
  2904. $post = $this->input->post(NULL, TRUE);
  2905. if(isset($post['cy']))
  2906. {
  2907. $hl = 0;
  2908. $cy = $this->input->post('cy');//币种ID
  2909. $cy = $this->typeclass->read($cy);
  2910. $gethl = $this->hl->get_hl();
  2911. foreach ($gethl as $v)
  2912. {
  2913. $code = str_replace(" ","",$v['code']);
  2914. if($code == $cy['title'])
  2915. {
  2916. $hl = $v['refePrice']/100;
  2917. }
  2918. }
  2919. echo json_encode(array('msg'=>$hl,'success'=>true));
  2920. }
  2921. }
  2922. public function _operation()
  2923. {
  2924. $post = $this->input->post(NULL, TRUE);
  2925. if(isset($post['type']))
  2926. {
  2927. $type = $this->input->post('type');
  2928. $id = $this->input->post('id');
  2929. $msg = $this->input->post('msg');
  2930. $d = $this->fullorder->read($id);
  2931. $time = time();
  2932. if($type == 1)//禁止发货
  2933. {
  2934. if($d['library'] != 1)
  2935. {
  2936. echo json_encode(array('msg'=>'操作失败,订单非未出库状态!','success'=>false));exit;
  2937. }
  2938. if($msg == "")
  2939. {
  2940. echo json_encode(array('msg'=>'必须填写禁止原因!','success'=>false));exit;
  2941. }
  2942. if($d['print'] < 3)
  2943. {
  2944. $a = "订单未打印,";
  2945. }
  2946. else
  2947. {
  2948. $a = "";
  2949. }
  2950. if($this->fullorder->save(array('libraryconfirm'=>1,'librarynot'=>$a.$msg),$id))
  2951. {
  2952. echo json_encode(array('msg'=>'操作成功','l'=>1,'d'=>$id,'success'=>true));exit;
  2953. }
  2954. else
  2955. {
  2956. echo json_encode(array('msg'=>'操作失败,请重试','success'=>false));exit;
  2957. }
  2958. }
  2959. if($type == 6)//允许发货
  2960. {
  2961. if($d['library'] > 1)
  2962. {
  2963. echo json_encode(array('msg'=>'订单已出库,操作失败','success'=>false));exit;
  2964. }
  2965. if($d['print'] < 3)
  2966. {
  2967. $a = "订单未打印,";
  2968. }
  2969. else
  2970. {
  2971. $a = "";
  2972. }
  2973. if($this->fullorder->save(array('libraryconfirm'=>2,'librarynot'=>$a.$msg),$id))
  2974. {
  2975. echo json_encode(array('msg'=>'操作成功','l'=>1,'d'=>$id,'success'=>true));exit;
  2976. }
  2977. else
  2978. {
  2979. echo json_encode(array('msg'=>'操作失败,请重试','success'=>false));exit;
  2980. }
  2981. }
  2982. if($type == 7)//禁止打印
  2983. {
  2984. if($d['printtime'] != 0)
  2985. {
  2986. echo json_encode(array('msg'=>'订单已打印,操作失败','success'=>false));exit;
  2987. }
  2988. if($d['library'] > 1)
  2989. {
  2990. echo json_encode(array('msg'=>'订单已出库,操作失败','success'=>false));exit;
  2991. }
  2992. if($d['print'] < 3)
  2993. {
  2994. $a = "订单未打印,";
  2995. }
  2996. else
  2997. {
  2998. $a = "";
  2999. }
  3000. if($this->fullorder->save(array('print'=>1),$id))
  3001. {
  3002. echo json_encode(array('msg'=>'操作成功','l'=>2,'d'=>$id,'success'=>true));exit;
  3003. }
  3004. else
  3005. {
  3006. echo json_encode(array('msg'=>'操作失败,请重试','success'=>false));exit;
  3007. }
  3008. }
  3009. if($type == 8)//允许打印
  3010. {
  3011. /**
  3012. if($d['printtime'] != 0)
  3013. {
  3014. echo json_encode(array('msg'=>'订单已打印,操作失败','success'=>false));exit;
  3015. }
  3016. **/
  3017. if($d['library'] > 1)
  3018. {
  3019. echo json_encode(array('msg'=>'订单已出库,操作失败','success'=>false));exit;
  3020. }
  3021. if($d['print'] < 3)
  3022. {
  3023. $a = "订单未打印,";
  3024. }
  3025. else
  3026. {
  3027. $a = "";
  3028. }
  3029. if($d['printtime'] == '0')
  3030. {
  3031. $bcprint = 2;
  3032. }
  3033. else
  3034. {
  3035. $bcprint = 3;
  3036. }
  3037. if($this->fullorder->save(array('print'=>$bcprint,'failed'=>''),$id))
  3038. {
  3039. echo json_encode(array('msg'=>'操作成功','l'=>2,'d'=>$id,'success'=>true));exit;
  3040. }
  3041. else
  3042. {
  3043. echo json_encode(array('msg'=>'操作失败,请重试','success'=>false));exit;
  3044. }
  3045. }
  3046. if($type == 9)//关闭
  3047. {
  3048. if($this->fullorder->save(array('failed'=>''),$id))
  3049. {
  3050. echo json_encode(array('msg'=>'操作成功','l'=>2,'d'=>$id,'success'=>true));exit;
  3051. }
  3052. else
  3053. {
  3054. echo json_encode(array('msg'=>'操作失败,请重试','success'=>false));exit;
  3055. }
  3056. }
  3057. if($type == 2)//填写运单、修改运单
  3058. {
  3059. if($d['express'] == 0)
  3060. {
  3061. echo json_encode(array('msg'=>'操作失败,未选择物流方式!','success'=>false));exit;
  3062. }
  3063. if($d['library'] == 3 || ($d['print'] == 3 && $d['libraryconfirm'] == 1))
  3064. {
  3065. echo json_encode(array('msg'=>'操作失败,不允许填写运单号!','success'=>false));exit;
  3066. }
  3067. if($msg == '')
  3068. {
  3069. echo json_encode(array('msg'=>'运单号不能为空!','success'=>false));exit;
  3070. }
  3071. $ckemail = '';
  3072. $d['waybill'] = $msg;
  3073. $xg = $this->fullorder->read($id);
  3074. $shop = $this->shop->read($xg['shop']);
  3075. $ex = $this->express->read($xg['express']);
  3076. $fs = $this->notice->find_all("shop = '".$d['shop']."' and message = '1' and state = '1' and type = '4' and ktime < '$time' and jtime > '$time'");
  3077. if(isset($fs[0]))
  3078. {
  3079. $fs = $fs[0];
  3080. $fs['email'] = $this->emaildata->read($fs['email']);
  3081. if(($xg['dlzemail'] == 1 && $msg != $xg['waybill']) || $xg['dlzemail'] == 0)
  3082. {
  3083. $warehouse = $this->warehouse->read($xg['type']);
  3084. $ck = $this->notice->get_god($d,$shop,$ex,$fs);
  3085. if($ck == 1)
  3086. {
  3087. $ckemail = '邮件发送成功,';
  3088. $this->fullorder->save(array('dlzemail'=>1,'dlzemailtime'=>time()),$id);
  3089. }
  3090. }
  3091. }
  3092. if( $msg )
  3093. {
  3094. if($xg['source'] != 1)
  3095. {
  3096. $ms = $this->message->find_all("express like '%,".$xg['express'].",%'");
  3097. if(!isset($ms[0]))
  3098. {
  3099. $ms = $this->message->read(2);
  3100. }
  3101. else
  3102. {
  3103. $ms = $ms[0];
  3104. }
  3105. if($xg['shop'] == 5){
  3106. $ddh = $xg['orderinfo'];
  3107. }else{
  3108. $ddh = substr($xg['orderinfo'],1);
  3109. }
  3110. $shopifyid = $xg['shopify'];
  3111. //独立站地址更新订单状态、物流信息
  3112. $shopname = $shop['brandname']; //店铺名
  3113. $buyername = $xg['bname']; //Bill Name
  3114. $email_call = $shop['shopid']; //发货人邮箱;
  3115. $phone = $shop['shopphone']; //发货人电话
  3116. $track_type = $ex['title']; //快递名称
  3117. $service = $ex['title']; //快递追踪名称
  3118. $track_link = $ex['url']; //快递查询网址
  3119. $logistics_number = $msg; //运单号
  3120. $t= array('%buyername%','%email_call%','%track_type%','%service%','%track_link%','%logistics_number%','%shop%','%phone%','%jtime%');
  3121. $h= array($buyername,$email_call,$track_type,$service,$track_link,$logistics_number,$shopname,$phone,$ex['yjtime']);
  3122. $remark = str_replace($t,$h,$ms['content']);
  3123. $gx = $this->api->get_gx($ddh,$msg,$xg,$shop,$ex,$remark,$shopifyid);
  3124. }
  3125. else if($xg['source'] == 1)
  3126. {
  3127. $gx['res'] = 3;
  3128. $gx['state'] = 216;
  3129. $gx['cw'] = 'a';
  3130. }
  3131. }
  3132. else
  3133. {
  3134. $gx['res'] = $xg['dlz'];
  3135. $gx['state'] = $xg['state'];
  3136. $gx['cw'] = 'b';
  3137. }
  3138. $xg['iscode'] = $ex['title'];
  3139. $xg['url'] = $shop['shopname'];
  3140. $xg['waybill'] = $msg;
  3141. @$chuanshu = $this->api->get_paypal($xg);
  3142. $this->afspaypal->insert(array('number'=>$xg['number'],'cs'=>$chuanshu));
  3143. $msg = preg_replace('/( | | | |\s)/','',$msg);
  3144. if($this->fullorder->save(array('waybill'=>$msg,'state'=>$gx['state'],'dlz'=>$gx['res']),$id))
  3145. {
  3146. if($gx['res'] == 2)
  3147. {
  3148. echo json_encode(array('msg'=>$ckemail.'传输独立站失败!','cs'=>$gx['state'].' - '.$gx['res'].' - '.$gx['cw'],'success'=>false));exit;
  3149. }
  3150. echo json_encode(array('msg'=>'操作成功','success'=>true));exit;
  3151. }
  3152. else
  3153. {
  3154. echo json_encode(array('msg'=>'操作失败,请重试','success'=>false));exit;
  3155. }
  3156. }
  3157. }
  3158. }
  3159. public function _merge()
  3160. {
  3161. $post = $this->input->post(NULL, TRUE);
  3162. if(isset($post['s']))
  3163. {
  3164. $id_arr = $this->input->post('s');
  3165. $id_arr = explode(',',trim( $id_arr,','));
  3166. $id_arr = array_reverse($id_arr);
  3167. if(!$id_arr)
  3168. {
  3169. echo json_encode(array('msg'=>'参数错误!','success'=>false));exit;
  3170. }
  3171. if(count($id_arr) < 2)
  3172. {
  3173. echo json_encode(array('msg'=>'缺少可合并单!','success'=>false));exit;
  3174. }
  3175. $tmp_list = $this->db->from('fullorder')->where_in('id',$id_arr)->select('id,orderinfo,number,type,express')->get()->result_array();
  3176. $count_warehouse_list = [];
  3177. $count_express_list = [];
  3178. $flag = 0;
  3179. $flag_str = '';
  3180. foreach ($tmp_list as $k => $v) {
  3181. $count_warehouse_list[$v['type']] = $v['type'];
  3182. if(empty($v['express'])){
  3183. $flag = 1;
  3184. $flag_str.= $v['number'].'仓库未选,请先选快递;';
  3185. }
  3186. $count_express_list[$v['express']] = $v['express'];
  3187. }
  3188. if($flag == 1){
  3189. echo json_encode(array('msg'=>$flag_str,'success'=>false));exit;
  3190. }
  3191. if(count($count_warehouse_list) > 1){
  3192. echo json_encode(array('msg'=>'合并单的仓库不一致,无法合并!','success'=>false));exit;
  3193. }
  3194. if(count($count_express_list) > 1){
  3195. echo json_encode(array('msg'=>'合并单的快递不一致,无法合并!','success'=>false));exit;
  3196. }
  3197. $post = array();
  3198. $u = $this->fullorder->read($id_arr[0]);
  3199. unset($id_arr[0]);
  3200. $this->db->trans_begin();
  3201. $hd = $this->fullorderhb->get_orderinfo($u['orderinfo']);
  3202. if(!$hd)
  3203. {
  3204. $this->fullorderhb->insert($u);
  3205. }
  3206. //相加
  3207. $post['shouldmoney'] = $u['shouldmoney'];//购买应收金额
  3208. $post['budget'] = $u['budget'];//预估到帐金额
  3209. $post['expressmoney']= $u['expressmoney'];//物流金额
  3210. //$post['refundy'] = $u['refundy'];//补/退原额
  3211. //$post['refundj'] = $u['refundj'];//补/退净额
  3212. $post['cost'] = $u['cost'];//成本金额
  3213. //$post['zzl'] = $u['zzl'];//总重量
  3214. //$post['zsbjz'] = $u['zsbjz'];//总申报价值
  3215. $post['ts'] = $u['ts'];//条数
  3216. $post['cost'] = $u['cost'];//成本金额
  3217. //追加
  3218. $post['rpaypal'] = $u['rpaypal'];//补/退交易号
  3219. $post['rtext'] = $u['rtext'];//补/退原因
  3220. $post['pay'] = $u['pay'];//付款方式
  3221. $post['paypal'] = $u['paypal'];//交易号
  3222. $post['clientremarks'] = $u['clientremarks'];//客户留言
  3223. $post['product'] = $u['product'];//商品名称
  3224. //$post['issku'] = $u['issku'];//sku
  3225. //$post['orderremarks'] = $u['orderremarks'];//订单备注
  3226. $post['shipremarks'] = $u['shipremarks'];//仓库品名
  3227. //产品追加
  3228. $post['fpdata'] = $u['fpdata'];//产品内容
  3229. $post['whlabel'] = $u['whlabel'];//产品对应库存码
  3230. $merge = $u['id'];
  3231. $d = array($u['id']);$order = '';
  3232. $zsl = 0;$zccsl = 0;
  3233. foreach ($id_arr as $v)
  3234. {
  3235. $v = $this->fullorder->read($v);
  3236. if($u['type'] != $v['type'])
  3237. {
  3238. echo json_encode(array('msg'=>'仓库不一致,无法合并!','success'=>false));exit;
  3239. }
  3240. if($v['shop'] = $u['shop'])
  3241. {
  3242. $hd = $this->fullorderhb->get_orderinfo($v['orderinfo']);
  3243. if(!$hd)
  3244. {
  3245. $this->fullorderhb->insert($v);
  3246. }
  3247. //$post['shouldmoney'] += $v['shouldmoney'];//购买应收金额
  3248. // $post['budget'] += $v['budget'];//预估到帐金额
  3249. // $post['expressmoney'] += $v['expressmoney'];//物流金额
  3250. //$post['refundy'] += $v['refundy'];//补/退原额
  3251. //$post['refundj'] += $v['refundj'];//补/退净额
  3252. $post['cost'] += $v['cost'];//成本金额
  3253. //$post['zzl'] += $v['zzl'];//总重量
  3254. //$post['zsbjz'] += $v['zsbjz'];//总申报价值
  3255. $post['ts'] += $v['ts'];//条数
  3256. //$post['rpaypal'] .= $v['rpaypal'];//补/退交易号
  3257. //$post['rtext'] .= $v['rtext'];//补/退原因
  3258. //$post['pay'] .= (stripos($post['pay'],$v['pay']) !== false)?'':';'.$v['pay'];//付款方式
  3259. //$post['paypal'] .= $v['paypal'];//交易号
  3260. $post['clientremarks'] .= $v['clientremarks'];//客户留言
  3261. $post['product'] .= $v['product'];//商品名称
  3262. //$post['issku'] .= $v['issku'];//sku
  3263. //$post['orderremarks'] .= $v['orderremarks'];//订单备注
  3264. $post['shipremarks'] .= $v['shipremarks'];//仓库品名
  3265. $post['fpdata'] .= $v['fpdata'];//产品内容
  3266. $post['whlabel'] .= ltrim($v['whlabel'],'|');//产品对应库存码
  3267. $d[] = $v['id'];
  3268. $order .= $v['orderinfo'].'('.$v['number'].')、';
  3269. $wl = $this->whlabel->find_all("zd = '".$v['number']."'");//查找是否有占用库存情况
  3270. $i = 0;
  3271. if($wl)//如果有那么清除所有占用
  3272. {
  3273. foreach ($wl as $val)
  3274. {
  3275. if($val['sku'] == 'Preset' && $val['state'] == '9')
  3276. {
  3277. $this->whlabel->remove($val['id']);//删除预设
  3278. $i++;
  3279. }
  3280. else
  3281. {
  3282. $this->whlabel->save(array('zd'=>''),$val['id']);//专属
  3283. $i++;
  3284. }
  3285. }
  3286. }
  3287. $zsl += count($wl);
  3288. $zccsl += $i;
  3289. $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']);
  3290. }
  3291. }
  3292. //计算出单条价值
  3293. /**
  3294. if($post['zsbjz'] < 1 || $post['ts'] < 1)
  3295. {
  3296. //$post['dtsbjz'] = 0;
  3297. }
  3298. else
  3299. {
  3300. //$post['dtsbjz'] = $post['zsbjz']/$post['ts'];//单条申报价
  3301. }
  3302. **/
  3303. $post['orderremarks'] = ' 《合并信息》:由'.rtrim($order,'、').'合并而来; '.$u['orderremarks'];;
  3304. $post['merge'] = $u['id'];
  3305. //$post['mergeid'] = 1;
  3306. //合并重复项
  3307. $hbcfw = explode('|',trim($post['whlabel'],'|'));
  3308. $hbcff = explode(';',trim($post['fpdata'],';'));
  3309. $c = 0;
  3310. $hbw = array();
  3311. $hbf = array();
  3312. for($i=0;$i<count($hbcfw);$i++)
  3313. {
  3314. $w = explode('-',$hbcfw[$i]);
  3315. $f = explode('|',$hbcff[$i]);
  3316. if(isset($w[2]))
  3317. {
  3318. $w2 = ($w[2]==0)?0:'';
  3319. }
  3320. else
  3321. {
  3322. $w2 = '';
  3323. }
  3324. if(!isset($hbw[$w[0].$w2]))
  3325. {
  3326. $hbw[$w[0].$w2] = $hbcfw[$i];
  3327. $hbf[$w[0].$w2] = $hbcff[$i];
  3328. }
  3329. else
  3330. {
  3331. $c++;
  3332. $cw = explode('-',$hbw[$w[0].$w2]);
  3333. $cf = explode('|',$hbf[$w[0].$w2]);
  3334. if($cw[2] != 0 && $w[2] != 0)
  3335. {
  3336. $cf[2] += $f[2];
  3337. $cf[9] .= '~'.$f[9];
  3338. $hbf[$w[0].$w2] = implode("|",$cf);
  3339. $cw[1] += $f[2];
  3340. $cw[2] .= '~'.$f[9];
  3341. $hbw[$w[0].$w2] = implode("-",$cw);
  3342. }
  3343. else if($cw[2] == 0 && $w[2] == 0)
  3344. {
  3345. $cf[2] += $f[2];
  3346. $hbf[$w[0].$w2] = implode("|",$cf);
  3347. $cw[1] += $f[2];
  3348. $hbw[$w[0].$w2] = implode("-",$cw);
  3349. }
  3350. else
  3351. {
  3352. $hbw[] = $hbcfw[$i];
  3353. $hbf[] = $hbcff[$i];
  3354. }
  3355. }
  3356. }
  3357. if($c > 0)
  3358. {
  3359. $post['fpdata'] = implode(";",$hbf).';';
  3360. $post['whlabel'] = '|'.implode("|",$hbw).'|';
  3361. }
  3362. //合并重复项结束
  3363. $this->fullorder->save($post,$u['id']);
  3364. if ($this->db->trans_status() === FALSE)
  3365. {
  3366. $this->db->trans_commit();
  3367. echo json_encode(array('msg'=>'操作失败,请重试','success'=>false));exit;
  3368. }
  3369. else
  3370. {
  3371. $this->db->trans_commit();
  3372. echo json_encode(array('msg'=>'操作成功','d'=>($d),'b'=>$u['id'],'success'=>true));
  3373. }
  3374. }
  3375. /**
  3376. $post = $this->input->post(NULL, TRUE);
  3377. if(isset($post['type']))
  3378. {
  3379. $type = $this->input->post('type');
  3380. $id = $this->input->post('id');
  3381. $u = $this->fullorder->read($id);
  3382. $rows = $this->fullorder->find_all('name = "'.$u['name'].'" or email = "'.$u['email'].'" or address = "'.$u['address'].'"','*','id desc');
  3383. if(count($rows)>1)
  3384. {
  3385. $this->db->trans_begin();
  3386. $fpdata=$rows[0]['fpdata'];//购买产品
  3387. $shouldmoney=$rows[0]['shouldmoney'];//购买应收金额
  3388. $budget=$rows[0]['budget'];//预估到帐金额
  3389. $cost=$rows[0]['cost'];//成本金额
  3390. $merge=$rows[0]['id'];
  3391. $d = array($rows[0]['id']);
  3392. for($i=1;$i<count($rows);$i++)
  3393. {
  3394. $fpdata=$fpdata.$rows[$i]['fpdata'];
  3395. $shouldmoney=$shouldmoney+$rows[$i]['shouldmoney'];
  3396. $budget=$budget+$rows[$i]['budget'];
  3397. $cost=$cost+$rows[$i]['cost'];
  3398. $d[] = $rows[$i]['id'];
  3399. $this->fullorder->save(array('merge'=>$rows[0]['id'],'mergeid'=>1),$rows[$i]['id']);
  3400. }
  3401. $this->fullorder->save(array('fpdata'=>$fpdata,'shouldmoney'=>$shouldmoney,'budget'=>$budget,'cost'=>$cost,'merge'=>$merge),$rows[0]['id']);
  3402. if ($this->db->trans_status() === FALSE)
  3403. {
  3404. $this->db->trans_commit();
  3405. echo json_encode(array('msg'=>'操作失败,请重试','success'=>false));exit;
  3406. }
  3407. else
  3408. {
  3409. $this->db->trans_commit();
  3410. echo json_encode(array('msg'=>'操作成功','d'=>($d),'b'=>$rows[0]['id'],'success'=>true));
  3411. }
  3412. }
  3413. }
  3414. **/
  3415. }
  3416. //评价管理
  3417. public function _evaluate()
  3418. {
  3419. $user = $this->user->get_api($_SESSION['api']);
  3420. if($user)
  3421. {
  3422. $fgshop = "";$sid = "";
  3423. $user = explode('|',trim($user['shop'],'|'));
  3424. foreach ($user as $value)
  3425. {
  3426. $fgshop .= " shop = ".$value." or";
  3427. $sid .= " id = ".$value." or";
  3428. }
  3429. }
  3430. $post = $this->input->post(NULL, TRUE);
  3431. if(isset($post['page']))
  3432. {
  3433. $page = $this->input->post('page',true);
  3434. $perpage = $this->input->post('perpage',true);
  3435. $shop = $this->input->post('shop',true);
  3436. $where = "1=1 and evaluate = 0 and (".rtrim($fgshop,'or').")";
  3437. if($shop)
  3438. {
  3439. $where .= " and shop = '$shop'";
  3440. }
  3441. //数据排序
  3442. $order_str = "id desc";
  3443. if(empty($page))
  3444. {
  3445. $start = 0;
  3446. $perpage = 1;
  3447. }
  3448. else
  3449. {
  3450. $start = ($page - 1)*$perpage;
  3451. }
  3452. //取得信息列表
  3453. $info_list = $this->fullorder->find_all($where,'id,shop,orderinfo,number,operation',$order_str,$start,$perpage);
  3454. //格式化数据
  3455. foreach ($info_list as $key=>$value)
  3456. {
  3457. $shop = $this->shop->read($value['shop']);
  3458. $info_list[$key]['shop'] = $shop['shopname'];
  3459. $info_list[$key]['operation'] = "评价";
  3460. }
  3461. $total = $this->fullorder->find_count($where);
  3462. $pagenum = ceil($total/$perpage);
  3463. $over = $total-($start+$perpage);
  3464. $rows = array('total'=>$total,'over'=>$over,'pagenum'=>$pagenum,'rows'=>($info_list));
  3465. echo json_encode($rows);exit;
  3466. }
  3467. $this->_Template('fullorder_evaluate',$this->data);
  3468. }
  3469. //订单消息
  3470. public function _state()
  3471. {
  3472. $user = $this->user->get_api($_SESSION['api']);
  3473. if($user)
  3474. {
  3475. $fgshop = "";$sid = "";
  3476. $user = explode('|',trim($user['shop'],'|'));
  3477. foreach ($user as $value)
  3478. {
  3479. $fgshop .= " shop = ".$value." or";
  3480. $sid .= " id = ".$value." or";
  3481. }
  3482. }
  3483. $post = $this->input->post(NULL, TRUE);
  3484. if(isset($post['page']))
  3485. {
  3486. $page = $this->input->post('page',true);
  3487. $perpage = $this->input->post('perpage',true);
  3488. $timetk = $this->input->post('timetk',true);
  3489. $timetj = $this->input->post('timetj',true);
  3490. $shop = $this->input->post('shop',true);
  3491. $expressstate = $this->input->post('expressstate',true);
  3492. $fs = $this->input->post('fs',true);
  3493. $state = $this->input->post('state',true);
  3494. $express = $this->input->post('express',true);
  3495. $review = $this->input->post('review',true);
  3496. $orderinfo = $this->input->post('orderinfo',true);
  3497. $number = $this->input->post('number',true);
  3498. $waybill = $this->input->post('waybill',true);
  3499. $xztime = $this->input->post('xztime',true);
  3500. $timetk = strtotime($timetk);
  3501. $timetj = strtotime($timetj);
  3502. $where = "1=1 and mergeid = 0 and (".rtrim($fgshop,'or').")";
  3503. if($timetk && $timetj)
  3504. {
  3505. $where .= " and ".$xztime." > '$timetk' and ".$xztime." < '$timetj'";
  3506. }
  3507. if($xztime == 'librarytime')
  3508. {
  3509. $order_str = "librarytime desc";
  3510. }
  3511. else if($xztime == 'dtime')
  3512. {
  3513. $order_str = "dtime desc";
  3514. }
  3515. if($shop)
  3516. {
  3517. $where .= " and shop = '$shop'";
  3518. }
  3519. if($expressstate)
  3520. {
  3521. $where .= " and expressstate = '$expressstate'";
  3522. }
  3523. if($review)
  3524. {
  3525. $where .= " and review = '$review'";
  3526. }
  3527. if($fs)
  3528. {
  3529. if($fs == '2')
  3530. {
  3531. $where .= " and exstateerror != ''";
  3532. }
  3533. else
  3534. {
  3535. $where .= " and exstateerror = ''";
  3536. }
  3537. }
  3538. if($state)
  3539. {
  3540. $where .= " and state = '$state'";
  3541. }
  3542. if($express)
  3543. {
  3544. $where .= " and express = '$express'";
  3545. }
  3546. if($orderinfo)
  3547. {
  3548. $where .= " and orderinfo = '$orderinfo'";
  3549. }
  3550. if($number)
  3551. {
  3552. $where .= " and number = '$number'";
  3553. }
  3554. if($waybill)
  3555. {
  3556. $where .= " and waybill = '$waybill'";
  3557. }
  3558. if(empty($page))
  3559. {
  3560. $start = 0;
  3561. $perpage = 1;
  3562. }
  3563. else
  3564. {
  3565. $start = ($page - 1)*$perpage;
  3566. }
  3567. //取得信息列表
  3568. $info_list = $this->fullorder->find_all($where,'id,shop,orderinfo,number,country,library,librarytime,express,waybill,content,orderremarks,exstateerror',$order_str,$start,$perpage);
  3569. //格式化数据
  3570. foreach ($info_list as $key=>$value)
  3571. {
  3572. $shop = $this->shop->read($value['shop']);
  3573. $info_list[$key]['shop'] = $shop['shopname'];
  3574. $country = $this->country->read($value['country']);
  3575. $info_list[$key]['country'] = $country['name'];
  3576. //$state = $this->typeclass->read($value['state']);
  3577. //$info_list[$key]['state'] = $state['title'];
  3578. if($value['library'] == 1)
  3579. {
  3580. $info_list[$key]['library'] = "未出库";
  3581. }
  3582. else if($value['library'] == 2)
  3583. {
  3584. $info_list[$key]['library'] = "已出库";
  3585. }
  3586. else if($value['library'] == 3)
  3587. {
  3588. $info_list[$key]['library'] = "已退库";
  3589. }
  3590. if($value['librarytime'] == '0')
  3591. {
  3592. $info_list[$key]['librarytime'] = '无';
  3593. }
  3594. else
  3595. {
  3596. $info_list[$key]['librarytime'] = date('Y-m-d',$value['librarytime']).'<br>'.date('H:i:s',$value['librarytime']);
  3597. }
  3598. $express = $this->express->read($value['express']);
  3599. $info_list[$key]['express'] = $express['servicename'];
  3600. }
  3601. $total = $this->fullorder->find_count($where);
  3602. $pagenum = ceil($total/$perpage);
  3603. $over = $total-($start+$perpage);
  3604. $rows = array('total'=>$total,'over'=>$over,'pagenum'=>$pagenum,'rows'=>($info_list));
  3605. echo json_encode($rows);exit;
  3606. }
  3607. $notice = $this->notice->find_all("type = '1' and (".rtrim($fgshop,'or').")");
  3608. $this->data['notice'] = $notice;
  3609. $wlshop = $this->shop->find_all('1=1 and '.rtrim($sid,'or'));
  3610. $this->data['wlshop'] = $wlshop;
  3611. $this->data['express'] = $this->express->find_all();
  3612. $this->_Template('fullorder_state',$this->data);
  3613. }
  3614. //物流信息
  3615. public function _wl()
  3616. {
  3617. $user = $this->user->get_api($_SESSION['api']);
  3618. if($user)
  3619. {
  3620. $fgshop = "";$sid = "";
  3621. $user = explode('|',trim($user['shop'],'|'));
  3622. foreach ($user as $value)
  3623. {
  3624. $fgshop .= " shop = ".$value." or";
  3625. $sid .= " id = ".$value." or";
  3626. }
  3627. }
  3628. $post = $this->input->post(NULL, TRUE);
  3629. if(isset($post['page']))
  3630. {
  3631. $page = $this->input->post('page',true);
  3632. $perpage = $this->input->post('perpage',true);
  3633. $timetk = $this->input->post('timetk',true);
  3634. $timetj = $this->input->post('timetj',true);
  3635. $shop = $this->input->post('shop',true);
  3636. $expressstate = $this->input->post('expressstate',true);
  3637. $fs = $this->input->post('fs',true);
  3638. $state = $this->input->post('state',true);
  3639. $express = $this->input->post('express',true);
  3640. $orderinfo = $this->input->post('orderinfo',true);
  3641. $number = $this->input->post('number',true);
  3642. $waybill = $this->input->post('waybill',true);
  3643. $wlyc = $this->input->post('wlyc',true);
  3644. $wltype = $this->input->post('wltype',true);
  3645. $source = $this->input->post('source',true);
  3646. $xztime = $this->input->post('xztime',true);
  3647. $wlbz = $this->input->post('wlbz',true);
  3648. $timetk = strtotime($timetk);
  3649. $timetj = strtotime($timetj);
  3650. $where = "1=1 and mergeid = 0 and (".rtrim($fgshop,'or').")";
  3651. if($timetk && $timetj)
  3652. {
  3653. $where .= " and ".$xztime." > '$timetk' and ".$xztime." < '$timetj'";
  3654. }
  3655. if($xztime == 'librarytime')
  3656. {
  3657. $order_str = "librarytime desc";
  3658. }
  3659. else if($xztime == 'dtime')
  3660. {
  3661. $order_str = "dtime desc";
  3662. }
  3663. else if ($xztime == 'wlfstime')
  3664. {
  3665. $order_str = "wlfstime desc";
  3666. }
  3667. if($shop)
  3668. {
  3669. $where .= " and shop = '$shop'";
  3670. }
  3671. if($fs)
  3672. {
  3673. if($fs == '1')
  3674. {
  3675. $where .= " and wlcontent != ''";
  3676. }
  3677. if($fs == '2')
  3678. {
  3679. $where .= " and wlerror != ''";
  3680. }
  3681. if($fs == '3')
  3682. {
  3683. $where .= " and wlcontent = '' and shouldmoney > 100";
  3684. }
  3685. else if($fs == '4')
  3686. {
  3687. $where .= " and wltype = '1'";
  3688. }
  3689. }
  3690. if($state)
  3691. {
  3692. $where .= " and state = '$state'";
  3693. }
  3694. if($express)
  3695. {
  3696. $where .= " and express = '$express'";
  3697. }
  3698. if($orderinfo)
  3699. {
  3700. $where .= " and orderinfo = '$orderinfo'";
  3701. }
  3702. if($number)
  3703. {
  3704. $where .= " and number = '$number'";
  3705. }
  3706. if($waybill)
  3707. {
  3708. $where .= " and waybill = '$waybill'";
  3709. }
  3710. if($wlbz)
  3711. {
  3712. $where .= " and wlbz like '%$wlbz%'";
  3713. }
  3714. if($wlyc!='')
  3715. {
  3716. $where .= " and wlyc = '$wlyc'";
  3717. }
  3718. if($wltype!='')
  3719. {
  3720. $where .= " and wltype = '$wltype'";
  3721. }
  3722. if($source)
  3723. {
  3724. if($source == 1)
  3725. {
  3726. $where .= " and source = '$source'";
  3727. }
  3728. else
  3729. {
  3730. $where .= " and source != '1'";
  3731. }
  3732. }
  3733. if($expressstate != '')
  3734. {
  3735. if($expressstate == 99)
  3736. {
  3737. $cxid = '';
  3738. $sjcc = $this->awlgx->find_all("time < '".(time()-3*24*3600)."' and exstate != 6",'number');
  3739. foreach ($sjcc as $v)
  3740. {
  3741. $cxid .= "number = '".$v['number']."' or ";
  3742. }
  3743. $where .= ' and ('.rtrim($cxid,'or ').')';
  3744. }
  3745. else
  3746. {
  3747. $where .= " and expressstate = '$expressstate'";
  3748. }
  3749. }
  3750. if(empty($page))
  3751. {
  3752. $start = 0;
  3753. $perpage = 1;
  3754. }
  3755. else
  3756. {
  3757. $start = ($page - 1)*$perpage;
  3758. }
  3759. //取得信息列表
  3760. $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);
  3761. //格式化数据
  3762. foreach ($info_list as $key=>$value)
  3763. {
  3764. $f = $this->fullorder->read($value['id']);
  3765. $info_list[$key]['number'] = "<p>".$value['number']."</p>"."<p>".$f['email']."</p>";
  3766. $country = $this->country->read($value['country']);
  3767. $info_list[$key]['country'] = "<p>".$country['name']."</p><p>".$f['phone']."</p>";
  3768. //$state = $this->typeclass->read($value['state']);
  3769. //$info_list[$key]['state'] = $state['title'];
  3770. if($value['library'] == 1)
  3771. {
  3772. $info_list[$key]['library'] = "未出库";
  3773. }
  3774. else if($value['library'] == 2)
  3775. {
  3776. $info_list[$key]['library'] = "已出库";
  3777. }
  3778. else if($value['library'] == 3)
  3779. {
  3780. $info_list[$key]['library'] = "已退库";
  3781. }
  3782. if($value['librarytime'] == '0')
  3783. {
  3784. $info_list[$key]['librarytime'] = '无';
  3785. }
  3786. else
  3787. {
  3788. $info_list[$key]['librarytime'] = date('Y-m-d',$value['librarytime']).'<br>'.date('H:i:s',$value['librarytime']).'<br>'.$f['shouldmoney'];
  3789. }
  3790. if($value['expressstate'] == 0)
  3791. {
  3792. $info_list[$key]['expressstate'] = "无信息";
  3793. }
  3794. else if($value['expressstate'] == 2)
  3795. {
  3796. $info_list[$key]['expressstate'] = "已取件";
  3797. }
  3798. else if($value['expressstate'] == 3)
  3799. {
  3800. $info_list[$key]['expressstate'] = "在途中";
  3801. }
  3802. /**
  3803. else if($value['expressstate'] == 4)
  3804. {
  3805. $info_list[$key]['expressstate'] = "到达目的地国".$value['expressstate'];
  3806. }
  3807. **/
  3808. else if($value['expressstate'] == 4 || $value['expressstate'] == 5)
  3809. {
  3810. $info_list[$key]['expressstate'] = "即将派送";
  3811. }
  3812. else if($value['expressstate'] == 6)
  3813. {
  3814. $info_list[$key]['expressstate'] = "已签收";
  3815. }
  3816. else if($value['expressstate'] == 1)
  3817. {
  3818. $info_list[$key]['expressstate'] = "派送异常";
  3819. }
  3820. $express = $this->express->read($value['express']);
  3821. $info_list[$key]['express'] = $express['servicename'];
  3822. if($value['wltype'] == '0')
  3823. {
  3824. $info_list[$key]['wltype'] = "<p class='ckn'><b class='wlfsxx' data-id='".$value['id']."' data-q='1'>禁止发送</b></p>";
  3825. }
  3826. else
  3827. {
  3828. $info_list[$key]['wltype'] = "<p class='ckn'><b class='wlfsxx' data-id='".$value['id']."' data-q='1'>允许发送</b></p>";
  3829. }
  3830. if($f['wlyc'] == '0')
  3831. {
  3832. $info_list[$key]['wltype'] .= "<p class='yc'><b class='wlyc' data-id='".$value['id']."' data-t='1'>加入异常处理中</b></p>";
  3833. }
  3834. else if($f['wlyc'] == '1')
  3835. {
  3836. $info_list[$key]['wltype'] .= "<p class='yc'><b class='wlyc' data-id='".$value['id']."' data-t='2'>移入异常已处理</b></p>";
  3837. $info_list[$key]['wltype'] .= "<p class='yc'><b class='ycyc' data-id='".$value['id']."' data-c='2'>移出异常处理中</b></p>";
  3838. }
  3839. else if($f['wlyc'] == '2')
  3840. {
  3841. $info_list[$key]['wltype'] .= "<p><b>异常已处理</b></p>";
  3842. }
  3843. if(stripos($value['excontent'],'<br />') !== false)
  3844. {
  3845. $excontent = explode('<br />',$value['excontent']);
  3846. $info_list[$key]['excontent'] = '<i class="method fa fa-list-ul" data-t="'.$value['excontent'].'"></i> '.$excontent[0];
  3847. }
  3848. }
  3849. $total = $this->fullorder->find_count($where);
  3850. $pagenum = ceil($total/$perpage);
  3851. $over = $total-($start+$perpage);
  3852. $rows = array('total'=>$total,'over'=>$over,'pagenum'=>$pagenum,'rows'=>($info_list),'cs'=>$where);
  3853. echo json_encode($rows);exit;
  3854. }
  3855. if(isset($post['q']))
  3856. {
  3857. $id = $this->input->post('id',true);
  3858. $f = $this->fullorder->read($id);
  3859. $wl = ($f['wltype']=='0')?1:0;
  3860. $wltitle = ($f['wltype']=='0')?'已禁发送':'已允发送';
  3861. if($this->fullorder->save(array('wltype'=>$wl),$id))
  3862. {
  3863. echo json_encode(array('msg'=>'ckn','id'=>$id,'wltitle'=>$wltitle,'success'=>true));exit;
  3864. }
  3865. else
  3866. {
  3867. echo json_encode(array('msg'=>'失败,请重试','id'=>$id,'wltitle'=>$wltitle,'success'=>false));exit;
  3868. }
  3869. }
  3870. if(isset($post['t']))
  3871. {
  3872. $id = $this->input->post('id',true);
  3873. $f = $this->fullorder->read($id);
  3874. $t = $this->input->post('t',true);
  3875. $yc = ($f['wlyc']=='0')?1:2;
  3876. $yctitle = ($f['wlyc']=='0')?'移入成功':'异常已处理';
  3877. if($this->fullorder->save(array('wlyc'=>$yc),$id))
  3878. {
  3879. echo json_encode(array('msg'=>'yc','id'=>$id,'wltitle'=>$yctitle,'success'=>true));exit;
  3880. }
  3881. else
  3882. {
  3883. echo json_encode(array('msg'=>'失败,请重试','id'=>$id,'wltitle'=>$yctitle,'success'=>false));exit;
  3884. }
  3885. }
  3886. if(isset($post['c']))
  3887. {
  3888. $id = $this->input->post('id',true);
  3889. $f = $this->fullorder->read($id);
  3890. $t = $this->input->post('t',true);
  3891. $yc = 0;
  3892. $yctitle = '移出成功';
  3893. if($this->fullorder->save(array('wlyc'=>$yc),$id))
  3894. {
  3895. echo json_encode(array('msg'=>'yc','id'=>$id,'wltitle'=>$yctitle,'success'=>true));exit;
  3896. }
  3897. else
  3898. {
  3899. echo json_encode(array('msg'=>'失败,请重试','id'=>$id,'wltitle'=>$yctitle,'success'=>false));exit;
  3900. }
  3901. }
  3902. $notice = $this->notice->find_all("type = '2' and (".rtrim($fgshop,'or').")");
  3903. $this->data['notice'] = $notice;
  3904. $wlshop = $this->shop->find_all('1=1 and '.rtrim($sid,'or'));
  3905. $this->data['wlshop'] = $wlshop;
  3906. $this->data['express'] = $this->express->find_all();
  3907. $this->_Template('fullorder_wl',$this->data);
  3908. }
  3909. //审核订单
  3910. public function _review()
  3911. {
  3912. $user = $this->user->get_api($_SESSION['api']);
  3913. if($user)
  3914. {
  3915. $fgshop = "";$sid = "";
  3916. $user = explode('|',trim($user['shop'],'|'));
  3917. foreach ($user as $value)
  3918. {
  3919. $sid .= " id = ".$value." or";
  3920. $fgshop .= " shop = ".$value." or";
  3921. }
  3922. $fgshop = " and (".rtrim($fgshop,'or').")";
  3923. }
  3924. $post = $this->input->post(NULL, TRUE);
  3925. if(isset($post['page']))
  3926. {
  3927. $page = $this->input->post('page',true);
  3928. $perpage = $this->input->post('perpage',true);
  3929. $source = $this->input->post('source',true);
  3930. $warehouse = $this->input->post('warehouse',true);
  3931. $express = $this->input->post('express',true);
  3932. $orderremarks = $this->input->post('orderremarks',true);
  3933. $shop = $this->input->post('shop',true);
  3934. $review = $this->input->post('review',true);
  3935. $orderinfo = $this->input->post('orderinfo',true);
  3936. $shipremarks = $this->input->post('shipremarks',true);
  3937. $number = $this->input->post('number',true);
  3938. $timetk = $this->input->post('timetk',true);
  3939. $timetj = $this->input->post('timetj',true);
  3940. $timetk = strtotime($timetk);
  3941. $timetj = strtotime($timetj);
  3942. $where = "mergeid = 0 and state = '207'".$fgshop;
  3943. if($timetk && $timetj)
  3944. {
  3945. $where .= " and dtime > '$timetk' and dtime < '$timetj'";
  3946. }
  3947. if($source)
  3948. {
  3949. if($source == '2d')
  3950. {
  3951. $where .= " and source >= '2'";
  3952. }
  3953. else
  3954. {
  3955. $where .= " and source = '$source'";
  3956. }
  3957. }
  3958. if($review)
  3959. {
  3960. $where .= " and review = '$review'";
  3961. }
  3962. else
  3963. {
  3964. $where .= "and review <= '2'";
  3965. // $where .= " and ((review = '2' and source = '1') or (review = '1' and source >= '2'))";
  3966. }
  3967. if($shop)
  3968. {
  3969. $where .= " and shop = '$shop'";
  3970. }
  3971. if($warehouse)
  3972. {
  3973. $where .= " and type = '$warehouse'";
  3974. }
  3975. if($express)
  3976. {
  3977. $where .= " and express = '$express'";
  3978. }
  3979. if($orderremarks)
  3980. {
  3981. $where .= " and orderremarks like '%$orderremarks%'";
  3982. }
  3983. if($orderinfo)
  3984. {
  3985. $where .= " and orderinfo = '$orderinfo'";
  3986. }
  3987. if($number)
  3988. {
  3989. $where .= " and number = '$number'";
  3990. }
  3991. if($shipremarks)
  3992. {
  3993. $where .= " and shipremarks like '%$shipremarks%'";
  3994. }
  3995. //数据排序
  3996. $order_str = "id desc";
  3997. if(empty($page))
  3998. {
  3999. $start = 0;
  4000. $perpage = 1;
  4001. }
  4002. else
  4003. {
  4004. $start = ($page - 1)*$perpage;
  4005. }
  4006. //取得信息列表
  4007. $info_list = $this->fullorder->find_all($where,'id,shop,type,orderinfo,number,client,express,buytime,shouldmoney,review,orderremarks');
  4008. //格式化数据
  4009. foreach ($info_list as $key=>$value)
  4010. {
  4011. $lr = $this->fullorder->read($value['id']);
  4012. $shop = $this->shop->read($value['shop']);
  4013. $info_list[$key]['shop'] = $shop['shopname'];
  4014. $warehouse = $this->warehouse->read($value['type']);
  4015. $info_list[$key]['type'] = $warehouse['title'];
  4016. $express = $this->express->read($value['express']);
  4017. $info_list[$key]['express'] = $express['servicename'];
  4018. $info_list[$key]['buytime'] = '<p>'.date('Y-m-d',$value['buytime']).'</p><p>'.date('H:i:s',$value['buytime']).'</p>';
  4019. if($value['review'] == 1)
  4020. {
  4021. $info_list[$key]['review'] = "未送审";
  4022. }
  4023. else if($value['review'] == 2)
  4024. {
  4025. $info_list[$key]['review'] = "待审核";
  4026. }
  4027. else if($value['review'] == 3)
  4028. {
  4029. $info_list[$key]['review'] = "不通过";
  4030. }
  4031. else if($value['review'] == 4)
  4032. {
  4033. $info_list[$key]['review'] = "取消重审";
  4034. }
  4035. else if($value['review'] == 5)
  4036. {
  4037. $info_list[$key]['review'] = "审核通过";
  4038. }
  4039. else if($value['review'] == 6)
  4040. {
  4041. $info_list[$key]['review'] = "自动通过";
  4042. }
  4043. /**
  4044. $info_list[$key]['library'] = "";
  4045. if($value['review'] == 1)
  4046. {
  4047. $info_list[$key]['library'] = "<p><b class='focz' data-type='6' data-id='".$value['id']."'>审核通过</b></p>";
  4048. }
  4049. if($value['review'] == 2)
  4050. {
  4051. $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>";
  4052. }
  4053. else if($value['review'] == 3)
  4054. {
  4055. $info_list[$key]['library'] = "<p><b class='fullorderreview' data-type='5' data-id='".$value['id']."'>审核通过</b></p>";
  4056. }
  4057. else if($value['review'] == 5)
  4058. {
  4059. $info_list[$key]['library'] = "<p><b class='fullorderreview' data-type='3' data-id='".$value['id']."'>不通过</b></p>";
  4060. }
  4061. $info_list[$key]['shouldmoney'] = $value['shouldmoney'].' '.$lr['currencytitle'];
  4062. $lr['hl'] = $lr['hl']==0?6.71:$lr['hl'];
  4063. $cost = $lr['cost']/$lr['hl'];
  4064. $currencytitle = $lr['budget']-$lr['refundj']-$cost-$lr['expressmoney'];
  4065. $info_list[$key]['currencytitle'] = sprintf("%.2f",$currencytitle).' '.$lr['currencytitle'];
  4066. **/
  4067. }
  4068. $total = $this->fullorder->find_count($where);
  4069. $pagenum = ceil($total/$perpage);
  4070. $over = $total-($start+$perpage);
  4071. $rows = array('total'=>$total,'over'=>$over,'pagenum'=>$pagenum,'rows'=>($info_list));
  4072. echo json_encode($rows);exit;
  4073. }
  4074. $wlshop = $this->shop->find_all('1=1 and '.rtrim($sid,'or'));
  4075. $this->data['shop'] = $wlshop;
  4076. $this->_Template('fullorder_review',$this->data);
  4077. }
  4078. public function _wlbz($arg_array)
  4079. {
  4080. $post = $this->input->post(NULL, TRUE);
  4081. if(isset($post['id']))
  4082. {
  4083. $id = $this->input->post('id',true);
  4084. $post['wlbz'] = $this->input->post('wlbz',true);
  4085. if($post['wlbz'] == '')
  4086. {
  4087. echo json_encode(array('msg'=>'备注不能为空','success'=>false));exit;
  4088. }
  4089. if($this->fullorder->save($post,$id))
  4090. {
  4091. echo json_encode(array('msg'=>'修改成功','id'=>$id,'success'=>true));exit;
  4092. }
  4093. else
  4094. {
  4095. echo json_encode(array('msg'=>'修改失败,请重试','success'=>false));exit;
  4096. }
  4097. }
  4098. $arg_array = $arg_array[0];
  4099. $fullorder = $this->fullorder->read($arg_array);
  4100. $this->data['fullorder'] = $fullorder;
  4101. $this->_Template('fullorder_wlbz',$this->data);
  4102. }
  4103. //导出资金统计excel
  4104. public function _fmexcel()
  4105. {
  4106. $user = $this->user->get_api($_SESSION['api']);
  4107. if($user)
  4108. {
  4109. $fgshop = "";$sid = "";
  4110. $user = explode('|',trim($user['shop'],'|'));
  4111. foreach ($user as $value)
  4112. {
  4113. $fgshop .= " shop = ".$value." or";
  4114. $sid .= " id = ".$value." or";
  4115. }
  4116. }
  4117. if(isset($_GET['excel']))
  4118. {
  4119. $timetk = $this->input->get('timetk',true);
  4120. $timetj = $this->input->get('timetj',true);
  4121. $shop = $this->input->get('shop',true);
  4122. $source = $this->input->get('source',true);
  4123. $state = $this->input->get('state',true);
  4124. $type = $this->input->get('type',true);
  4125. $orderinfo = $this->input->get('orderinfo',true);
  4126. $user = $this->input->get('user',true);
  4127. $name = $this->input->get('name',true);
  4128. $timetk = strtotime($timetk);
  4129. $timetj = strtotime($timetj);
  4130. $where = "1=1 and mergeid = 0 and (".rtrim($fgshop,'or').")";
  4131. if($timetk && $timetj)
  4132. {
  4133. $where .= " and buytime > '$timetk' and buytime < '$timetj'";
  4134. }
  4135. if($shop)
  4136. {
  4137. $where .= " and shop = '$shop'";
  4138. }
  4139. if($source)
  4140. {
  4141. $where .= " and source = '$source'";
  4142. }
  4143. if($state)
  4144. {
  4145. if($state == 1)
  4146. {
  4147. $where .= " and state = '$state'";
  4148. }
  4149. }
  4150. if($type)
  4151. {
  4152. $where .= " and type = '$type'";
  4153. }
  4154. if($orderinfo)
  4155. {
  4156. $where .= " and orderinfo = '$orderinfo'";
  4157. }
  4158. if($user)
  4159. {
  4160. $where .= " and user = '$user'";
  4161. }
  4162. if($name)
  4163. {
  4164. $where .= " and name = '$name'";
  4165. }
  4166. //取得信息列表
  4167. $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');
  4168. //格式化数据
  4169. $i = 1;$shouldmoney = 0;$refund = 0;$budget = 0;$currency = 0;$hl=1;
  4170. foreach ($info_list as $key=>$value)
  4171. {
  4172. $info_list[$key]['id'] = $i;
  4173. if($value['currencytitle'] != "CNY")
  4174. {
  4175. $hl=$value['hl'];
  4176. }
  4177. $shouldmoney=$shouldmoney+($value['shouldmoney']*$hl);
  4178. $budget=$budget+($value['budget']*$hl);
  4179. $currency=$currency+(($value['shouldmoney']-$value['budget'])*$hl);
  4180. $refund=$refund+($value['refund']*$hl);
  4181. $shop = $this->shop->read($value['shop']);
  4182. $info_list[$key]['shop'] = $shop['shopname'];
  4183. $info_list[$key]['user'] = $shop['shopuser'];
  4184. $info_list[$key]['dtime'] = date('Y-m-d H:i:s',$value['dtime']);
  4185. $info_list[$key]['ftime'] = date('Y-m-d H:i:s',$value['ftime']);
  4186. $country = $this->country->read($value['country']);
  4187. $info_list[$key]['country'] = $country['name'];
  4188. $express = $this->express->read($value['express']);
  4189. $info_list[$key]['express'] = $express['servicename'];
  4190. $info_list[$key]['shouldmoney'] = $value['shouldmoney'].' '.$value['currencytitle'];
  4191. $info_list[$key]['refund'] = $value['refund'].' '.$value['currencytitle'];
  4192. $info_list[$key]['budget'] = $value['budget'].' '.$value['currencytitle'];
  4193. $info_list[$key]['currency'] = sprintf("%.2f",$value['shouldmoney']-$value['budget']).' '.$value['currencytitle'];
  4194. $fpdata = array();
  4195. if(stripos($value['fpdata'],';') !== false)
  4196. {
  4197. $fpdata = explode(';',rtrim($value['fpdata'],';'));
  4198. foreach ($fpdata as $ke=>$va)
  4199. {
  4200. $v = explode('|',rtrim($va,'|'));
  4201. $fpdata[$ke] = array($v[4],$v[5],$v[6],$v[5]*$v[6]);//内容,条数,数量,总条数
  4202. }
  4203. }
  4204. $info_list[$key]['fpdata'] = $fpdata;
  4205. $i++;
  4206. }
  4207. $data = array($shouldmoney.' CNY',$refund.' CNY',$currency.' CNY',$budget.' CNY');
  4208. $title = "订单资金信息";
  4209. $titlename = "<table border=1>
  4210. <tr><th colspan='14' align='left'><h3>".$title."<h3></th></tr>
  4211. <tr>
  4212. <td>NO.</td>
  4213. <td>店铺</td>
  4214. <td>负责人</td>
  4215. <td>编号</td>
  4216. <td>订单号</td>
  4217. <td>客户姓名</td>
  4218. <td>国家</td>
  4219. <td>订单日期</td>
  4220. <td>发货日期</td>
  4221. <td>快递公司</td>
  4222. <td>运单号</td>
  4223. <td>订单金额</td>
  4224. <td>退款金额</td>
  4225. <td>手续费</td>
  4226. <td>预估金额</td>
  4227. <td>
  4228. <table border=1>
  4229. <tr><td colspan='3' align='center'>订单产品信息</td></tr>
  4230. <tr>
  4231. <td>产品</td>
  4232. <td>条数</td>
  4233. <td>数量</td>
  4234. </tr>
  4235. </table>
  4236. </td>
  4237. <td>总条数</td>
  4238. </tr>
  4239. </table>";
  4240. $filename = $title.".xls";
  4241. $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";
  4242. $this->excel->get_fz($info_list,$titlename,$filename,$tail);
  4243. }
  4244. }
  4245. //导出订单excel
  4246. public function _fdexcel()
  4247. {
  4248. if(isset($_GET['excel']))
  4249. {
  4250. $page = $this->input->post('page',true);
  4251. $perpage = $this->input->post('perpage',true);
  4252. $timetk = $this->input->post('timetk',true);
  4253. $timetj = $this->input->post('timetj',true);
  4254. $shop = $this->input->post('shop',true);
  4255. $source = $this->input->post('source',true);
  4256. $state = $this->input->post('state',true);
  4257. $review = $this->input->post('review',true);
  4258. $express = $this->input->post('express',true);
  4259. $orderinfo = $this->input->post('orderinfo',true);
  4260. $user = $this->input->post('user',true);
  4261. $name = $this->input->post('name',true);
  4262. $waybill = $this->input->post('waybill',true);
  4263. $timetk = strtotime($timetk);
  4264. $timetj = strtotime($timetj);
  4265. $where = "1=1 and mergeid = 0";
  4266. if($timetk && $timetj)
  4267. {
  4268. $where .= " and buytime > '$timetk' and buytime < '$timetj'";
  4269. }
  4270. if($shop)
  4271. {
  4272. $where .= " and shop = '$shop'";
  4273. }
  4274. if($source)
  4275. {
  4276. $where .= " and source = '$source'";
  4277. }
  4278. if($state)
  4279. {
  4280. $where .= " and state = '$state'";
  4281. }
  4282. if($review)
  4283. {
  4284. $where .= " and review = '$review'";
  4285. }
  4286. if($express)
  4287. {
  4288. $where .= " and express = '$express'";
  4289. }
  4290. if($orderinfo)
  4291. {
  4292. $where .= " and orderinfo = '$orderinfo'";
  4293. }
  4294. if($user)
  4295. {
  4296. $where .= " and user = '$user'";
  4297. }
  4298. if($name)
  4299. {
  4300. $where .= " and name = '$name'";
  4301. }
  4302. if($waybill)
  4303. {
  4304. $where .= " and waybill = '$waybill'";
  4305. }
  4306. //取得信息列表
  4307. $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');
  4308. //格式化数据
  4309. $i = 1;$shouldmoney = 0;$hl=1;
  4310. foreach ($info_list as $key=>$value)
  4311. {
  4312. $info_list[$key]['id'] = $i;
  4313. if($value['source'] == 1)
  4314. {
  4315. $info_list[$key]['source'] = "线下订单";
  4316. }
  4317. else if($value['source'] == 2)
  4318. {
  4319. $info_list[$key]['source'] = "PC订单";
  4320. }
  4321. else if($value['source'] == 3)
  4322. {
  4323. $info_list[$key]['source'] = "手机订单";
  4324. }
  4325. if($value['currencytitle'] != "CNY")
  4326. {
  4327. $hl=$value['hl'];
  4328. }
  4329. $shouldmoney=$shouldmoney+($value['shouldmoney']*$hl);
  4330. $shop = $this->shop->read($value['shop']);
  4331. $info_list[$key]['shop'] = $shop['shopname'];
  4332. $info_list[$key]['dtime'] = date('Y-m-d H:i:s',$value['dtime']);
  4333. $info_list[$key]['ftime'] = date('Y-m-d H:i:s',$value['ftime']);
  4334. $state = $this->typeclass->read($value['state']);
  4335. $info_list[$key]['state'] = $state['title'];
  4336. $country = $this->country->read($value['country']);
  4337. $info_list[$key]['country'] = $country['name'];
  4338. $express = $this->express->read($value['express']);
  4339. $info_list[$key]['express'] = $express['servicename'];
  4340. $info_list[$key]['shouldmoney'] = $value['shouldmoney'].' '.$value['currencytitle'];
  4341. $fpdata = array();
  4342. if(stripos($value['fpdata'],';') !== false)
  4343. {
  4344. $fpdata = explode(';',rtrim($value['fpdata'],';'));
  4345. foreach ($fpdata as $ke=>$va)
  4346. {
  4347. $v = explode('|',rtrim($va,'|'));
  4348. $fpdata[$ke] = array($v[4],$v[5],$v[6],$v[5]*$v[6]);//内容,条数,数量,总条数
  4349. }
  4350. }
  4351. $info_list[$key]['fpdata'] = $fpdata;
  4352. $i++;
  4353. }
  4354. $data = array($shouldmoney.' CNY');
  4355. $title = "订单信息表";
  4356. $titlename = "<table border=1>
  4357. <tr><th colspan='14' align='left'><h3>".$title."<h3></th></tr>
  4358. <tr>
  4359. <td>NO.</td>
  4360. <td>店铺</td>
  4361. <td>编号</td>
  4362. <td>订单号</td>
  4363. <td>订单类型</td>
  4364. <td>客户姓名</td>
  4365. <td>收件人名称</td>
  4366. <td>收货人地址</td>
  4367. <td>城市</td>
  4368. <td>邮编</td>
  4369. <td>州</td>
  4370. <td>国家</td>
  4371. <td>收件电话</td>
  4372. <td>订单日期</td>
  4373. <td>发货日期</td>
  4374. <td>订单状态</td>
  4375. <td>订单金额</td>
  4376. <td>快递公司</td>
  4377. <td>运单号</td>
  4378. <td>订单备注</td>
  4379. <td>客户备注</td>
  4380. <td>
  4381. <table border=1>
  4382. <tr><td colspan='3' align='center'>订单产品信息</td></tr>
  4383. <tr>
  4384. <td>产品</td>
  4385. <td>条数</td>
  4386. <td>数量</td>
  4387. </tr>
  4388. </table>
  4389. </td>
  4390. <td>总条数</td>
  4391. </tr>
  4392. </table>";
  4393. $filename = $title.".xls";
  4394. $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";
  4395. $this->excel->get_fz($info_list,$titlename,$filename,$tail);
  4396. }
  4397. }
  4398. public function _black()
  4399. {
  4400. $post = $this->input->post(NULL, TRUE);
  4401. if(isset($post['bd']))
  4402. {
  4403. $bd = $this->input->post('bd',true);
  4404. $rows = $this->fullorder->read($bd);
  4405. $post['shop'] = $rows['shop'];
  4406. $post['source'] = 1;
  4407. $post['name'] = $rows['client'];
  4408. $post['email'] = $rows['email'];
  4409. $post['phone'] = $rows['phone'];
  4410. $post['country'] = $rows['country'];
  4411. $post['money'] = $rows['shouldmoney'];
  4412. $post['num'] = 1;
  4413. $post['time'] = $rows['dtime'];
  4414. $post['province'] = $rows['province'];
  4415. $post['city'] = $rows['city'];
  4416. $post['street'] = $rows['street'];
  4417. $post['address'] = $rows['address'];
  4418. $post['address2'] = $rows['address2'];
  4419. $post['zipcode'] = $rows['zipcode'];
  4420. $post['type'] = 2;
  4421. if($this->customer->insert($post))
  4422. {
  4423. $this->fullorder->save(array('black'=>1),$bd);
  4424. echo json_encode(array('msg'=>'操作成功','success'=>true));exit;
  4425. }
  4426. else
  4427. {
  4428. echo json_encode(array('msg'=>'操作失败,请重试','success'=>false));exit;
  4429. }
  4430. }
  4431. }
  4432. public function _ryf()
  4433. {
  4434. $post = $this->input->post(NULL, TRUE);
  4435. if(isset($post['bd']))
  4436. {
  4437. $bd = $this->input->post('bd',true);
  4438. $d = $this->fullorder->read($bd);
  4439. if($d['state'] == 207 || $d['state'] == 207)//订单状态为等待发货或等待部分发货才可更改为允许发货
  4440. {
  4441. if($d['print'] < 3)//打印状态为未打印
  4442. {
  4443. $print = 1;//未打印
  4444. $libraryconfirm = 1;//不允许出库
  4445. $a = "订单未打印,";
  4446. }
  4447. else//已打印订单
  4448. {
  4449. $libraryconfirm = 2;//允许出库
  4450. $a = "";
  4451. }
  4452. if($this->fullorder->save(array('librarynot'=>$a,'libraryconfirm'=>$libraryconfirm,'print'=>$print),$bd))
  4453. {
  4454. echo json_encode(array('msg'=>'操作成功','success'=>true));exit;
  4455. }
  4456. else
  4457. {
  4458. echo json_encode(array('msg'=>'操作失败,请重试','success'=>false));exit;
  4459. }
  4460. }
  4461. if($this->fullorder->save(array('librarynot'=>$a,'libraryconfirm'=>$libraryconfirm,'print'=>$print),$bd))
  4462. {
  4463. echo json_encode(array('msg'=>'操作失败!订单未非发货状态','success'=>false));exit;
  4464. }
  4465. else
  4466. {
  4467. echo json_encode(array('msg'=>'操作失败,请重试','success'=>false));exit;
  4468. }
  4469. }
  4470. }
  4471. public function _fsstate()
  4472. {
  4473. $post = $this->input->post(NULL, TRUE);
  4474. if(isset($post['s']))
  4475. {
  4476. $id_arr = $this->input->post('s');
  4477. $id_arr = explode(',',$id_arr);
  4478. if(!$id_arr)
  4479. {
  4480. echo json_encode(array('msg'=>'参数错误!','success'=>false));exit;
  4481. }
  4482. foreach ($id_arr as $v)
  4483. {
  4484. $data = $this->fullorder->read($v);
  4485. $warehouse = $this->warehouse->read($data['type']);
  4486. $fs = $this->notice->get_ordertatus($data['state']);
  4487. if($fs)
  4488. {
  4489. $ck = $this->_email($fs['content'],$data,$warehouse['company']);
  4490. if($ck == 1)
  4491. {
  4492. $this->fullorder->save(array('fscontent'=>date('Y-m-d H:i:s',time()).'已发送:'.$fs['title'].' - '),$v);
  4493. }
  4494. }
  4495. }
  4496. echo json_encode(array('msg'=>'发送完成!','success'=>true));exit;
  4497. }
  4498. }
  4499. public function _power()
  4500. {
  4501. $user = $this->user->get_api($_SESSION['api']);
  4502. $post = $this->input->post(NULL, TRUE);
  4503. if(isset($post['id']))
  4504. {
  4505. $id = $this->input->post('id',true);
  4506. $fullorder = $this->fullorder->read($id);
  4507. $express = $this->express->read($fullorder['express']);
  4508. $warehouse = $this->warehouse->read($fullorder['type']);
  4509. if(($warehouse['zd'] == '1' || stripos($fullorder['whlabel'],'z|') !== false) && $fullorder['library'] == '2')
  4510. {
  4511. echo json_encode(array('msg'=>'需要先退库释放库存后才可重置!','success'=>false));exit;
  4512. }
  4513. /**
  4514. if($fullorder['print'] == '3' && isset($express['iscode']) && ($express['iscode'] == 'ARAMEX' || $express['iscode'] == 'TOLL' || $express['iscode'] == 'FEDEX'))
  4515. {
  4516. $lj = $this->ali->get_lj($fullorder['number'],2,'订单修改');
  4517. if($lj != '1' && $lj != '订单不存在')
  4518. {
  4519. echo json_encode(array('msg'=>$lj,'success'=>false));exit;
  4520. }
  4521. }
  4522. **/
  4523. $warehouse = $this->warehouse->read($fullorder['warehouse']);
  4524. $typeclass = $this->typeclass->read($fullorder['state']);
  4525. $express = $this->express->read($fullorder['express']);
  4526. $printtype = array(1=>'运单',2=>'发货单',3=>'不打印单据');
  4527. $teset['number']=$fullorder['number'];
  4528. $teset['orderinfo']=$fullorder['orderinfo'];
  4529. $teset['shop']=$fullorder['shop'];
  4530. $teset['user']=$user['userid'];
  4531. $teset['ip']=$this->input->ip_address();
  4532. $teset['time']=time();
  4533. $teset['warehouse']=(isset($warehouse['title']))?$warehouse['title']:'未选择';
  4534. $teset['state']=(isset($typeclass['title']))?$typeclass['spare']:'未选择';
  4535. $teset['express']=(isset($express['title']))?$express['servicename']:'未选择';
  4536. $teset['printtype']=(isset($printtype[$fullorder['printtype']]))?$printtype[$fullorder['printtype']]:'未选择';
  4537. $teset['reviewtime']=($fullorder['reviewtime'] > '0')?date('Y-m-d H:i:s',$fullorder['reviewtime']):'无';
  4538. $teset['printtime']=($fullorder['printtime'] > '0')?date('Y-m-d H:i:s',$fullorder['printtime']):'无';
  4539. $teset['librarytime']=($fullorder['librarytime'] > '0')?date('Y-m-d H:i:s',$fullorder['librarytime']):'无';
  4540. $teset['shipremarks']=$fullorder['shipremarks'];
  4541. $teset['fpdata']=$fullorder['fpdata'];
  4542. $teset['oldwaybill']=$fullorder['oldwaybill'];
  4543. $teset['oldprinttime']=$fullorder['oldprinttime'];
  4544. if($fullorder['printtype'] == 1)
  4545. {
  4546. if($fullorder['waybill'] != '' && stripos($fullorder['oldwaybill'],$fullorder['waybill']) === false)
  4547. {
  4548. $teset['oldwaybill'] .= '-'.date('Ymd',$fullorder['printtime']).'/'.$fullorder['waybill'];
  4549. $teset['oldprinttime'] .= '-'.$fullorder['printtime'];
  4550. }
  4551. }
  4552. $review = ($fullorder['source']==1)?2:1;//线下单审核状态直接为待审核
  4553. if(!$this->fullreset->insert($teset))
  4554. {
  4555. echo json_encode(array('msg'=>'重置失败,请重试','success'=>true));exit;
  4556. }
  4557. 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))
  4558. {
  4559. $th_info = $this->retreatlogs->getInfoByNumber($fullorder['number']);
  4560. if(!empty($th_info)){
  4561. $this->retreatlogs->save(array('cz_time'=>time()),$th_info['id']);
  4562. }
  4563. echo json_encode(array('msg'=>'重置成功!如需再次提交,请先保存、再提交','success'=>true));exit;
  4564. }
  4565. else
  4566. {
  4567. echo json_encode(array('msg'=>'重置失败,请重试','success'=>false));exit;
  4568. }
  4569. }
  4570. }
  4571. public function _expresstype()
  4572. {
  4573. $post = $this->input->post(NULL, TRUE);
  4574. if(isset($post['id']))
  4575. {
  4576. $id = $this->input->post('id',true);
  4577. $data = $this->express->read($id);
  4578. echo json_encode(array('msg'=>$data['type'],'success'=>true));exit;
  4579. }
  4580. }
  4581. public function _email($content,$data,$shopname)
  4582. {
  4583. $express = $this->express->read($data['express']);
  4584. $t= array('$userName','$orderid','$trackingNumber','$expressCompany','$contactPerson','$mobileNo','$zip','$recipientAddress');//需要被替换的内容
  4585. $h= array($data['client'],$data['orderinfo'],$data['waybill'],$express['servicename'],$data['name'],$data['phone'],$data['zipcode'],$data['address']);//替换的内容
  4586. $content = str_replace($t,$h,$content);
  4587. $this->load->library('email');
  4588. $config['protocol'] = 'smtp';
  4589. $config['smtp_host'] = 'smtpdm-ap-southeast-1.aliyun.com';
  4590. $config['smtp_port'] = 465;
  4591. $config['smtp_user'] = 'service@email.supernovahair.com';
  4592. $config['smtp_pass'] = 'LONGyihair374';
  4593. $config['smtp_crypto'] = 'ssl';
  4594. $config['crlf'] = "\r\n";
  4595. $config['newline'] = "\r\n";
  4596. $this->email->initialize($config);
  4597. $this->email->from('service@email.supernovahair.com',$shopname);
  4598. $this->email->to($data['email']);//收件
  4599. $this->email->subject('The product you purchased has a new progress');//标题
  4600. $this->email->message($content);//内容
  4601. if ( ! $this->email->send())
  4602. {
  4603. return 2;
  4604. }
  4605. else
  4606. {
  4607. return 1;
  4608. }
  4609. }
  4610. public function _error()
  4611. {
  4612. if(isset($_SESSION['api']))
  4613. {
  4614. $user = $this->user->get_api($_SESSION['api']);
  4615. $usp = $user;
  4616. $fgshop = "";$sid = "";
  4617. $user = explode('|',trim($user['shop'],'|'));
  4618. foreach ($user as $value)
  4619. {
  4620. $fgshop .= " shop = ".$value." or";
  4621. $sid .= " id = ".$value." or";
  4622. }
  4623. }
  4624. $post = $this->input->post(NULL, TRUE);
  4625. if(isset($post['page']))
  4626. {
  4627. $page = $this->input->post('page',true);
  4628. $perpage = $this->input->post('perpage',true);
  4629. $orderinfo = $this->input->post('orderinfo',true);
  4630. $waybill = $this->input->post('waybill',true);
  4631. $number = $this->input->post('number',true);
  4632. $timetk = $this->input->post('timetk',true);
  4633. $timetj = $this->input->post('timetj',true);
  4634. $timetk = strtotime($timetk);
  4635. $timetj = strtotime($timetj);
  4636. $where = "failed !='' and mergeid = 0 and print != 3 and (".rtrim($fgshop,'or').")";
  4637. if($orderinfo)
  4638. {
  4639. $where .= " and orderinfo = '$orderinfo'";
  4640. }
  4641. if($waybill)
  4642. {
  4643. $where .= " and waybill = '$waybill'";
  4644. }
  4645. if($number)
  4646. {
  4647. $where .= " and number = '$number'";
  4648. }
  4649. if($timetk && $timetj)
  4650. {
  4651. $timetj = $timetj+24*3600;
  4652. $where .= " and dtime > '$timetk' and dtime < '$timetj'";
  4653. }
  4654. //数据排序
  4655. $order_str = "dtime desc";
  4656. if(empty($page))
  4657. {
  4658. $start = 0;
  4659. $perpage = 1;
  4660. }
  4661. else
  4662. {
  4663. $start = ($page - 1)*$perpage;
  4664. }
  4665. $info_list = $this->fullorder->find_all($where,'id,shop,type,orderinfo,number,express,failed,operation',$order_str,$start,$perpage);
  4666. //格式化数据
  4667. foreach ($info_list as $key=>$value)
  4668. {
  4669. $ud = $this->fullorder->read($value['id']);
  4670. $shop = $this->shop->read($value['shop']);
  4671. $info_list[$key]['shop'] = $shop['shopname'];
  4672. $info_list[$key]['orderinfo'] = "<h9 class='window' data-h='/fullorder/edit/".$value['id']."' data-t='订单号:".$value['orderinfo']."'>".$value['orderinfo']."<p>";
  4673. $warehouse = $this->warehouse->read($value['type']);
  4674. $warehousetitle = $warehouse['title'];
  4675. if($value['type'] != 1){$warehousetitle = "<font style='color:#f64b4b'>".$warehouse['title']."</font>";}
  4676. $info_list[$key]['type'] = $warehousetitle;
  4677. if($value['express'] != 0)
  4678. {
  4679. $express = $this->express->read($value['express']);
  4680. $expressservicename = $express['servicename'];
  4681. if($value['express'] != 1){$expressservicename = "<font style='color:#f64b4b'>".$express['servicename']."</font>";}
  4682. $info_list[$key]['express'] = $expressservicename;
  4683. }
  4684. else
  4685. {
  4686. $info_list[$key]['express'] = "无";
  4687. }
  4688. $x = "";
  4689. if($ud['review'] >4 && $ud['print'] == 1)
  4690. {
  4691. $x = "<p class='ckn'><b class='fojzof' data-type='8' data-id='".$value['id']."'>允许打印</b></p>";
  4692. }
  4693. else
  4694. {
  4695. $x = "<p class='ckn'><b class='fojzof' data-type='9' data-id='".$value['id']."'>关闭</b></p>";
  4696. }
  4697. $info_list[$key]['operation'] = $x;
  4698. }
  4699. $total = $this->fullorder->find_count($where);
  4700. $pagenum = ceil($total/$perpage);
  4701. $over = $total-($start+$perpage);
  4702. $rows = array('total'=>$total,'over'=>$over,'pagenum'=>$pagenum,'rows'=>($info_list));
  4703. echo json_encode($rows);exit;
  4704. }
  4705. $wlshop = $this->shop->find_all('1=1 and '.rtrim($sid,'or'));
  4706. $this->data['wlshop'] = $wlshop;
  4707. $this->data['express'] = $this->express->find_all();
  4708. $user = $this->user->get_api($_SESSION['api']);
  4709. $powerid = $this->power->read($user['power']);
  4710. $powertext = explode('|',trim($powerid['excelid'],'|'));
  4711. $pid = '';
  4712. foreach ($powertext as $v)
  4713. {
  4714. $pid .= " id = ".$v." or";
  4715. }
  4716. $fullorderexcel = $this->fullorderexcel->find_all("type = '100001' and (".rtrim($pid,'or').")",'*','idorder desc');//导出模板
  4717. $this->data['fullorderexcel'] = $fullorderexcel;
  4718. $this->_Template('fullorder_error',$this->data);
  4719. }
  4720. //验证地址
  4721. public function _yzaddress()
  4722. {
  4723. $post = $this->input->post(NULL, TRUE);
  4724. if(isset($post['address']))
  4725. {
  4726. $address = $this->input->post('address',true);
  4727. $address2 = $this->input->post('address2',true);
  4728. $city = $this->input->post('city',true);
  4729. $province = $this->input->post('province',true);
  4730. $zipcode = $this->input->post('zipcode',true);
  4731. $barcode = $this->usps->get_address(array('address'=>$address,'address2'=>$address2,'city'=>$city,'province'=>$province,'zipcode'=>$zipcode));
  4732. //$this->logic_ding->sendToDing("usps地址验证返回数据".$barcode);
  4733. echo $barcode;
  4734. }
  4735. }
  4736. //清除退货信息
  4737. public function _clearreturn()
  4738. {
  4739. $post = $this->input->post(NULL, TRUE);
  4740. if(isset($post['orderinfo']))
  4741. {
  4742. $orderinfo = $this->input->post('orderinfo',true);
  4743. $data = $this->fullorder->get_orderinfo($orderinfo);
  4744. $fu = 'fullorder';
  4745. if(!$data)
  4746. {
  4747. $data = $this->fullorder_smt->get_orderinfo($orderinfo);
  4748. $fu = 'fullorder_smt';
  4749. }
  4750. $this->$fu->save(array('library'=>'2','retreattime'=>'0','returndata'=>''),$data['id']);
  4751. echo json_encode(array('msg'=>'清除成功!','success'=>true));exit;
  4752. }
  4753. }
  4754. //订单退货
  4755. public function _return()
  4756. {
  4757. $post = $this->input->post(NULL, TRUE);
  4758. if(isset($post['orderinfo']))
  4759. {
  4760. $orderinfo = $this->input->post('orderinfo',true);
  4761. $data = $this->fullorder->get_orderinfo($orderinfo);
  4762. $fu = 'fullorder';
  4763. if(!$data)
  4764. {
  4765. $data = $this->fullorder_smt->get_orderinfo($orderinfo);
  4766. $fu = 'fullorder_smt';
  4767. }
  4768. $bctime = date('Ymd',time());
  4769. if($data['library'] != 2){
  4770. echo json_encode(array('msg'=>'此单不是出库状态,不允许退货','success'=>false));exit;
  4771. }
  4772. if($data['returndata'] != "")
  4773. {
  4774. echo json_encode(array('msg'=>'请求失败,已有Return Label信息!','success'=>false));exit;
  4775. }
  4776. $barcode = $this->usps->get_return($data);
  4777. // if(isset($barcode['errors']['ExternalReturnLabelError']['InternalErrorDescription']))
  4778. // {
  4779. // echo json_encode(array('msg'=>$barcode['errors']['ExternalReturnLabelError']['InternalErrorDescription'],'success'=>false));exit;
  4780. // }
  4781. // else if(isset($barcode['TrackingNumber']))
  4782. // {
  4783. // $pdf = $this->_pdf($barcode['ReturnLabel'],'t-'.$barcode['TrackingNumber'],$bctime);
  4784. // $read = 'PostalRouting:'.$barcode['PostalRouting'].' - TrackingNumber:<a href="/data/pdf/'.$bctime.'/'.'t-'.$barcode['TrackingNumber'].'.pdf" target="_blank">'.$barcode['TrackingNumber'].'</a>';
  4785. // $this->$fu->save(array('returndata'=>$read),$data['id']);
  4786. // echo json_encode(array('msg'=>'生成Return Label成功!','data'=>$read,'success'=>true));exit;
  4787. // }
  4788. // else
  4789. // {
  4790. // echo json_encode(array('msg'=>'请求失败,请稍后重试!','cs'=>$barcode,'success'=>false));exit;
  4791. // }
  4792. if(isset($barcode['errors']['ExternalReturnLabelError']['InternalErrorDescription']))
  4793. {
  4794. echo json_encode(array('msg'=>$barcode['errors']['ExternalReturnLabelError']['InternalErrorDescription'],'success'=>false));exit;
  4795. }
  4796. else if(isset($barcode['trackingNumber']))
  4797. {
  4798. $pdf = $this->_pdf($barcode['returnLabelImage'],'t-'.$barcode['trackingNumber'],$bctime);
  4799. $read = 'PostalRouting:'.$barcode['routingInformation'].' - TrackingNumber:<a href="/data/pdf/'.$bctime.'/'.'t-'.$barcode['trackingNumber'].'.pdf" target="_blank">'.$barcode['trackingNumber'].'</a>';
  4800. $this->$fu->save(array('returndata'=>$read),$data['id']);
  4801. echo json_encode(array('msg'=>'生成Return Label成功!','data'=>$read,'success'=>true));exit;
  4802. }
  4803. else
  4804. {
  4805. echo json_encode(array('msg'=>'请求失败,请稍后重试!'.json_encode($barcode),'cs'=>$barcode,'success'=>false));exit;
  4806. }
  4807. }
  4808. /**
  4809. $post = $this->input->post(NULL, TRUE);
  4810. if(isset($post['orderinfo']))
  4811. {
  4812. $orderinfo = $this->input->post('orderinfo',true);
  4813. $data = $this->fullorder->get_orderinfo($orderinfo);
  4814. $fu = 'fullorder';
  4815. if(!$data)
  4816. {
  4817. $data = $this->fullorder_smt->get_orderinfo($orderinfo);
  4818. $fu = 'fullorder_smt';
  4819. }
  4820. $bctime = date('Ymd',time());
  4821. if($data['returndata'] != "")
  4822. {
  4823. echo json_encode(array('msg'=>'请求失败,已有Return Label信息!','success'=>false));exit;
  4824. }
  4825. $barcode = $this->usps->get_return($data);
  4826. if(isset($barcode['error']['message']))
  4827. {
  4828. echo json_encode(array('msg'=>$barcode['error']['message'],'success'=>false));exit;
  4829. }
  4830. else if(isset($barcode['trackingNumber']))
  4831. {
  4832. $pdf = $this->_pdf($barcode['returnLabelImage'],'t-'.$barcode['trackingNumber'],$bctime);
  4833. $read = 'trackingNumber:<a href="/data/pdf/'.$bctime.'/'.'t-'.$barcode['trackingNumber'].'.pdf" target="_blank">'.$barcode['trackingNumber'].'</a>';
  4834. $this->$fu->save(array('returndata'=>$read),$data['id']);
  4835. echo json_encode(array('msg'=>'生成Return Label成功!','data'=>$read,'success'=>true));exit;
  4836. }
  4837. else
  4838. {
  4839. echo json_encode(array('msg'=>'请求失败,请稍后重试!','cs'=>$barcode,'success'=>false));exit;
  4840. }
  4841. }**/
  4842. }
  4843. public function _pdf($pdf,$title,$bctime)
  4844. {
  4845. $pdf_path = './data/pdf/'.$bctime.'/';
  4846. $file_base64 = $pdf;
  4847. $file_base64 = preg_replace('/data:.*;base64,/i', '', $file_base64);
  4848. $file_base64 = base64_decode($file_base64);
  4849. if(!is_dir($pdf_path))mkdir($pdf_path,0777); //上传目录不存在则创建
  4850. file_put_contents($pdf_path.$title.'.pdf',$file_base64);
  4851. return $bctime;
  4852. }
  4853. public function _find($find)
  4854. {
  4855. preg_match_all('/\d+/',$find,$n);
  4856. $a = '';
  4857. foreach($n[0] as $v)
  4858. {
  4859. $a .= $v;
  4860. }
  4861. return $a;
  4862. }
  4863. public function _dqpm()
  4864. {
  4865. if(isset($_SESSION['api']))
  4866. {
  4867. $user = $this->user->get_api($_SESSION['api']);
  4868. $usp = $user;
  4869. $fgshop = "";$sid = "";
  4870. $usersp = explode('|',trim($user['shop'],'|'));
  4871. foreach ($usersp as $value)
  4872. {
  4873. $fgshop .= " shop = ".$value." or";
  4874. $sid .= " id = ".$value." or";
  4875. }
  4876. }
  4877. $post = $this->input->post(NULL, TRUE);
  4878. if(isset($post['page']))
  4879. {
  4880. $timetk = $this->input->post('timetk',true);
  4881. $timetj = $this->input->post('timetj',true);
  4882. $timetk = strtotime($timetk);
  4883. $timetj = strtotime($timetj);
  4884. $where = "mergeid = 0 and (".rtrim($fgshop,'or').")";
  4885. if($timetk && $timetj)
  4886. {
  4887. $where .= " and dtime > '$timetk' and dtime < '$timetj'";
  4888. }
  4889. //数据排序
  4890. $order_str = "dtime desc";
  4891. if(empty($page))
  4892. {
  4893. $start = 0;
  4894. $perpage = 1;
  4895. }
  4896. else
  4897. {
  4898. $start = ($page - 1)*$perpage;
  4899. }
  4900. $continentdata = '';
  4901. $continent = array();//陆地板块
  4902. $num = $this->fullorder->find_count($where);//订单总数量
  4903. $country = $this->country->find_all('1=1','id,continent,ename,zname');
  4904. foreach ($country as $k=>$v)
  4905. {
  4906. $tc = $this->typeclass->read($v['continent']);
  4907. $continent[$v['continent']] = array(0=>$tc['title'],1=>0,2=>'');
  4908. }
  4909. foreach ($country as $k=>$v)
  4910. {
  4911. $n = $this->fullorder->find_count($where.' and country = "'.$v['id'].'"');
  4912. $country[$k]['continent'] = $continent[$v['continent']][0];//此国家数量
  4913. $country[$k]['zname'] = '<a href="/fullorder/dqpmprovince/'.$v['id'].'/'.$timetk.'/'.$timetj.'">'.$v['zname'].'</a>';//此国家数量
  4914. $country[$k]['num'] = $n;//此国家数量
  4915. $country[$k]['zb'] = (sprintf("%.4f",$n/$num)*100).'%';//此国家占比
  4916. $continent[$v['continent']]['1'] += $n;//此洲数量增加;
  4917. }
  4918. array_multisort(array_column($continent, '1'), SORT_DESC, $continent);
  4919. array_multisort(array_column($country, 'num'), SORT_DESC, $country);
  4920. foreach ($continent as $k=>$v)
  4921. {
  4922. $continentdata .= $v['0'].' 总量:'.$v['1'].' 占比:'.(sprintf("%.4f",$v['1']/$num)*100).'%&nbsp;&nbsp; - &nbsp;&nbsp;';
  4923. }
  4924. echo json_encode(array('ewnr'=>$continentdata,'rows'=>$country,'total'=>count($country),'over'=>0,'pagenum'=>1,'success'=>true));exit;
  4925. }
  4926. $this->_Template('fullorder_dqpm',$this->data);
  4927. }
  4928. public function _dqpmprovince($arg_array)
  4929. {
  4930. if(isset($_SESSION['api']))
  4931. {
  4932. $user = $this->user->get_api($_SESSION['api']);
  4933. $usp = $user;
  4934. $fgshop = "";$sid = "";
  4935. $usersp = explode('|',trim($user['shop'],'|'));
  4936. foreach ($usersp as $value)
  4937. {
  4938. $fgshop .= " shop = ".$value." or";
  4939. $sid .= " id = ".$value." or";
  4940. }
  4941. }
  4942. $post = $this->input->post(NULL, TRUE);
  4943. if(isset($post['page']))
  4944. {
  4945. $country = $this->input->post('country',true);
  4946. $timetk = $this->input->post('timetk',true);
  4947. $timetj = $this->input->post('timetj',true);
  4948. $where = "mergeid = 0 and dtime > '$timetk' and dtime < '$timetj' and country = '$country' and (".rtrim($fgshop,'or').")";
  4949. $province = array();
  4950. $city_list = $this->fullorder->find_all($where,'id,province');
  4951. $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');
  4952. foreach ($city_list as $k=>$v)
  4953. {
  4954. $v['province'] = strtoupper(trim($v['province'],' '));
  4955. if(isset($ToState[$v['province']]))
  4956. {
  4957. $v['province'] = $ToState[$v['province']];
  4958. }
  4959. if(!isset($province[$v['province']]))
  4960. {
  4961. $province[$v['province']] = array('id'=>$v['id'],'province'=>'<a href="/fullorder/ddpmdata/'.$country.'/'.$timetk.'/'.$timetj.'/'.strtoupper($v['province']).'">'.$v['province'].'</a>','num'=>0,'zb'=>'');
  4962. }
  4963. $province[$v['province']]['num'] += 1;
  4964. }
  4965. array_multisort(array_column($province, 'num'), SORT_DESC, $province);
  4966. $province = array_values($province);
  4967. foreach ($province as $k=>$v)
  4968. {
  4969. $province[$k]['zb'] = (sprintf("%.4f",$v['num']/count($city_list))*100).'%';
  4970. }
  4971. echo json_encode(array('rows'=>($province),'total'=>count($province),'over'=>0,'pagenum'=>1,'success'=>true));exit;
  4972. }
  4973. $this->data['arg_array'] = $arg_array;
  4974. $this->_Template('fullorder_dqpmprovince',$this->data);
  4975. }
  4976. public function _ddpmdata($arg_array)
  4977. {
  4978. $arg_array[3] = str_replace('%20',' ',$arg_array[3]);
  4979. if(isset($_SESSION['api']))
  4980. {
  4981. $user = $this->user->get_api($_SESSION['api']);
  4982. $usp = $user;
  4983. $fgshop = "";$sid = "";
  4984. $usersp = explode('|',trim($user['shop'],'|'));
  4985. foreach ($usersp as $value)
  4986. {
  4987. $fgshop .= " shop = ".$value." or";
  4988. $sid .= " id = ".$value." or";
  4989. }
  4990. }
  4991. $post = $this->input->post(NULL, TRUE);
  4992. if(isset($post['page']))
  4993. {
  4994. $page = $this->input->post('page',true);
  4995. $perpage = $this->input->post('perpage',true);
  4996. $province = $this->input->post('province',true);
  4997. $timetk = $this->input->post('timetk',true);;
  4998. $timetj = $this->input->post('timetj',true);;
  4999. $country = $this->input->post('country',true);;
  5000. $where = "mergeid = 0 and dtime > '$timetk' and dtime < '$timetj' and country = '$country' and (".rtrim($fgshop,'or').")";
  5001. if($province)
  5002. {
  5003. $where .= " and province = '$province'";
  5004. }
  5005. $order_str = "dtime desc";
  5006. if(empty($page))
  5007. {
  5008. $start = 0;
  5009. $perpage = 1;
  5010. }
  5011. else
  5012. {
  5013. $start = ($page - 1)*$perpage;
  5014. }
  5015. $info_list = $this->fullorder->find_all($where,'id,orderinfo,number,shipremarks,shouldmoney',$order_str,$start,$perpage);
  5016. $total = $this->fullorder->find_count($where);
  5017. $pagenum = ceil($total/$perpage);
  5018. $over = $total-($start+$perpage);
  5019. $rows = array('total'=>$total,'over'=>$over,'pagenum'=>$pagenum,'rows'=>($info_list));
  5020. echo json_encode($rows);exit;
  5021. }
  5022. $province = array();
  5023. $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');
  5024. $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');
  5025. foreach ($city_list as $k=>$v)
  5026. {
  5027. $v['province'] = strtoupper(trim($v['province'],' '));
  5028. if(isset($ToState[$v['province']]))
  5029. {
  5030. $v['province'] = $ToState[$v['province']];
  5031. }
  5032. $province[$v['province']] = array('province'=>$v['province']);
  5033. }
  5034. $this->data['province'] = $province;
  5035. $this->data['arg_array'] = $arg_array;
  5036. $this->_Template('fullorder_ddpmdata',$this->data);
  5037. }
  5038. public function _ddpmexcel($arg_array)
  5039. {
  5040. if(isset($_SESSION['api']))
  5041. {
  5042. $user = $this->user->get_api($_SESSION['api']);
  5043. $usp = $user;
  5044. $fgshop = "";$sid = "";
  5045. $usersp = explode('|',trim($user['shop'],'|'));
  5046. foreach ($usersp as $value)
  5047. {
  5048. $fgshop .= " shop = ".$value." or";
  5049. $sid .= " id = ".$value." or";
  5050. }
  5051. }
  5052. $province = $this->input->get('province',true);
  5053. $timetk = $arg_array[1];
  5054. $timetj = $arg_array[2];
  5055. $country = $arg_array[0];
  5056. $where = "mergeid = 0 and dtime > '$timetk' and dtime < '$timetj' and country = '$country' and (".rtrim($fgshop,'or').")";
  5057. if($province)
  5058. {
  5059. $where .= " and province = '$province'";
  5060. }
  5061. $order_str = "dtime desc";
  5062. $info_list = $this->fullorder->find_all($where,'orderinfo,number,shipremarks,shouldmoney',$order_str);
  5063. $country = $this->country->read($arg_array[0]);
  5064. $title = $country['zname'].date('Y-m-d',$timetk).'-'.date('Y-m-d',$timetj);
  5065. $titlename = "<table border=1>
  5066. <tr><th colspan='4' align='left'><h3>".$title."<h3></th></tr>
  5067. <tr>
  5068. <td>订单号</td>
  5069. <td>订单编号</td>
  5070. <td>仓库品名</td>
  5071. <td>订单金额</td>
  5072. </tr>
  5073. </table>";
  5074. $filename = $title.".xls";
  5075. $tail = "\n";
  5076. $this->excel->get_fz2($info_list,$titlename,$filename,$tail);
  5077. }
  5078. public function _statedc()
  5079. {
  5080. $user = $this->user->get_api($_SESSION['api']);
  5081. if($user)
  5082. {
  5083. $fgshop = "";$sid = "";
  5084. $user = explode('|',trim($user['shop'],'|'));
  5085. foreach ($user as $value)
  5086. {
  5087. $fgshop .= " shop = ".$value." or";
  5088. $sid .= " id = ".$value." or";
  5089. }
  5090. }
  5091. $post = $this->input->get(NULL, TRUE);
  5092. if(isset($post['timetk']))
  5093. {
  5094. $page = $this->input->get('page',true);
  5095. $perpage = $this->input->get('perpage',true);
  5096. $timetk = $this->input->get('timetk',true);
  5097. $timetj = $this->input->get('timetj',true);
  5098. $shop = $this->input->get('shop',true);
  5099. $source = $this->input->get('source',true);
  5100. $state = $this->input->get('state',true);
  5101. $review = $this->input->get('review',true);
  5102. $express = $this->input->get('express',true);
  5103. $fs = $this->input->get('fs',true);
  5104. $orderinfo = $this->input->get('orderinfo',true);
  5105. $number = $this->input->get('number',true);
  5106. $user = $this->input->get('user',true);
  5107. $name = $this->input->get('name',true);
  5108. $waybill = $this->input->get('waybill',true);
  5109. $expressstate = $this->input->get('expressstate',true);
  5110. $wltype = $this->input->get('wltype',true);
  5111. $wlyc = $this->input->get('wlyc',true);
  5112. $xztime = $this->input->get('xztime',true);
  5113. $timetk = strtotime($timetk);
  5114. $timetj = strtotime($timetj);
  5115. $where = "1=1 and mergeid = 0 and (".rtrim($fgshop,'or').")";
  5116. if($timetk && $timetj)
  5117. {
  5118. $where .= " and ".$xztime." > '$timetk' and ".$xztime." < '$timetj'";
  5119. }
  5120. if($xztime == 'librarytime')
  5121. {
  5122. $order_str = "librarytime desc";
  5123. }
  5124. else if($xztime == 'dtime')
  5125. {
  5126. $order_str = "dtime desc";
  5127. }
  5128. if($shop)
  5129. {
  5130. $where .= " and shop = '$shop'";
  5131. }
  5132. if($source)
  5133. {
  5134. if($source == 11)
  5135. {
  5136. $where .= " and source != '1'";
  5137. }
  5138. else
  5139. {
  5140. $where .= " and source = '$source'";
  5141. }
  5142. }
  5143. if($fs)
  5144. {
  5145. if($fs == '2')
  5146. {
  5147. $where .= " and exstateerror != ''";
  5148. }
  5149. else
  5150. {
  5151. $where .= " and exstateerror = ''";
  5152. }
  5153. }
  5154. if($state)
  5155. {
  5156. $where .= " and state = '$state'";
  5157. }
  5158. if($review)
  5159. {
  5160. $where .= " and review = '$review'";
  5161. }
  5162. if($expressstate != "")
  5163. {
  5164. $where .= " and expressstate = '$expressstate'";
  5165. }
  5166. if($wltype != "")
  5167. {
  5168. $where .= " and wltype = '$wltype'";
  5169. }
  5170. if($wlyc != "")
  5171. {
  5172. $where .= " and wlyc = '$wlyc'";
  5173. }
  5174. if($express)
  5175. {
  5176. $where .= " and express = '$express'";
  5177. }
  5178. if($orderinfo)
  5179. {
  5180. $where .= " and orderinfo = '$orderinfo'";
  5181. }
  5182. if($number)
  5183. {
  5184. $where .= " and number = '$number'";
  5185. }
  5186. if($user)
  5187. {
  5188. $where .= " and user = '$user'";
  5189. }
  5190. if($name)
  5191. {
  5192. $where .= " and name = '$name'";
  5193. }
  5194. if($waybill)
  5195. {
  5196. $where .= " and waybill = '$waybill'";
  5197. }
  5198. if(empty($page))
  5199. {
  5200. $start = 0;
  5201. $perpage = 1;
  5202. }
  5203. else
  5204. {
  5205. $start = ($page - 1)*$perpage;
  5206. }
  5207. //取得信息列表
  5208. $info_list = $this->fullorder->find_all($where,'shop,number,country,library,librarytime,expressstate,express,waybill,content,exstateerror,excontent',$order_str);
  5209. //格式化数据
  5210. foreach ($info_list as $key=>$value)
  5211. {
  5212. $shop = $this->shop->read($value['shop']);
  5213. $info_list[$key]['shop'] = $shop['shopname'];
  5214. $country = $this->country->read($value['country']);
  5215. $info_list[$key]['country'] = $country['name'];
  5216. //$state = $this->typeclass->read($value['state']);
  5217. //$info_list[$key]['state'] = $state['title'];
  5218. if($value['library'] == 1)
  5219. {
  5220. $info_list[$key]['library'] = "未出库";
  5221. }
  5222. else if($value['library'] == 2)
  5223. {
  5224. $info_list[$key]['library'] = "已出库";
  5225. }
  5226. else if($value['library'] == 3)
  5227. {
  5228. $info_list[$key]['library'] = "已退库";
  5229. }
  5230. if($value['librarytime'] == '0')
  5231. {
  5232. $info_list[$key]['librarytime'] = '无';
  5233. }
  5234. else
  5235. {
  5236. $info_list[$key]['librarytime'] = date('Y-m-d H:i:s',$value['librarytime']);
  5237. }
  5238. if($value['expressstate'] == 0)
  5239. {
  5240. $info_list[$key]['expressstate'] = "无信息";
  5241. }
  5242. else if($value['expressstate'] == 2)
  5243. {
  5244. $info_list[$key]['expressstate'] = "已取件";
  5245. }
  5246. else if($value['expressstate'] == 3)
  5247. {
  5248. $info_list[$key]['expressstate'] = "在途中";
  5249. }
  5250. /**
  5251. else if($value['expressstate'] == 4)
  5252. {
  5253. $info_list[$key]['expressstate'] = "到达目的地国";
  5254. }
  5255. **/
  5256. else if($value['expressstate'] == 4 || $value['expressstate'] == 5)
  5257. {
  5258. $info_list[$key]['expressstate'] = "即将派送";
  5259. }
  5260. else if($value['expressstate'] == 6)
  5261. {
  5262. $info_list[$key]['expressstate'] = "已签收";
  5263. }
  5264. else if($value['expressstate'] == 1)
  5265. {
  5266. $info_list[$key]['expressstate'] = "派送异常";
  5267. }
  5268. $express = $this->express->read($value['express']);
  5269. $info_list[$key]['express'] = $express['servicename'];
  5270. }
  5271. }
  5272. $title = date('Y-m-d',$timetk).'-'.date('Y-m-d',$timetj);
  5273. $titlename = "<table border=1>
  5274. <tr>
  5275. <td>店铺名称</td>
  5276. <td>编号</td>
  5277. <td>收件人国家</td>
  5278. <td>出库状态</td>
  5279. <td>发货时间</td>
  5280. <td>物流状态</td>
  5281. <td>快递公司</td>
  5282. <td>运单号</td>
  5283. <td>消息状态</td>
  5284. <td>错误提示</td>
  5285. <td>物流信息</td>
  5286. </tr>
  5287. </table>";
  5288. $filename = $title.".xls";
  5289. $tail = "\n";
  5290. $this->excel->get_fz2($info_list,$titlename,$filename,$tail);
  5291. }
  5292. public function _statedcwl()
  5293. {
  5294. $user = $this->user->get_api($_SESSION['api']);
  5295. if($user)
  5296. {
  5297. $fgshop = "";$sid = "";
  5298. $user = explode('|',trim($user['shop'],'|'));
  5299. foreach ($user as $value)
  5300. {
  5301. $fgshop .= " shop = ".$value." or";
  5302. $sid .= " id = ".$value." or";
  5303. }
  5304. }
  5305. $post = $this->input->get(NULL, TRUE);
  5306. if(isset($post['timetk']))
  5307. {
  5308. $dowid = $this->input->get('a');
  5309. $wid = "";
  5310. if($dowid != "")
  5311. {
  5312. $id_arr = explode(',',rtrim($dowid,','));
  5313. $wid .= " id = 0 or";
  5314. foreach ($id_arr as $v)
  5315. {
  5316. $wid .= " id = '$v' or";
  5317. }
  5318. $wid = " and".rtrim($wid,'or');
  5319. }
  5320. $page = $this->input->get('page',true);
  5321. $perpage = $this->input->get('perpage',true);
  5322. $timetk = $this->input->get('timetk',true);
  5323. $timetj = $this->input->get('timetj',true);
  5324. $shop = $this->input->get('shop',true);
  5325. $expressstate = $this->input->get('expressstate',true);
  5326. $fs = $this->input->get('fs',true);
  5327. $state = $this->input->get('state',true);
  5328. $express = $this->input->get('express',true);
  5329. $orderinfo = $this->input->get('orderinfo',true);
  5330. $number = $this->input->get('number',true);
  5331. $waybill = $this->input->get('waybill',true);
  5332. $wlyc = $this->input->get('wlyc',true);
  5333. $wltype = $this->input->get('wltype',true);
  5334. $source = $this->input->get('source',true);
  5335. $xztime = $this->input->get('xztime',true);
  5336. $timetk = strtotime($timetk);
  5337. $timetj = strtotime($timetj);
  5338. $where = "1=1 and mergeid = 0 and (".rtrim($fgshop,'or').")";
  5339. if($timetk && $timetj)
  5340. {
  5341. $where .= " and ".$xztime." > '$timetk' and ".$xztime." < '$timetj'";
  5342. }
  5343. if($xztime == 'librarytime')
  5344. {
  5345. $order_str = "librarytime desc";
  5346. }
  5347. else if($xztime == 'dtime')
  5348. {
  5349. $order_str = "dtime desc";
  5350. }else if($xztime == 'wlfstime'){
  5351. $order_str = "wlfstime desc";
  5352. }
  5353. if($shop)
  5354. {
  5355. $where .= " and shop = '$shop'";
  5356. }
  5357. if($expressstate)
  5358. {
  5359. $where .= " and expressstate = '$expressstate'";
  5360. }
  5361. if($fs)
  5362. {
  5363. if($fs == '1')
  5364. {
  5365. $where .= " and wlcontent != ''";
  5366. }
  5367. if($fs == '2')
  5368. {
  5369. $where .= " and wlerror != ''";
  5370. }
  5371. if($fs == '3')
  5372. {
  5373. $where .= " and wlcontent = '' and shouldmoney > 100";
  5374. }
  5375. else if($fs == '4')
  5376. {
  5377. $where .= " and wltype = '1'";
  5378. }
  5379. }
  5380. if($state)
  5381. {
  5382. $where .= " and state = '$state'";
  5383. }
  5384. if($express)
  5385. {
  5386. $where .= " and express = '$express'";
  5387. }
  5388. if($orderinfo)
  5389. {
  5390. $where .= " and orderinfo = '$orderinfo'";
  5391. }
  5392. if($number)
  5393. {
  5394. $where .= " and number = '$number'";
  5395. }
  5396. if($waybill)
  5397. {
  5398. $where .= " and waybill = '$waybill'";
  5399. }
  5400. if($wlyc!='')
  5401. {
  5402. $where .= " and wlyc = '$wlyc'";
  5403. }
  5404. if($wltype!='')
  5405. {
  5406. $where .= " and wltype = '$wltype'";
  5407. }
  5408. if($source)
  5409. {
  5410. if($source == 1)
  5411. {
  5412. $where .= " and source = '$source'";
  5413. }
  5414. else
  5415. {
  5416. $where .= " and source != '1'";
  5417. }
  5418. }
  5419. $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);
  5420. //格式化数据
  5421. foreach ($info_list as $key=>$value)
  5422. {
  5423. $country = $this->country->read($value['country']);
  5424. $info_list[$key]['country'] = $country['name'];
  5425. //$state = $this->typeclass->read($value['state']);
  5426. //$info_list[$key]['state'] = $state['title'];
  5427. if($value['library'] == 1)
  5428. {
  5429. $info_list[$key]['library'] = "未出库";
  5430. }
  5431. else if($value['library'] == 2)
  5432. {
  5433. $info_list[$key]['library'] = "已出库";
  5434. }
  5435. else if($value['library'] == 3)
  5436. {
  5437. $info_list[$key]['library'] = "已退库";
  5438. }
  5439. if($value['librarytime'] == '0')
  5440. {
  5441. $info_list[$key]['librarytime'] = '无';
  5442. }
  5443. else
  5444. {
  5445. $info_list[$key]['librarytime'] = date('Y-m-d H:i:s',$value['librarytime']);
  5446. }
  5447. if($value['expressstate'] == 0)
  5448. {
  5449. $info_list[$key]['expressstate'] = "无信息";
  5450. }
  5451. else if($value['expressstate'] == 2)
  5452. {
  5453. $info_list[$key]['expressstate'] = "已取件";
  5454. }
  5455. else if($value['expressstate'] == 3)
  5456. {
  5457. $info_list[$key]['expressstate'] = "在途中";
  5458. }
  5459. /**
  5460. else if($value['expressstate'] == 4)
  5461. {
  5462. $info_list[$key]['expressstate'] = "到达目的地国";
  5463. }
  5464. **/
  5465. else if($value['expressstate'] == 4 || $value['expressstate'] == 5)
  5466. {
  5467. $info_list[$key]['expressstate'] = "即将派送";
  5468. }
  5469. else if($value['expressstate'] == 6)
  5470. {
  5471. $info_list[$key]['expressstate'] = "已签收";
  5472. }
  5473. else if($value['expressstate'] == 1)
  5474. {
  5475. $info_list[$key]['expressstate'] = "派送异常";
  5476. }
  5477. $info_list[$key]['wlfstime'] = date('Y-m-d H:i:s',$value['wlfstime']);
  5478. $express = $this->express->read($value['express']);
  5479. $info_list[$key]['express'] = $express['servicename'];
  5480. $info_list[$key]['excontent'] = str_replace('<br />','',$value['excontent']);
  5481. }
  5482. }
  5483. $title = date('Y-m-d',$timetk).'-'.date('Y-m-d',$timetj);
  5484. $titlename = "<table border=1>
  5485. <tr>
  5486. <td>订单号</td>
  5487. <td>编号</td>
  5488. <td>收件人国家</td>
  5489. <td>出库状态</td>
  5490. <td>出库时间</td>
  5491. <td>物流状态</td>
  5492. <td>快递公司</td>
  5493. <td>运单号</td>
  5494. <td>物流备注</td>
  5495. <td>订单备注</td>
  5496. <td>仓库品名</td>
  5497. <td>发送时间</td>
  5498. <td>邮箱</td>
  5499. <td>电话</td>
  5500. <td>邮件发送</td>
  5501. <td>错误提示</td>
  5502. <td>物流信息</td>
  5503. </tr>
  5504. </table>";
  5505. $filename = $title.".xls";
  5506. $tail = "\n";
  5507. $this->excel->get_fz2($info_list,$titlename,$filename,$tail);
  5508. }
  5509. public function _waybillemail()
  5510. {
  5511. $user = $this->user->get_api($_SESSION['api']);
  5512. if($user)
  5513. {
  5514. $fgshop = "";$sid = "";
  5515. $user = explode('|',trim($user['shop'],'|'));
  5516. foreach ($user as $value)
  5517. {
  5518. $fgshop .= " shop = ".$value." or";
  5519. $sid .= " id = ".$value." or";
  5520. }
  5521. }
  5522. $post = $this->input->post(NULL, TRUE);
  5523. if(isset($post['page']))
  5524. {
  5525. $page = $this->input->post('page',true);
  5526. $perpage = $this->input->post('perpage',true);
  5527. $timetk = $this->input->post('timetk',true);
  5528. $timetj = $this->input->post('timetj',true);
  5529. $shop = $this->input->post('shop',true);
  5530. $source = $this->input->post('source',true);
  5531. $expressstate = $this->input->post('expressstate',true);
  5532. $fs = $this->input->post('fs',true);
  5533. $state = $this->input->post('state',true);
  5534. $express = $this->input->post('express',true);
  5535. $orderinfo = $this->input->post('orderinfo',true);
  5536. $number = $this->input->post('number',true);
  5537. $waybill = $this->input->post('waybill',true);
  5538. $dlzemail = $this->input->post('dlzemail',true);
  5539. $xztime = $this->input->post('xztime',true);
  5540. $timetk = strtotime($timetk);
  5541. $timetj = strtotime($timetj);
  5542. $where = "1=1 and mergeid = 0 and (".rtrim($fgshop,'or').")";
  5543. if($timetk && $timetj)
  5544. {
  5545. $where .= " and ".$xztime." > '$timetk' and ".$xztime." < '$timetj'";
  5546. }
  5547. $order_str = $xztime." desc";
  5548. if($source)
  5549. {
  5550. if($source == '2d')
  5551. {
  5552. $where .= " and source >= '2' and shop != 19";
  5553. }
  5554. else
  5555. {
  5556. $where .= " and source = '$source'";
  5557. }
  5558. }
  5559. if($shop)
  5560. {
  5561. $where .= " and shop = '$shop'";
  5562. }
  5563. if($expressstate)
  5564. {
  5565. $where .= " and expressstate = '$expressstate'";
  5566. }
  5567. if($state)
  5568. {
  5569. $where .= " and state = '$state'";
  5570. }
  5571. if($express)
  5572. {
  5573. $where .= " and express = '$express'";
  5574. }
  5575. if($orderinfo)
  5576. {
  5577. $where .= " and orderinfo = '$orderinfo'";
  5578. }
  5579. if($number)
  5580. {
  5581. $where .= " and number = '$number'";
  5582. }
  5583. if($waybill)
  5584. {
  5585. $where .= " and waybill = '$waybill'";
  5586. }
  5587. if($dlzemail != '')
  5588. {
  5589. $where .= " and dlzemail = '$dlzemail'";
  5590. }
  5591. if(empty($page))
  5592. {
  5593. $start = 0;
  5594. $perpage = 1;
  5595. }
  5596. else
  5597. {
  5598. $start = ($page - 1)*$perpage;
  5599. }
  5600. //取得信息列表
  5601. $info_list = $this->fullorder->find_all($where,'id,shop,orderinfo,number,country,library,librarytime,express,waybill,dlzemail,dlzemailtime',$order_str,$start,$perpage);
  5602. //格式化数据
  5603. foreach ($info_list as $key=>$value)
  5604. {
  5605. $shop = $this->shop->read($value['shop']);
  5606. $info_list[$key]['shop'] = $shop['shopname'];
  5607. $country = $this->country->read($value['country']);
  5608. $info_list[$key]['country'] = $country['name'];
  5609. //$state = $this->typeclass->read($value['state']);
  5610. //$info_list[$key]['state'] = $state['title'];
  5611. if($value['library'] == 1)
  5612. {
  5613. $info_list[$key]['library'] = "未出库";
  5614. }
  5615. else if($value['library'] == 2)
  5616. {
  5617. $info_list[$key]['library'] = "已出库";
  5618. }
  5619. else if($value['library'] == 3)
  5620. {
  5621. $info_list[$key]['library'] = "已退库";
  5622. }
  5623. if($value['librarytime'] == '0')
  5624. {
  5625. $info_list[$key]['librarytime'] = '无';
  5626. }
  5627. else
  5628. {
  5629. $info_list[$key]['librarytime'] = date('Y-m-d',$value['librarytime']).'<br>'.date('H:i:s',$value['librarytime']);
  5630. }
  5631. $express = $this->express->read($value['express']);
  5632. $info_list[$key]['express'] = $express['servicename'];
  5633. if($value['dlzemail'] == '1')
  5634. {
  5635. $info_list[$key]['dlzemail'] = '发送成功';
  5636. }
  5637. else if ($value['dlzemail'] == '2')
  5638. {
  5639. $info_list[$key]['dlzemail'] = '发送失败';
  5640. }
  5641. else
  5642. {
  5643. $info_list[$key]['dlzemail'] = '';
  5644. }
  5645. $info_list[$key]['dlzemailtime'] = ($value['dlzemailtime']>0)?date('Y-m-d H:i:s',$value['dlzemailtime']):'';
  5646. }
  5647. $total = $this->fullorder->find_count($where);
  5648. $pagenum = ceil($total/$perpage);
  5649. $over = $total-($start+$perpage);
  5650. $rows = array('total'=>$total,'over'=>$over,'pagenum'=>$pagenum,'rows'=>($info_list));
  5651. echo json_encode($rows);exit;
  5652. }
  5653. $notice = $this->notice->find_all("type = '2' and (".rtrim($fgshop,'or').")");
  5654. $this->data['notice'] = $notice;
  5655. $wlshop = $this->shop->find_all('1=1 and '.rtrim($sid,'or'));
  5656. $this->data['wlshop'] = $wlshop;
  5657. $this->data['express'] = $this->express->find_all();
  5658. $this->_Template('fullorder_waybillemail',$this->data);
  5659. }
  5660. public function _khdd()
  5661. {
  5662. $dt = 0;$fgshop = "shop = 0";$sid = 'id = 0';
  5663. if(isset($_SESSION['api']))
  5664. {
  5665. $user = $this->user->get_api($_SESSION['api']);
  5666. $usp = $user;
  5667. $fgshop = "";$sid = "";
  5668. $usersp = explode('|',trim($user['shop'],'|'));
  5669. foreach ($usersp as $value)
  5670. {
  5671. $fgshop .= " shop = ".$value." or";
  5672. $sid .= " id = ".$value." or";
  5673. }
  5674. if($user['vip'] == 1)
  5675. {
  5676. $vip = 1;
  5677. }
  5678. else
  5679. {
  5680. $vip = 0;
  5681. }
  5682. }
  5683. $post = $this->input->post(NULL, TRUE);
  5684. if(isset($_GET['excel']))
  5685. {
  5686. $page = $this->input->get('page',true);
  5687. $perpage = $this->input->get('perpage',true);
  5688. $warehouse = $this->input->get('warehouse',true);
  5689. $timetk = $this->input->get('timetk',true);
  5690. $timetj = $this->input->get('timetj',true);
  5691. $shop = $this->input->get('shop',true);
  5692. $source = $this->input->get('source',true);
  5693. $state = $this->input->get('state',true);
  5694. $review = $this->input->get('review',true);
  5695. $type = $this->input->get('type',true);
  5696. $express = $this->input->get('express',true);
  5697. $orderinfo = $this->input->get('orderinfo',true);
  5698. $user = $this->input->get('user',true);
  5699. $client = $this->input->get('name',true);
  5700. $waybill = $this->input->get('waybill',true);
  5701. $number = $this->input->get('number',true);
  5702. $email = $this->input->get('email',true);
  5703. $phone = $this->input->get('phone',true);
  5704. $dlz = $this->input->get('dlz',true);
  5705. $print = $this->input->get('print',true);
  5706. $library = $this->input->get('library',true);
  5707. $js = $this->input->get('js',true);
  5708. $exstate = $this->input->get('exstate',true);
  5709. $xztime = $this->input->get('xztime',true);
  5710. $libraryconfirm = $this->input->get('libraryconfirm',true);
  5711. $timetk = strtotime($timetk);
  5712. $timetj = strtotime($timetj);
  5713. $plorder = $this->input->get('pl',true);
  5714. $paypal = $this->input->get('paypal',true);
  5715. $zf = $this->input->get('zf',true);
  5716. $pay = $this->input->get('pay',true);
  5717. $excel = $this->input->get('excel',true);
  5718. $where = "1=1 and mergeid = 0 and (".rtrim($fgshop,'or').")";
  5719. if($warehouse)
  5720. {
  5721. $where .= " and type = '$warehouse'";
  5722. }
  5723. if($timetk && $timetj)
  5724. {
  5725. $where .= " and ".$xztime." > '$timetk' and ".$xztime." < '$timetj'";
  5726. }
  5727. if($shop)
  5728. {
  5729. $where .= " and shop = '$shop'";
  5730. }
  5731. if($source)
  5732. {
  5733. if($source == '2d')
  5734. {
  5735. $where .= " and source >= '2'";
  5736. }
  5737. else
  5738. {
  5739. $where .= " and source = '$source'";
  5740. }
  5741. }
  5742. if($state)
  5743. {
  5744. $where .= " and state = '$state'";
  5745. }
  5746. if($review)
  5747. {
  5748. $where .= " and review = '$review'";
  5749. }
  5750. if($type)
  5751. {
  5752. $where .= " and type = '$type'";
  5753. }
  5754. if($express)
  5755. {
  5756. $where .= " and express = '$express'";
  5757. }
  5758. if($orderinfo)
  5759. {
  5760. $where .= " and orderinfo = '$orderinfo'";
  5761. }
  5762. if($user)
  5763. {
  5764. $where .= " and user = '$user'";
  5765. }
  5766. if($client)
  5767. {
  5768. $where .= " and client like '%$client%'";
  5769. }
  5770. if($waybill)
  5771. {
  5772. $where .= " and waybill = '$waybill'";
  5773. }
  5774. if($number)
  5775. {
  5776. $where .= " and number = '$number'";
  5777. }
  5778. if($email)
  5779. {
  5780. $where .= " and email = '$email'";
  5781. }
  5782. if($phone)
  5783. {
  5784. $where .= " and phone like '%$phone%'";
  5785. }
  5786. if($library)
  5787. {
  5788. $where .= " and library = '$library'";
  5789. }
  5790. if($print)
  5791. {
  5792. $where .= " and print = '$print'";
  5793. }
  5794. if($dlz != '')
  5795. {
  5796. $where .= " and dlz = '$dlz'";
  5797. }
  5798. if($js)
  5799. {
  5800. $where .= " and js = '$js'";
  5801. }
  5802. if($exstate)
  5803. {
  5804. $where .= " and exstate = '$exstate'";
  5805. }
  5806. if($libraryconfirm)
  5807. {
  5808. $where .= " and libraryconfirm = '$libraryconfirm'";
  5809. }
  5810. if($paypal)
  5811. {
  5812. $where .= " and paypal = '$paypal'";
  5813. }
  5814. if($pay)
  5815. {
  5816. $where .= " and pay = '$pay'";
  5817. }
  5818. if($zf)
  5819. {
  5820. if($zf == 1)
  5821. {
  5822. $where .= " and paypal not like '%-%-%-%'";
  5823. }
  5824. else
  5825. {
  5826. $where .= " and paypal like '%-%-%-%'";
  5827. }
  5828. }
  5829. if($plorder)
  5830. {
  5831. $plorderinfo = '';$plnumber = '';$pln = 0;
  5832. $plorder = explode(',',trim($plorder,','));
  5833. foreach ($plorder as $value)
  5834. {
  5835. if(is_numeric($value))
  5836. {
  5837. $plorderinfo .= " orderinfo = ".$value." or";
  5838. }
  5839. else if($value != '')
  5840. {
  5841. $plorderinfo .= " number = '".$value."' or";
  5842. }
  5843. }
  5844. if($pln > 0)
  5845. {
  5846. $where .= " and (".rtrim($plorderinfo,'or').") and (".rtrim($plnumber,'or').")";
  5847. }
  5848. else
  5849. {
  5850. $where .= " and (".rtrim($plorderinfo,'or').")";
  5851. }
  5852. }
  5853. //数据排序
  5854. $order_str = "dtime desc";
  5855. if(empty($page))
  5856. {
  5857. $start = 0;
  5858. $perpage = 1;
  5859. }
  5860. else
  5861. {
  5862. $start = ($page - 1)*$perpage;
  5863. }
  5864. if($excel == '1')
  5865. {
  5866. $shop = array();
  5867. $shopdata = $this->shop->find_all("type = '269'");
  5868. foreach ($shopdata as $v)
  5869. {
  5870. $shop[$v['id']] = array('t'=>$v['brandname'],'z'=>0,'l'=>0,'x'=>0);//店铺名称,总客户,老客户,新客户
  5871. }
  5872. $oldnumber = 0;$newnumber = 0;
  5873. $info_list = $this->db->query('select distinct shop,email from crowd_fullorder where '.$where)->result_array();
  5874. foreach ($info_list as $key=>$v)
  5875. {
  5876. $shop[$v['shop']]['z'] += 1;
  5877. $num = $this->fullorder->find_count("email = '".$v['email']."' and shop = '".$v['shop']."' and ".$xztime." < '$timetj'");
  5878. if($num > 1)
  5879. {
  5880. $shop[$v['shop']]['l'] += 1;
  5881. }
  5882. else
  5883. {
  5884. $shop[$v['shop']]['x'] += 1;
  5885. }
  5886. if(isset($v['email']) && $usp['excelpass'] == '1')
  5887. {
  5888. $emailpass = $this->setting->get_excelpass($v['email']);
  5889. $info_list[$key]['email'] = $emailpass;
  5890. }
  5891. }
  5892. $title = date('Y-m-d',$timetk).'-'.date('Y-m-d',$timetj);
  5893. $titlename = "<table border=1>
  5894. <tr>
  5895. <td>店铺</td>
  5896. <td>客户数</td>
  5897. <td>老客户数</td>
  5898. <td>新客户数</td>
  5899. </tr>
  5900. </table>";
  5901. $filename = $title.".xls";
  5902. $tail = "\n";
  5903. $this->excel->get_fz2($shop,$titlename,$filename,$tail);
  5904. }
  5905. else if($excel == '2' || $excel == '3')
  5906. {
  5907. $kh = array();
  5908. $info_list = $this->db->query('select distinct shop,email from crowd_fullorder where email != "" and '.$where)->result_array();
  5909. foreach ($info_list as $key=>$v)
  5910. {
  5911. $k = $this->fullorder->find_all("shop = '".$v['shop']."' and email = '".$v['email']."' and ".$xztime." < '$timetj'",'name,email,dtime,shouldmoney','dtime desc');
  5912. if($excel == 2 && count($k) > 1)
  5913. {
  5914. $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')));
  5915. }
  5916. if($excel == 3 && count($k) < 2)
  5917. {
  5918. $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')));
  5919. }
  5920. if(isset($v['email']) && $usp['excelpass'] == '1')
  5921. {
  5922. $emailpass = $this->setting->get_excelpass($v['email']);
  5923. $info_list[$key]['email'] = $emailpass;
  5924. }
  5925. }
  5926. $title = $country['zname'].date('Y-m-d',$timetk).'-'.date('Y-m-d',$timetj);
  5927. $titlename = "<table border=1>
  5928. <tr>
  5929. <td>名称</td>
  5930. <td>邮箱</td>
  5931. <td>最后购买时间</td>
  5932. <td>购买次数</td>
  5933. <td>购买总额</td>
  5934. </tr>
  5935. </table>";
  5936. $filename = $title.".xls";
  5937. $tail = "\n";
  5938. $this->excel->get_fz2($kh,$titlename,$filename,$tail);
  5939. }
  5940. else if($excel == '4' || $excel == '5')
  5941. {
  5942. $kh = array();
  5943. $info_list = $this->db->query('select distinct shop,email from crowd_fullorder where email != "" and '.$where)->result_array();
  5944. foreach ($info_list as $key=>$value)
  5945. {
  5946. $k = $this->fullorder->find_all("shop = '".$value['shop']."' and email = '".$value['email']."' and ".$xztime." < '$timetj'",'orderinfo,state,product,name,email,dtime,shouldmoney','dtime desc');
  5947. if($excel == 4 && count($k) > 1)
  5948. {
  5949. foreach ($k as $v)
  5950. {
  5951. $typeclass = $this->typeclass->read($v['state']);
  5952. $kh[] = array($v['orderinfo'],$typeclass['spare'],$v['product'],$v['name'],$v['email'],date("Y-m-d H:i:s",$v['dtime']),$v['shouldmoney']);
  5953. }
  5954. }
  5955. if($excel == 5 && count($k) < 2)
  5956. {
  5957. if(!isset($k[0]['state']))
  5958. {
  5959. $typeclass = $k[0]['state'].'-数据字典无此信息';
  5960. }
  5961. else
  5962. {
  5963. $typeclass = $this->typeclass->read($k[0]['state']);
  5964. }
  5965. $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']);
  5966. }
  5967. if(isset($value['email']) && $usp['excelpass'] == '1')
  5968. {
  5969. $emailpass = $this->setting->get_excelpass($value['email']);
  5970. $info_list[$key]['email'] = $emailpass;
  5971. }
  5972. }
  5973. $title = $country['zname'].date('Y-m-d',$timetk).'-'.date('Y-m-d',$timetj);
  5974. $titlename = "<table border=1>
  5975. <tr>
  5976. <td>订单号</td>
  5977. <td>订单状态</td>
  5978. <td>产品名</td>
  5979. <td>客户名</td>
  5980. <td>客户邮箱</td>
  5981. <td>下单时间</td>
  5982. <td>订单金额</td>
  5983. </tr>
  5984. </table>";
  5985. $filename = $title.".xls";
  5986. $tail = "\n";
  5987. $this->excel->get_fz2($kh,$titlename,$filename,$tail);
  5988. }
  5989. }
  5990. }
  5991. public function _klarnadata()
  5992. {
  5993. $post = $this->input->post(NULL, TRUE);
  5994. if(isset($post['number']))
  5995. {
  5996. $number = $this->input->post('number',true);
  5997. $data = $this->fullorder->get_number($number);
  5998. $shop = $this->shop->read($data['shop']);
  5999. $f = '';
  6000. if($data['pay'] == '23')
  6001. {
  6002. $url = 'https://api-na.klarna.com/ordermanagement/v1/orders/'.$data['paypal'];
  6003. $header[] = "Content-Type:application/json";
  6004. $header[] = "Authorization: Basic ".base64_encode($shop['klarnaname'].":".$shop['klarnapass']);
  6005. $ch = curl_init();
  6006. curl_setopt($ch, CURLOPT_URL, $url);
  6007. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  6008. curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
  6009. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  6010. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
  6011. $res = curl_exec($ch);
  6012. curl_close($ch);
  6013. $res = json_decode($res,true);
  6014. if(isset($res['fraud_status']) && $shop['klarnaname'] != '')
  6015. {
  6016. $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'];
  6017. }
  6018. }
  6019. else if(($data['pay'] == '22' || $data['pay'] == '7') && $shop['paypalname'] != '')
  6020. {
  6021. $f = $this->paypal->data($data['paypal'],$shop);
  6022. }
  6023. else if(($data['pay'] == '26') && $shop['afterpayname'] != '')
  6024. {
  6025. $url = 'https://global-api.afterpay.com/v2/payments?ids='.$data['paypal'];
  6026. $header[] = "Accept:application/json";
  6027. $header[] = "User-Agent: Readme.io API Simulator'";
  6028. $header[] = "Authorization: Basic ".base64_encode($shop['afterpayname'].":".$shop['afterpaypass']);
  6029. $ch = curl_init();
  6030. curl_setopt($ch, CURLOPT_URL, $url);
  6031. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  6032. curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
  6033. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  6034. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
  6035. $res = curl_exec($ch);
  6036. curl_close($ch);
  6037. $res = json_decode($res,true);
  6038. if(isset($res['results'][0]['orderDetails']['consumer']['email']))
  6039. {
  6040. $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'];
  6041. $f = str_replace(',,',',',$f);
  6042. }
  6043. }
  6044. else if(($data['pay'] == '27') && $shop['clearpayname'] != '')
  6045. {
  6046. $url = 'https://global-api.afterpay.com/v2/payments?ids='.$data['paypal'];
  6047. $header[] = "Accept:application/json";
  6048. $header[] = "User-Agent: Readme.io API Simulator'";
  6049. $header[] = "Authorization: Basic ".base64_encode($shop['clearpayname'].":".$shop['clearpaypass']);
  6050. $ch = curl_init();
  6051. curl_setopt($ch, CURLOPT_URL, $url);
  6052. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  6053. curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
  6054. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  6055. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
  6056. $res = curl_exec($ch);
  6057. curl_close($ch);
  6058. $res = json_decode($res,true);
  6059. if(isset($res['results'][0]['orderDetails']['consumer']['email']))
  6060. {
  6061. $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'];
  6062. $f = str_replace(',,',',',$f);
  6063. }
  6064. }
  6065. else if($data['pay'] == '1211')
  6066. {
  6067. $url = 'https://api.stripe.com/v1/payment_intents/'.$data['paypal'];
  6068. $header[] = "Authorization:Bearer ".$shop['stripe'];
  6069. $ch = curl_init();
  6070. curl_setopt($ch, CURLOPT_URL, $url);
  6071. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  6072. curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
  6073. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  6074. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
  6075. $res = curl_exec($ch);
  6076. curl_close($ch);
  6077. $res = json_decode($res,true);
  6078. $f = '';
  6079. if(isset($res['shipping']['name']))
  6080. {
  6081. $line = ($res['shipping']['address']['line2'] != '')?$res['shipping']['address']['line1'].' '.$res['shipping']['address']['line2']:$res['shipping']['address']['line1'];
  6082. $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));
  6083. }
  6084. }
  6085. else
  6086. {
  6087. echo json_encode(array('msg'=>'此店铺没有对接信息','success'=>false));exit;
  6088. }
  6089. if($f != '')
  6090. {
  6091. if($this->fullorder->save(array('klarnadata'=>$f),$data['id']))
  6092. {
  6093. echo json_encode(array('msg'=>'获取成功,请关闭此页重新打开','success'=>true));exit;
  6094. }
  6095. else
  6096. {
  6097. echo json_encode(array('msg'=>'写入失败,请重试','success'=>false));exit;
  6098. }
  6099. }
  6100. else
  6101. {
  6102. echo json_encode(array('msg'=>'获取失败,请稍后重试','cl'=>base64_encode($shop['afterpayname'].":".$shop['afterpaypass']),'a'=>$data['paypal'],'success'=>false));exit;
  6103. }
  6104. }
  6105. }
  6106. public function _kcyz($warehouse,$whlabel,$id,$shop,$number)
  6107. {
  6108. if(!$whlabel || $whlabel == '|')
  6109. {
  6110. return array('t'=>1,'m'=>json_encode(array('t'=>1,'msg'=>'请先添加产品信息!','success'=>false)));exit;
  6111. }
  6112. $w = $this->warehouse->read($warehouse);
  6113. if($w['zd'] != 1)
  6114. {
  6115. return 1;
  6116. }
  6117. $pp = explode('|',trim($whlabel,'|'));
  6118. $x = 0;$save = array();
  6119. foreach ($pp as $va)
  6120. {
  6121. $num = explode('-',$va);
  6122. if($number)
  6123. {
  6124. $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 = '')");//通用
  6125. $shopwhlabel = $this->whlabel->find_all("state = 0 and number = '$num[0]' and warehouse = '$warehouse' and (zd = '$number' or zd = '') and shop like '%,".$shop.",%'");//专属
  6126. }
  6127. else
  6128. {
  6129. $whlabel = $this->whlabel->find_all("state = 0 and number = '$num[0]' and warehouse = '$warehouse' and zd = '' and (shop IS NULL or shop = '')");//通用
  6130. $shopwhlabel = $this->whlabel->find_all("state = 0 and number = '$num[0]' and warehouse = '$warehouse' and zd = '' and shop like '%,".$shop.",%'");//专属
  6131. }
  6132. $x++;
  6133. if(count($whlabel)+count($shopwhlabel) < $num[1])
  6134. {
  6135. $save[] = $x-1;continue;//提前先加X不然出错,所以要减1
  6136. }
  6137. }
  6138. return $save;
  6139. }
  6140. public function _epod()
  6141. {
  6142. $post = $this->input->post(NULL, TRUE);
  6143. if(isset($post['number']))
  6144. {
  6145. $number = $this->input->post('number',true);
  6146. $data = $this->fullorder->get_number($number);
  6147. if(is_file('./data/epod/'.date('Y',time()).'/epod-'.$data['waybill'].'.pdf'))
  6148. {
  6149. echo json_encode(array('msg'=>'http://'.$_SERVER['HTTP_HOST'].'/data/epod/'.date('Y',time()).'/epod-'.$data['waybill'].'.pdf','success'=>true));exit;
  6150. }
  6151. else
  6152. {
  6153. $epod = $this->dhl->get_epod($data);
  6154. if($epod['c'] == 1)
  6155. {
  6156. echo json_encode(array('msg'=>'http://'.$_SERVER['HTTP_HOST'].$epod['d'],'success'=>true));exit;
  6157. }
  6158. else
  6159. {
  6160. echo json_encode(array('msg'=>$epod['d'],'success'=>false));exit;
  6161. }
  6162. }
  6163. }
  6164. }
  6165. public function _zw($arg_array)
  6166. {
  6167. $arg_array = $arg_array[0];$fpdata = array();
  6168. $fullorder = $this->fullorder->read($arg_array);
  6169. $fullorder['shipremarks'] = str_replace(array('<','>'),array('&lt;','&gt;'),$fullorder['shipremarks']);
  6170. $fullorder['parameter'] = str_replace(",","---",$fullorder['parameter']);
  6171. $this->data['fullorder'] = $fullorder;
  6172. $this->data['countrys'] = $this->country->find_all();
  6173. $this->data['express'] = $this->express->find_all();
  6174. $warehouse = $this->warehouse->read($fullorder['type']);
  6175. if(stripos($fullorder['fpdata'],';') !== false)
  6176. {
  6177. $fpdata = explode(';',rtrim($fullorder['fpdata'],';'));
  6178. foreach ($fpdata as $k=>$v)
  6179. {
  6180. $xxv = explode('|',$v);
  6181. if(isset($xxv[9]) && stripos($xxv[9],$warehouse['hz']) !== false && $warehouse['hz'] != '' && $warehouse['zd'] == 1)
  6182. {
  6183. $xxv['zd'] = "<p>已占单</p>";
  6184. $bdck = $warehouse['bdck'];
  6185. if(stripos($xxv[9],'~') !== false)
  6186. {
  6187. $dxxv = explode('~',trim($xxv[9],'~'));
  6188. foreach ($dxxv as $val)
  6189. {
  6190. $wzid = $this->$bdck->read(trim($val,$warehouse['hz']));
  6191. if($wzid['details'] != '')
  6192. {
  6193. $xxv['zd'] .= '<p>位置:'.$wzid['details'].' - '.$wzid['cpid'].'</p>';
  6194. }
  6195. }
  6196. }
  6197. else
  6198. {
  6199. $wzid = $this->$bdck->read(trim($xxv[9],$warehouse['hz']));
  6200. if($wzid['details'] != '')
  6201. {
  6202. $xxv['zd'] .= '<p>位置:'.$wzid['details'].' - '.$wzid['cpid'].'</p>';
  6203. }
  6204. }
  6205. }
  6206. $fpdata[$k] = $xxv;
  6207. }
  6208. }
  6209. $this->data['fpdata'] = $fpdata;
  6210. $this->data['fpdata'] = $fpdata;
  6211. $thfpdataxs = array();
  6212. if($fullorder['thfpdata'] != '')
  6213. {
  6214. $thfpdata = explode(';',trim($fullorder['thfpdata'],';'));
  6215. foreach ($thfpdata as $k=>$v)
  6216. {
  6217. $thxs = explode('~',trim($v,'~'));
  6218. $thxs[0] = explode('|',trim($thxs[0],'|'));
  6219. $thxs[1] = explode('|',trim($thxs[1],'|'));
  6220. $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]);
  6221. }
  6222. }
  6223. $this->data['thfpdata'] = $thfpdataxs;
  6224. $shop = $this->shop->read($fullorder['shop']);
  6225. $this->data['et'] = $shop['estimaterate'];//此店铺配置预计到帐金额比例
  6226. $is = 0;
  6227. if($shop['type'] == 269 || $shop['type'] == 2678)//判断是否独立站,269是独立站
  6228. {
  6229. $is = 1;
  6230. }
  6231. $this->data['is'] = $is;
  6232. //单项开始
  6233. $warehouse = $this->warehouse->read($fullorder['warehouse']);//发货仓库
  6234. $state = $this->typeclass->read($fullorder['state']);//订单状态
  6235. $country = $this->country->read($fullorder['country']);//国家
  6236. if($fullorder['capital'] == 1)
  6237. {
  6238. $capital = '暂未支付';
  6239. }
  6240. else if($fullorder['capital'] == 2)
  6241. {
  6242. $capital = '部分支付';
  6243. }
  6244. else if($fullorder['capital'] == 3)
  6245. {
  6246. $capital = '全部支付';
  6247. }
  6248. if($fullorder['printtype'] == 1)
  6249. {
  6250. $printtype = '运单';
  6251. }
  6252. else if($fullorder['printtype'] == 2)
  6253. {
  6254. $printtype = '发货单';
  6255. }
  6256. else if($fullorder['printtype'] == 3)
  6257. {
  6258. $printtype = '不打印单据';
  6259. }
  6260. else
  6261. {
  6262. $printtype = '未选择';
  6263. }
  6264. $this->data['warehouse'] = $warehouse['title'];
  6265. $this->data['state'] = $state['title'];
  6266. $this->data['capital'] = $capital;
  6267. $this->data['country'] = $country['name'];
  6268. $this->data['printtype'] = $printtype;
  6269. //单项结束
  6270. /** 历史运单号展示并下载PDF 打印时间需要2019-3-21 0点之后有记录 **/
  6271. $downwaybill = '';$dwls = array();
  6272. $oldwaybill = explode('-',ltrim($fullorder['oldwaybill'],'-'));
  6273. if(isset($oldwaybill[0][1]))
  6274. {
  6275. $oldwaybill = array_reverse($oldwaybill); //调整顺序
  6276. foreach ($oldwaybill as $v)
  6277. {
  6278. $dw = explode('/',$v);
  6279. if(isset($dw[1]))
  6280. {
  6281. if(stripos($downwaybill,$dw[1]) === false)
  6282. {
  6283. $dwls[$dw[1]] = 1;
  6284. $downwaybill .= '<a href="/data/pdf/'.$dw[0].'/y-'.$dw[1].'.pdf" target="_blank">'.$dw[1].'</a>、';
  6285. }
  6286. }
  6287. }
  6288. }
  6289. if($fullorder['printtype'] == 1)
  6290. {
  6291. if($fullorder['waybill'] != '' && !isset($dwls[$fullorder['waybill']]))
  6292. {
  6293. $downwaybill = '<a href="/data/pdf/'.date('Ymd',$fullorder['printtime']).'/y-'.$fullorder['waybill'].'.pdf" target="_blank">'.$fullorder['waybill'].'</a>、'.$downwaybill;
  6294. }
  6295. }
  6296. $this->data['downwaybill'] = rtrim($downwaybill,'、');
  6297. /** 历史打印时间 **/
  6298. $printtime = '';
  6299. if($fullorder['oldprinttime'])
  6300. {
  6301. $pte = explode('-',rtrim($fullorder['oldprinttime'],'-'));
  6302. foreach ($pte as $v)
  6303. {
  6304. $printtime .= date('Y-m-d H:i:s',$v).'、';
  6305. }
  6306. }
  6307. $this->data['printtime'] = rtrim($printtime,'、');
  6308. $product = '';
  6309. $fullorder['product'] = str_replace("'","",$fullorder['product']);
  6310. if($fullorder['link'] != '' && $fullorder['source'] != '1')
  6311. {
  6312. $pt = explode(',',$fullorder['product']);
  6313. $lk = explode(',',$fullorder['link']);
  6314. for($i=0;$i<count($pt);$i++)
  6315. {
  6316. if(isset($lk[$i]))
  6317. {
  6318. $octs = $this->colourorderts->get_texturl($pt[$i],$lk[$i]);
  6319. }
  6320. else
  6321. {
  6322. $octs = '';
  6323. }
  6324. $a = $octs?'<font style="color:#'.$octs['colour'].'">'.$pt[$i].'</font>':$pt[$i];
  6325. //$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];
  6326. if(isset($lk[$i]))
  6327. {
  6328. $product .= ($product != '')?' , <a href="'.$lk[$i].'" target="_blank">'.$a.'</a>':'<a href="'.$lk[$i].'" target="_blank">'.$a.'</a>';
  6329. }
  6330. else
  6331. {
  6332. $product .= ($product != '')?' , '.$a:$a;
  6333. }
  6334. }
  6335. }
  6336. else
  6337. {
  6338. $octs = $this->colourorderts->get_text($fullorder['product']);
  6339. $a = $octs?'<font style="color:#F39">'.$fullorder['product'].'</font>':$fullorder['product'];
  6340. //$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'];
  6341. $product = $a;
  6342. }
  6343. $this->data['product'] = $product;
  6344. $out = $this->systemtransfer->find_all("number = '".$fullorder['number']."'");
  6345. $outread = '';
  6346. if($out)
  6347. {
  6348. foreach ($out as $val)
  6349. {
  6350. $list = '';
  6351. $rk = explode('|',trim($val['rk'],'|'));
  6352. $rktime = explode('|',trim($val['rktime'],'|'));
  6353. $zw = array();
  6354. $t = $this->transfer->find_all("1=1");
  6355. foreach ($t as $v)
  6356. {
  6357. $zw[$v['id']] = $v['title'];
  6358. }
  6359. if($val['rk'] != '' && count($rk) > 0)
  6360. {
  6361. for($i=0;$i<count($rk);$i++)
  6362. {
  6363. if(!isset($rktime[$i]))
  6364. {
  6365. $list .= $zw[$cz[$i]];
  6366. }
  6367. else
  6368. {
  6369. $list .= $zw[$rk[$i]].' :'.date('Y-m-d H:i',$rktime[$i]).',';
  6370. }
  6371. }
  6372. }
  6373. $outread .= '<span style="color:#f00">'.$val['pm'].'</span>:'.$list.'<br>';
  6374. }
  6375. }
  6376. else
  6377. {
  6378. $systemwigsout = $this->systemwigsout->find_all("number = '".$fullorder['number']."'");
  6379. $outread = array();
  6380. if($systemwigsout)
  6381. {
  6382. foreach ($systemwigsout as $v)
  6383. {
  6384. if($v['czwarehouse'] == 37)
  6385. {
  6386. $outread[] = '华荣厂';
  6387. }
  6388. else if($v['czwarehouse'] == 0)
  6389. {
  6390. $outread[] = '龙盈厂';
  6391. }
  6392. $cz = explode('|',trim($v['cz'],'|'));
  6393. $cztime = explode('|',trim($v['cztime'],'|'));
  6394. $zw = $this->transfer->get_list();
  6395. if($v['cz'] != '' && count($cz) > 0)
  6396. {
  6397. for($i=0;$i<count($cz);$i++)
  6398. {
  6399. if(!isset($cztime[$i]))
  6400. {
  6401. $outread[] = $zw[$cz[$i]].' -&gt; ';
  6402. }
  6403. else
  6404. {
  6405. $outread[] = $zw[$cz[$i]].' :'.date('Y-m-d H:i',$cztime[$i]).' -&gt; ';
  6406. }
  6407. }
  6408. $outread[] = '<br>';
  6409. }
  6410. }
  6411. }
  6412. }
  6413. $klarnacolor = '';
  6414. if($fullorder['klarnadata'] !='')
  6415. {
  6416. $klarnadata = explode('|',$fullorder['klarnadata']);
  6417. if($klarnadata[0] == 'paypal' || $klarnadata[0] == 'stripe')
  6418. {
  6419. $klarnadata[1] = json_decode($klarnadata[1],true);
  6420. if($klarnadata[0] == 'stripe' && $klarnadata[1]['shouldmoney'] != $fullorder['shouldmoney'] && $fullorder['pay'] == 1211)
  6421. {
  6422. $klarnacolor = 'style="color:#F00"';
  6423. }
  6424. }
  6425. else if($klarnadata[0]!=1 && $fullorder['pay']!=26 && $fullorder['pay']!=27 && $fullorder['pay']!=1211)
  6426. {
  6427. $klarnacolor = 'style="color:#F00"';
  6428. }
  6429. if($fullorder['pay'] == 23)//klarna
  6430. {
  6431. $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');
  6432. $ToState = array_flip($ToState);
  6433. $klarnadata3 = str_replace(' ','',$klarnadata[3]);
  6434. $city = str_replace(' ','',$fullorder['city']);
  6435. $klarnadataaddress = explode($city,$klarnadata3);
  6436. if(isset($klarnadataaddress[1]))
  6437. {
  6438. $klarnadata3 = $city.$klarnadataaddress[1];
  6439. $klarnadatacolor = explode(',',$klarnadata3);
  6440. unset($klarnadatacolor[4]);
  6441. unset($klarnadatacolor[6]);
  6442. if(isset($ToState[$klarnadatacolor[1]]))
  6443. {
  6444. $klarnadatacolor[1] = ucwords($ToState[$klarnadatacolor[1]]);
  6445. }
  6446. $klarnadata['color'] = $klarnadataaddress[0].implode(",",$klarnadatacolor);
  6447. }
  6448. else
  6449. {
  6450. $klarnadata['color'] = $klarnadata3;
  6451. }
  6452. }
  6453. }
  6454. else
  6455. {
  6456. $klarnadata = '';
  6457. }
  6458. $p = explode('-',$fullorder['paypal']);
  6459. $this->data['klarnacolor'] = $klarnacolor;
  6460. $this->data['klarnadata'] = $klarnadata;
  6461. $this->data['systemwigsout'] = $outread;
  6462. $this->_Template('fullorder_zw',$this->data);
  6463. }
  6464. public function _dcdxyz()
  6465. {
  6466. $post = $this->input->get(NULL, TRUE);
  6467. if(isset($post['timetk']))
  6468. {
  6469. $timetk = $this->input->get('timetk',true);
  6470. $timetj = $this->input->get('timetj',true);
  6471. $timetk = strtotime($timetk);
  6472. $timetj = strtotime($timetj);
  6473. $where = "oldwaybill != ''";
  6474. if($timetk && $timetj)
  6475. {
  6476. $where .= " and dtime > '$timetk' and dtime < '$timetj'";
  6477. }
  6478. //数据排序
  6479. $order_str = "dtime desc";
  6480. //取得信息列表
  6481. $info_list = $this->fullorder->find_all($where,'orderinfo,number,oldwaybill',$order_str);
  6482. $data = array();
  6483. foreach ($info_list as $key=>$value)
  6484. {
  6485. $ob = '';
  6486. $oldwaybill = explode('-',trim($value['oldwaybill'],'-'));
  6487. if(count($oldwaybill) < 2)
  6488. {
  6489. continue;
  6490. }
  6491. $oldwaybill = array_reverse($oldwaybill); //调整顺序
  6492. foreach ($oldwaybill as $v)
  6493. {
  6494. $dw = explode('/',$v);
  6495. if(isset($dw[1]))
  6496. {
  6497. $dwls[$dw[1]] = 1;
  6498. $ob .= $dw[1].'、';
  6499. }
  6500. }
  6501. $info_list[$key]['oldwaybill'] = trim($ob,'、');
  6502. $data[] = $info_list[$key];
  6503. }
  6504. $title = "多运单信息 ".date("Y-m-d");
  6505. $titlename = "<table border=1>
  6506. <tr><th colspan='14' align='left'><h3>".$title."<h3></th></tr>
  6507. <tr>
  6508. <td>订单号</td>
  6509. <td>编号</td>
  6510. <td>运单号</td>
  6511. </tr>
  6512. </table>";
  6513. $filename = $title.".xls";
  6514. $tail = "\n";
  6515. $this->excel->get_fz2($data,$titlename,$filename,$tail);
  6516. }
  6517. }
  6518. public function _thxz()
  6519. {
  6520. $post = $this->input->get(NULL, TRUE);
  6521. if(isset($post['timetk']))
  6522. {
  6523. $timetk = $this->input->get('timetk',true);
  6524. $timetj = $this->input->get('timetj',true);
  6525. $timetk = strtotime($timetk);
  6526. $timetj = strtotime($timetj);
  6527. $where = "returndata != ''";
  6528. if($timetk && $timetj)
  6529. {
  6530. $where .= " and dtime > '$timetk' and dtime < '$timetj'";
  6531. }
  6532. //数据排序
  6533. $order_str = "dtime desc";
  6534. //取得信息列表
  6535. $info_list = $this->fullorder->find_all($where,'orderinfo,number,returndata',$order_str);
  6536. foreach ($info_list as $key=>$value)
  6537. {
  6538. $ydh = explode('">',$value['returndata']);
  6539. $ydh = explode('</a>',$ydh[1]);
  6540. $info_list[$key]['returndata'] = $ydh[0];
  6541. $time = explode('pdf/',$value['returndata']);
  6542. $time = explode('/',$time[1]);
  6543. $info_list[$key]['time'] = $time[0];
  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. <td>退货时间</td>
  6553. </tr>
  6554. </table>";
  6555. $filename = $title.".xls";
  6556. $tail = "\n";
  6557. $this->excel->get_fz2($info_list,$titlename,$filename,$tail);
  6558. }
  6559. }
  6560. public function _ddcf()
  6561. {
  6562. $post = $this->input->post(NULL, TRUE);
  6563. if(isset($post['number']))
  6564. {
  6565. $number = $this->input->post('number',true);
  6566. $data = $this->fullorder->get_number($number);
  6567. if(!$data)
  6568. {
  6569. echo json_encode(array('msg'=>'没有找到此订单','success'=>false));exit;
  6570. }
  6571. if($data['review'] != 1 && $data['review'] != 2)
  6572. {
  6573. echo json_encode(array('msg'=>'必须是 待审核 状态才能拆分','success'=>false));exit;
  6574. }
  6575. if($data['merge'] != 0)
  6576. {
  6577. echo json_encode(array('msg'=>'已合并的订单无法使用此拆分功能','success'=>false));exit;
  6578. }
  6579. $cfnum = explode('-',trim($number,'-'));
  6580. // if((count($cfnum) > 3 && stripos($number,'-PF-') === false))
  6581. // {
  6582. // echo json_encode(array('msg'=>'只能在原单操作拆分','success'=>false));exit;
  6583. // }
  6584. if(count($cfnum) > 4 && stripos($number,'-PF-') !== false)
  6585. {
  6586. echo json_encode(array('msg'=>'只能在原单操作拆分','success'=>false));exit;
  6587. }
  6588. $num = $this->fullorder->find_count("number like '".$number."%'");
  6589. $data['number'] = $data['number'].'-'.$num;
  6590. $data['orderinfo'] = $data['shop'].date('ymdHis',time()).rand(0,1);;
  6591. $data['shouldmoney'] = 0;
  6592. $data['budget'] = 0;
  6593. $data['shipremarks'] = '';
  6594. $data['source'] = 1;
  6595. //$data['review'] = 2;
  6596. $data['extra_status'] = 1;//拆分的订单
  6597. unset($data['id']);
  6598. unset($data['jweight']);
  6599. unset($data['fpcount']);
  6600. unset($data['returndata']);
  6601. unset($data['waybill']);
  6602. unset($data['oldwaybill']);
  6603. unset($data['printtime']);
  6604. if($this->fullorder->insert($data))
  6605. {
  6606. echo json_encode(array('msg'=>'拆分成功!新订单编号:'.$data['number'],'success'=>true));exit;
  6607. }
  6608. else
  6609. {
  6610. echo json_encode(array('msg'=>'拆分失败,请重试','success'=>false));exit;
  6611. }
  6612. }
  6613. }
  6614. public function _cf() //合并订单拆分
  6615. {
  6616. $post = $this->input->post(NULL, TRUE);
  6617. if(isset($post['id']))
  6618. {
  6619. $id = $this->input->post('id',true);
  6620. $b = $this->fullorder->read($id);
  6621. $order = array();
  6622. if($b['merge'] == $b['id'])
  6623. {
  6624. $data = $this->fullorder->find_all("merge = '".$b['merge']."'");
  6625. foreach ($data as $v)
  6626. {
  6627. $a = $this->fullorderhb->get_orderinfo($v['orderinfo']);
  6628. if($a)
  6629. {
  6630. $this->fullorder->save($a,$v['id']);
  6631. }
  6632. $order[] = $v['id'];
  6633. }
  6634. echo json_encode(array('msg'=>'拆分成功!','d'=>$order,'success'=>true));exit;
  6635. }
  6636. else
  6637. {
  6638. echo json_encode(array('msg'=>'拆分条件错误!','success'=>false));exit;
  6639. }
  6640. }
  6641. }
  6642. }