Sale.php 260 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085
  1. <?php
  2. namespace app\admin\controller;
  3. use app\abutment\model\SupplierRelationUser;
  4. use app\abutment\model\SupplierUser;
  5. use app\admin\model\DataGroup as DataGroupModel;
  6. use app\admin\model\GoodLog;
  7. use app\admin\model\GoodStockInfo;use app\admin\model\ProcessOrder;
  8. use app\admin\model\SaleInfo;use Exception;
  9. use think\App;
  10. use think\facade\Cache;
  11. use think\facade\Config;
  12. use think\facade\Db;
  13. use app\admin\model\ActionLog;
  14. use think\facade\Validate;
  15. //销售单
  16. class Sale extends Base
  17. {
  18. public $noble = [];
  19. public function __construct(App $app)
  20. {
  21. parent::__construct($app);
  22. $this->noble = \think\facade\Config::get("noble");
  23. }
  24. public function create()
  25. {
  26. $token = isset($this->post['token']) && $this->post['token'] !== "" ? trim($this->post['token']) : "";
  27. $orderCode = makeNo("QR");
  28. $customer_code = isset($this->post['customer_code']) && $this->post['customer_code'] !== "" ? trim($this->post['customer_code']) : "";
  29. if ($customer_code == "") {
  30. return error_show(1002, "客户customer_code不能为空");
  31. }
  32. $customer = Db::name("customer_info")->where(["companyNo" => $customer_code])->find();
  33. if ($customer == false) {
  34. return error_show(1004, "未找到客户数据");
  35. }
  36. $supplierNo = isset($this->post['supplierNo']) && $this->post['supplierNo'] !== "" ? trim($this->post['supplierNo']) : "";
  37. if ($supplierNo == "") {
  38. return error_show(1002, "参数supplierNo不能为空");
  39. }
  40. $supplier = Db::name("business")->where(["companyNo" => $supplierNo])->find();
  41. if ($supplier == false) {
  42. return error_show(1004, "未找到平台供应商数据");
  43. }
  44. $goodtype = isset($this->post['goodtype']) && $this->post['goodtype'] !== "" ? intval($this->post['goodtype']) : "1";
  45. $order_type = isset($this->post['order_type']) && $this->post['order_type'] !== "" ? intval($this->post['order_type']) : "1";
  46. $sendtype = isset($this->post['sendtype']) && $this->post['sendtype'] !== "" ? intval($this->post['sendtype']) : "";
  47. if ($sendtype === '') {
  48. return error_show(1004, "参数sendtype不能为空");
  49. }
  50. $platform_id = isset($this->post['platform_id']) && $this->post['platform_id'] !== "" ? intval($this->post['platform_id']) : "";
  51. if ($platform_id == '') {
  52. return error_show(1004, "参数platform_id不能为空");
  53. }
  54. $platform_order = isset($this->post['platform_order']) && $this->post['platform_order'] !== "" ? trim($this->post['platform_order']) : "";
  55. $good_code = isset($this->post['good_code']) && $this->post['good_code'] !== "" ? trim($this->post['good_code']) : "";
  56. if ($good_code == '') {
  57. return error_show(1004, "参数good_code不能为空");
  58. }
  59. $good_num = isset($this->post['good_num']) && $this->post['good_num'] !== "" ? intval($this->post['good_num']) : "";
  60. if ($good_num === '') {
  61. return error_show(1004, "参数good_num不能为空");
  62. }
  63. $arrtime = isset($this->post['arrtime']) && $this->post['arrtime'] != "" ? $this->post['arrtime'] : "";
  64. if ($arrtime == "") {
  65. return error_show(1004, "参数arrtime不能为空");
  66. }
  67. $paytime = isset($this->post['paytime']) && $this->post['paytime'] != "" ? $this->post['paytime'] : "";
  68. $workNo = isset($this->post['workNo']) && $this->post['workNo'] != "" ? trim($this->post['workNo']) : "";
  69. // $poNo =isset($this->post['poNo'])&&$this->post['poNo']!=""? trim($this->post['poNo']):"";
  70. $ct = Db::name('good_platform')->alias('a')->join('good b', 'b.spuCode=a.spuCode', 'left')
  71. ->where(['a.skuCode' => $good_code])->field("b.*,a.skuCode,a.platform_code,a.plat_code")->find();
  72. if ($ct == false) {
  73. return error_show(1002, "未找到商品数据");
  74. }
  75. $goodinfo = $ct;
  76. $is_stock = $ct['is_stock'];
  77. $spuCode = $ct['spuCode'];
  78. $skuCode = $ct['skuCode'];
  79. $is_activity = isset($this->post['is_activity']) && $this->post['is_activity'] !== "" ? $this->post['is_activity'] : "";
  80. $actcode = isset($this->post['act_code']) && $this->post['act_code'] !== "" ? trim($this->post['act_code']) : "";
  81. if ($order_type == 1) {
  82. if ($is_activity === "") {
  83. return error_show(1002, "参数is_activity不能为空");
  84. }
  85. if ($is_activity == 1 && $actcode == "") {
  86. return error_show(1002, "参数act_code不能为空");
  87. }
  88. }
  89. if ($goodinfo['is_stock'] == 1) {
  90. $stock_num = Db::name("good_stock")->alias("a")
  91. ->leftJoin("warehouse_info b", "a.wsm_code=b.wsm_code")
  92. ->leftJoin("good_stock_info c", "a.id=c.stockid and c.balance_num>0")
  93. ->where(["spuCode" => $spuCode, "a.is_del" => 0, "a.status" => 1, "b.wsm_type" => 5, "b.companyNo" =>$supplierNo])
  94. ->sum('balance_num');
  95. // if ($stock == false || $stock['usable_stock'] < $good_num) {
  96. // return error_show(1003, "库存数量不足");
  97. // }
  98. if($stock_num < $good_num){
  99. return error_show(1003, "库存数量不足");
  100. }
  101. $origin_price = 0;
  102. } else {
  103. if ($is_activity == 0) {
  104. $origin = Db::name("good_nake")->where([["spuCode", "=", $spuCode], ["min_num", "<=", $good_num], ["is_del", "=", 0]])->order("min_num desc")->find();
  105. if ($origin == false) {
  106. return error_show(1003, "未找到相关阶梯成本价格");
  107. }
  108. $origin_price = $origin['nake_total'];
  109. }
  110. }
  111. $sale_price = isset($this->post['good_price']) && $this->post['good_price'] !== "" ? floatval($this->post['good_price']) : '';
  112. $ct['cgd_gold_price'] = 0;
  113. if ($goodtype == 1) {
  114. if ($is_activity == 1) {
  115. $act = Db::name("activity_info")->alias("a")->leftJoin("good_activity b", "a.activity_code=b.activity_code")
  116. ->where(["a.skuCode" => $skuCode, "a.activity_code" => $actcode, "a.is_del" => 0, "a.status" => 1, "b.status" => 6, "b.is_del" => 0])
  117. ->find();
  118. if ($act == false) {
  119. return error_show(1003, "未找到相关活动价");
  120. }
  121. if ($act['moq_num'] > $good_num) {
  122. return error_show(1003, "商品不满足活动价起订量{$act['moq_num']}");
  123. }
  124. if ($act['activity_stock'] < $good_num) {
  125. return error_show(1003, "商品活动库存剩余{$act['activity_stock']}");
  126. }
  127. $sale_price = $sale_price !== "" ? $sale_price : $act['activity_price'];
  128. $origin_price = $act['cost_price'];
  129. } else {
  130. $good = Db::name("good_ladder")->where(["skuCode" => $skuCode, "is_del" => 0, "status" => 1])->where([["min_num", "<=", $good_num]])->order("min_num desc")->find();
  131. if ($good == false) {
  132. return error_show(1003, "未找到相关阶梯价格");
  133. }
  134. $sale_price = $sale_price !== "" ? $sale_price : $good['sale_price'];
  135. if ($ct['is_gold_price'] == 1 && $is_stock != 1) {
  136. $gold = Db::name("gold_price1")
  137. ->field('id,price')
  138. ->where(["type" => $ct['noble_metal'], "is_del" => 0, "status" => 1])
  139. ->order("addtime desc")
  140. ->find();
  141. //$saleprice(最终售价) = (打样费/购买数量 + 开模费/购买数量 + 商品重量* 最新金价 + 工艺费* 商品重量+包装费+加标费+证书费+产品裸价+物流费)/(1-成本售价/100);
  142. $sale_price = $sale_price !== "" ? $sale_price : ($ct['demo_fee'] / $good_num + $ct['open_fee'] / $good_num
  143. + $ct['noble_weight'] * $gold["price"] + $good['cost_fee'] * $ct['noble_weight'] + $origin['package_fee'] + $origin['mark_fee'] + $origin['cert_fee'] + $origin['nake_fee'] + $origin['delivery_fee']);
  144. $ct['cgd_gold_price'] = $gold["price"];
  145. }
  146. }
  147. } else {
  148. $sale_price = 0;
  149. }
  150. $supplier_info = Db::name('supplier')
  151. ->field('id,person,personid')
  152. ->where('code',$ct['supplierNo'])
  153. ->findOrEmpty();
  154. $cgd = [
  155. "supplierNo" => $ct['supplierNo'],
  156. "companyNo" => $supplierNo,
  157. "orderCode" => $orderCode,
  158. "spuCode" => $ct['spuCode'],
  159. "skuCode" => $ct['skuCode'],
  160. "good_name" => $ct['good_name'],
  161. "sale_price" => $origin_price,
  162. "total_fee" => $origin_price * $good_num,
  163. "pakge_fee" => isset($origin['package_fee']) ? $origin['package_fee'] : 0,
  164. "cert_fee" => isset($origin['cert_fee']) ? $origin['cert_fee'] : 0,
  165. "open_fee" => $ct['open_fee'],
  166. "cost_fee" => isset($origin['cost_fee']) ? $origin['cost_fee'] : 0,
  167. "mark_fee" => isset($origin['mark_fee']) ? $origin['mark_fee'] : 0,
  168. "nake_fee" => isset($origin['nake_fee']) ? $origin['nake_fee'] : 0,
  169. "delivery_fee" => isset($origin['delivery_fee']) ? $origin['delivery_fee'] : 0,
  170. "demo_fee" => $ct['demo_fee'],
  171. "good_num" => $good_num,
  172. "good_type" => $goodtype,
  173. "weight" => $ct['noble_weight'],
  174. "gold_price" => isset($ct['cgd_gold_price']) ? $ct['cgd_gold_price'] : 0,
  175. "order_type" => $is_stock == 1 ? 1 : 2,
  176. "order_source" => 1,//1直接下单
  177. "createrid" =>$supplier_info['personid'],
  178. "creater" =>$supplier_info['person'],
  179. 'send_way' => 2,
  180. 'good_createrid' => $goodinfo['createrid'],
  181. 'good_creater' => $goodinfo['creater'],//商品创建人
  182. ];
  183. $addrlist = isset($this->post['addrlist']) && $this->post['addrlist'] !== "" ? $this->post['addrlist'] : "";
  184. $send_num = 0;
  185. if ($sendtype == 1) {
  186. if ($addrlist == "" || empty($addrlist) || !is_array($addrlist)) {
  187. return error_show(1004, "参数addrlist不能为空");
  188. }
  189. $send_num = array_sum(array_column($addrlist, "receipt_quantity"));
  190. }
  191. if ($send_num > $good_num) {
  192. return error_show(1004, "发货数量超出订单总数量");
  193. }
  194. $remark = isset($this->post['remark']) && $this->post['remark'] !== "" ? trim($this->post['remark']) : "";
  195. $proof_id = isset($this->post['proof_id']) && $this->post['proof_id'] !== "" ? intval($this->post['proof_id']) : 0;
  196. $rm = $this->uid;
  197. $ri = $this->uname;
  198. Db::startTrans();
  199. try {
  200. $data = [
  201. "orderCode" => $orderCode,
  202. "good_code" => $spuCode,
  203. "skuCode" => $skuCode,
  204. "customer_code" => $customer_code,
  205. "good_name" => isset($goodinfo['good_name']) && $goodinfo['good_name'] !== '' ? $goodinfo['good_name'] : '',
  206. "good_num" => $good_num,
  207. "cat_id" => $goodinfo['cat_id'],
  208. "apply_id" => $rm,
  209. "apply_name" => $ri,
  210. "origin_price" => $origin_price,
  211. "sale_price" => $sale_price,
  212. "post_fee" => 0,
  213. "status" => 0,
  214. "send_num" => 0,
  215. "wsend_num" => $good_num,
  216. "send_status" => 0,
  217. "good_type" => $goodtype,
  218. "send_type" => $sendtype,
  219. "supplierNo" => $supplierNo,
  220. "is_del" => 0,
  221. "zxNo" => "",
  222. "platform_order" => $platform_order,
  223. "platform_id" => $platform_id,
  224. "remark" => $remark,
  225. "is_stock" => $is_stock,
  226. "is_activity" => $is_activity === "" ? 0 : $is_activity,
  227. "activity_code" => $actcode,
  228. "order_type" => $is_stock == 1 ? 1 : 2,
  229. "order_source" => 1,//1直接下单
  230. // "poNo"=>$poNo,
  231. 'good_weight' => $ct['noble_weight'],
  232. 'gold_price' => isset($ct['cgd_gold_price']) ? $ct['cgd_gold_price'] : 0,
  233. 'cost_price' => isset($good['cost_fee']) ? $good['cost_fee'] : 0,
  234. 'diff_weight' => 0,
  235. 'diff_fee' => 0,
  236. "workNo" => $workNo,
  237. "addtime" => date("Y-m-d H:i:s"),
  238. "updatetime" => date("Y-m-d H:i:s"),
  239. 'total_price' => round($sale_price * $good_num, 2),
  240. 'proof_id' => $proof_id,
  241. 'cgderid' => $supplier_info['personid'],
  242. 'cgder' => $supplier_info['person'],//采购员(供应商负责人)
  243. 'good_createrid' => $goodinfo['createrid'],
  244. 'good_creater' => $goodinfo['creater'],//商品创建人
  245. ];
  246. $paytime == "" ? "" : $data['paytime'] = $paytime;
  247. $datainfo = Db::name('sale')->insert($data, true);
  248. if ($datainfo > 0) {
  249. //修改状态,添加待办
  250. ActionLog::logAdd($this->post['token'], [
  251. "order_code" => $orderCode,//销售单code
  252. "status" => 0,//这里的status是之前的值
  253. "action_remark" => '',//备注
  254. "action_type" => "create"//新建create,编辑edit,更改状态status
  255. ], "XSQRD", 0, $this->post);
  256. ProcessOrder::AddProcess($this->post['token'], [
  257. "order_type" => 'XSQRD',
  258. "order_code" => $orderCode,//销售单code
  259. "order_id" => $datainfo,
  260. "order_status" => 0,
  261. "before_status" => 0,
  262. 'holder_id' => $data['apply_id']
  263. ]);
  264. if ($is_activity == 1) {
  265. $actup = [
  266. "activity_stock" => $act['activity_stock'] - $good_num,
  267. "updatetime" => date("Y-m-d H:i:s")
  268. ];
  269. $actupp = Db::name("activity_info")->where(["skuCode" => $skuCode, "activity_code" => $actcode,
  270. "is_del" => 0, "status" => 1])->save($actup);
  271. if ($actupp == false) {
  272. Db::rollback();
  273. return error_show(1002, "活动库存修改失败");
  274. }
  275. }
  276. $outstatus = 0;
  277. $standing_book_da = ['sale_id' => $datainfo, 'customer_code' => $customer_code, 'skuCode' => $skuCode, 'updatetime' => date('Y-m-d H:i:s')];
  278. if ($is_stock == 0) {
  279. $bol = $this->createCgd($cgd, $standing_book_da);
  280. if ($bol == false) {
  281. Db::rollback();
  282. return error_show(1002, "订单创建失败");
  283. }
  284. } else {
  285. $outstatus = 1;
  286. $stockid= Db::name("good_stock")->alias("a")
  287. ->leftJoin("warehouse_info b", "a.wsm_code=b.wsm_code")
  288. ->where(["spuCode" => $spuCode, "a.is_del" => 0, "a.status" => 1, "b.wsm_type" => 5, "b.companyNo" =>$supplierNo])
  289. ->column('a.id');
  290. $stockinfo =GoodStockInfo::OrderBn($orderCode,$stockid,$good_num);
  291. if($stockinfo==false){
  292. Db::rollback();
  293. return error_show(1002, "更新库存失败");
  294. }
  295. }
  296. if ($sendtype == 1) {
  297. $i=1;
  298. foreach ($addrlist as $value) {
  299. $temp = [];
  300. $addrs = [];
  301. if ($value['addr_code'] !== '' && is_array($value['addr_code']) && !empty($value['addr_code'])) {
  302. $addrs['provice_code'] = $value['addr_code'][0];
  303. $addrs['city_code'] = $value['addr_code'][1];
  304. $addrs['area_code'] = $value['addr_code'][2];
  305. $addr = json_encode($addrs);
  306. } else {
  307. $addr = isset($value['addr_code']) ? $value['addr_code'] : '';
  308. }
  309. $temp['orderCode'] = $orderCode;
  310. $temp['contactor'] = $value['contactor'];
  311. $temp['mobile'] = $value['mobile'];
  312. $temp['addr'] = $value['addr'];
  313. $temp['addr_code'] = $addr;
  314. $temp['customer_code'] = $customer_code;
  315. $temp['receipt_quantity'] = $value['receipt_quantity'];
  316. $temp['post_fee'] = 0;
  317. $temp['is_del'] = 0;
  318. $temp['addtime'] = date("Y-m-d H:i:s");
  319. $temp['updatetime'] = date("Y-m-d H:i:s");
  320. $temp['arrive_time'] = $arrtime;
  321. $vmp = Db::name('order_addr')->insert($temp, true);
  322. if ($vmp > 0) {
  323. $num = $value['receipt_quantity'];
  324. $outCode = makeNo("DF");
  325. //改变编码规则,将原来的outCode后两位换成序列号
  326. //str_pad字符串填充
  327. $outCode = substr($outCode, 0, -2) . str_pad($i, 2, '0', STR_PAD_LEFT);
  328. $i++;
  329. if($is_stock!=1) {
  330. $order = Db::name("order_num")->where(["orderCode" => $orderCode, "status" => 1])->where([["wsend_num", ">=", 0]])
  331. ->lock(true)->find();
  332. if ($order == false) {
  333. return error_show(1004, "未找到可以发货得采购单数据");
  334. }
  335. $order['wsend_num'] -= $num;
  336. $order['send_num'] += $num;
  337. $or = Db::name("order_num")->save($order);
  338. if ($or == false) {
  339. Db::rollback();
  340. return error_show(1002, "发货地址添加创建失败");
  341. }
  342. $tep = [
  343. "cgdNo" => $order['cgdNo'],
  344. "outCode" => $outCode,
  345. "send_num" => $num,
  346. "status" => 1,
  347. "addtime" => date("Y-m-d H:i:s"),
  348. "updatetime" => date("Y-m-d H:i:s")
  349. ];
  350. $sen = Db::name("order_send")->save($tep);
  351. if ($sen == false) {
  352. Db::rollback();
  353. return error_show(1002, "发货地址添加创建失败");
  354. }
  355. $cgdinfo = Db::name("purchease_order")->where(["cgdNo" => $order['cgdNo']])->find();
  356. if ($cgdinfo == false) {
  357. Db::rollback();
  358. return error_show(1002, "未匹配到采购数据");
  359. }
  360. }
  361. $out = [
  362. "orderCode" => $orderCode,
  363. "outCode" => $outCode,
  364. "apply_id" => $rm,
  365. "apply_name" => $ri,
  366. "addrid" => $vmp,
  367. "post_name" => "",
  368. "post_code" => "",
  369. "post_fee" => 0,
  370. "sendtime" => date("Y-m-d H:i:s"),
  371. "send_num" => $num,
  372. "check_num" => 0,
  373. "error_num" => 0,
  374. "wsm_code" => $is_stock == 1 ?'':$cgdinfo['wsm_code'],
  375. "order_type" => $is_stock == 1 ? 1 : 2,
  376. "status" => $outstatus,
  377. "addtime" => date("Y-m-d H:i:s"),
  378. "updatetime" => date("Y-m-d H:i:s")
  379. ];
  380. $ou = Db::name("order_out")->insertGetId($out);
  381. if ($ou == false) {
  382. Db::rollback();
  383. return error_show(1002, "发货地址添加创建失败");
  384. } else {
  385. //修改状态,添加待办
  386. ActionLog::logAdd(['id'=>$rm,'nickname'=>$ri], [
  387. "order_code" => $outCode,//出库单号
  388. "status" => $out['status'],//这里的status是之前的值
  389. "action_remark" => '',//备注
  390. "action_type" => "create"//新建create,编辑edit,更改状态status
  391. ], "CKD", $out['status'], $out);
  392. if($out['status']==1 ){
  393. //节点1待库管发货
  394. if($data['is_stock']==0){
  395. //非库存品,推给供应商负责人
  396. $supp = Db::name('supplier')
  397. ->field('person,personid')
  398. ->where('code',$ct['supplierNo'])
  399. ->findOrEmpty();
  400. ProcessOrder::AddProcess(['id'=>$rm,'nickname'=>$ri], [
  401. "order_type" => 'CKD',
  402. "order_code" => $outCode,//出库单号
  403. "order_id" => $ou,
  404. "order_status" => $out['status'],
  405. "before_status" => $out['status'],
  406. 'wait_id'=>$supp['personid'],
  407. 'wait_name'=>$supp['person'],
  408. ]);
  409. }else{
  410. //库存品,推给31库管和41库管-张凯旋
  411. $uids = Db::name('user_role')
  412. ->where(['is_del' => 0, 'roleid' => config('app.wsm_cgder_role'), 'status' => 1])
  413. ->column('uid');
  414. ProcessOrder::AddProcess(['id'=>$rm,'nickname'=>$ri], [
  415. "order_type" => 'CKD',
  416. "order_code" => $outCode,//出库单号
  417. "order_id" => $ou,
  418. "order_status" => $out['status'],
  419. "before_status" => $out['status'],
  420. 'handle_user_list' => implode(',', $uids),
  421. ]);
  422. }
  423. }else{
  424. ProcessOrder::AddProcess(['id'=>$rm,'nickname'=>$ri], [
  425. "order_type" => 'CKD',
  426. "order_code" => $outCode,//出库单号
  427. "order_id" => $ou,
  428. "order_status" => $out['status'],
  429. "before_status" => $out['status'],
  430. 'holder_id'=>$out['apply_id'],
  431. ]);
  432. }
  433. // $standing_book_da['outCode'] = $outCode;
  434. if (isset($standing_book_da['outCode'])) $standing_book_da['outCode'][] = $outCode;
  435. else $standing_book_da['outCode'] = [$outCode];
  436. }
  437. }
  438. else {
  439. Db::rollback();
  440. return error_show(1002, "发货地址添加创建失败");
  441. }
  442. }
  443. }
  444. //处理台账
  445. if (isset($standing_book_da['outCode'])) $standing_book_da['outCode'] = implode(',', $standing_book_da['outCode']);//发货单号拼接
  446. Db::name('standing_book')->insert(array_merge($standing_book_da, ['addtime' => date('Y-m-d H:i:s'), 'updatetime' => date('Y-m-d H:i:s'), 'standBookNo' => makeNo('IO')]));
  447. Db::commit();
  448. return app_show(0, "咨询订单创建成功", ["order_code" => $orderCode]);
  449. }
  450. Db::rollback();
  451. return error_show(1002, "咨询订单创建失败");
  452. } catch (\Exception $e) {
  453. Db::rollback();
  454. return error_show(1005, $e->getMessage());
  455. }
  456. }
  457. //采购单
  458. public function createCgd($data, array &$standing_book_da = [])
  459. {
  460. $cgdCode = makeNo("CG");
  461. $supplier = Db::name("supplier")->where(["code" => $data['supplierNo'], "is_del" => 0])->find();
  462. if ($supplier == false) {
  463. return false;
  464. }
  465. $wsm = Db::name("warehouse_info")->where(["supplierNo" => $data["supplierNo"], "companyNo" => $data['companyNo'], "wsm_type" => 2, "is_del" => 0])->find();
  466. if ($wsm == false) {
  467. $wsm_code = makeNo("WSM");
  468. $inwsm = [
  469. "wsm_code" => $wsm_code,
  470. "name" => $supplier['name'],
  471. "wsm_type" => 2,
  472. "supplierNo" => $supplier['code'],
  473. "addr" => "",
  474. "addrs_code" => "",
  475. "contactor" => $data['order_type'] == 1 ? $supplier['personid'] : $data['createrid'],
  476. "contactor_name" => $data['order_type'] == 1 ? $supplier['person'] : $data['creater'],
  477. "mobile" => "",
  478. "position" => "",
  479. "companyNo" => $data['companyNo'],
  480. "status" => 1,
  481. "is_del" => 0,
  482. "addtime" => date("Y-m-d H:i:s"),
  483. "updatetime" => date("Y-m-d H:i:s")
  484. ];
  485. $in = Db::name("warehouse_info")->insert($inwsm);
  486. if ($in == false) {
  487. return false;
  488. }
  489. } else {
  490. $wsm_code = $wsm['wsm_code'];
  491. }
  492. //判断该供应商是否开通了供应商账号
  493. $from_tag=checkHasAccountBySupplierNos([$data['supplierNo']]);
  494. $cg = ["cgdNo" => $cgdCode,
  495. "bkcode" => "",
  496. "wsm_code" => $wsm_code,
  497. "cgder" => $data['creater'],
  498. "cgder_id" => $data['createrid'],
  499. "spuCode" => $data['spuCode'],
  500. "skuCode" => $data['skuCode'],
  501. "good_name" => $data['good_name'],
  502. "good_num" => $data['good_num'],
  503. "good_price" => $data['sale_price'],
  504. "total_fee" => round($data['sale_price'] * $data['good_num'], 2),
  505. "pakge_fee" => $data['pakge_fee'],
  506. "cert_fee" => $data['cert_fee'],
  507. "open_fee" => $data['open_fee'],
  508. "teach_fee" => $data['cost_fee'],
  509. "mark_fee" => $data['mark_fee'],
  510. "demo_fee" => $data['demo_fee'],
  511. "nake_fee" => $data['nake_fee'],
  512. "weight" => $data['weight'],
  513. "delivery_fee" => $data['delivery_fee'],
  514. "gold_price" => $data['gold_price'],
  515. "diff_weight" => "0",
  516. "diff_fee" => "0",
  517. "supplierNo" => $data['supplierNo'],
  518. "supplier_name" => $supplier['name'],
  519. "companyNo" => $data['companyNo'],
  520. "send_status" => 1,
  521. "send_num" => 0,
  522. "wsend_num" => $data['good_num'],
  523. "remark" => "",
  524. "status" => 0,//0初始化
  525. "lasttime" => date("Y-m-d H:i:s"),
  526. "is_del" => 0,
  527. "order_type" => $data['order_type'],
  528. "order_source" => $data['order_source'],
  529. "good_type" => $data['good_type'],
  530. "addtime" => date("Y-m-d H:i:s"),
  531. "updatetime" => date("Y-m-d H:i:s"),
  532. 'good_createrid' => $data['good_createrid'],
  533. 'good_creater' => $data['good_creater'],//商品创建人
  534. 'from_tag' => isset($from_tag[$data['supplierNo']]) ? 2 : 1,//来源标签:1采销(默认),2供应商端
  535. ];
  536. $up = Db::name("purchease_order")->insert($cg, true);
  537. if ($up) {
  538. //修改状态,添加待办
  539. ActionLog::logAdd($this->post['token'], [
  540. "order_code" => $cg['cgdNo'],//销售单code
  541. "status" => 0,//这里的status是之前的值
  542. "action_remark" => '',//备注
  543. "action_type" => "create"//新建create,编辑edit,更改状态status
  544. ], "CGD", $cg['status'], $cg);
  545. //当节点是0待与供应商确认,推给供应商负责人
  546. ProcessOrder::AddProcess($this->post['token'], [
  547. "order_type" => 'CGD',
  548. "order_code" => $cg['cgdNo'],//销售单code
  549. "order_id" => $up,
  550. "order_status" => $cg['status'],
  551. "before_status" => 0,
  552. 'holder_id' => $supplier['personid'],
  553. 'wait_id'=>$supplier['personid'],
  554. 'wait_name'=>$supplier['person'],
  555. ]);
  556. $standing_book_da = array_merge($standing_book_da, [
  557. 'orderCode' => $data['orderCode'],
  558. 'cgdNo' => $cgdCode,
  559. 'spuCode' => $data['spuCode'],
  560. 'skuCode' => $data['skuCode'],
  561. 'order_type' => $data['order_type'],
  562. 'order_source' => $data['order_source'],
  563. 'supplierNo' => $data['supplierNo'],
  564. "companyNo" => $data['companyNo'],
  565. ]);
  566. $rela = [
  567. "orderCode" => $data['orderCode'],
  568. "cgdNo" => $cgdCode,
  569. "spuCode" => $data['spuCode'],
  570. "good_num" => $data['good_num'],
  571. "wsend_num" => $data['good_num'],
  572. "send_num" => 0,
  573. "wait_num" => 0,
  574. "status" => 1,
  575. "source" => 2
  576. ];
  577. $re = Db::name("order_num")->save($rela);
  578. if ($re == false) {
  579. return false;
  580. } else {
  581. $stokc = Db::name("good_stock")->where(['spuCode' => $data['spuCode'], "wsm_code" => $wsm_code, "is_del" => 0])->find();
  582. if ($stokc == false) {
  583. $stokc = [
  584. "spuCode" => $data['spuCode'],
  585. "wsm_code" => $wsm_code,
  586. "wait_in_stock" => $data['good_num'],
  587. "wait_out_stock" => 0,
  588. "usable_stock" => 0,
  589. "intra_stock" => 0,
  590. "total_stock" => 0,
  591. "status" => 1,
  592. "addtime" => date("Y-m-d H:i:s"),
  593. "updatetime" => date("Y-m-d H:i:s")
  594. ];
  595. } else {
  596. $stokc['wait_in_stock'] += $data['good_num'];
  597. $stokc['updatetime'] = date("Y-m-d H:i:s");
  598. }
  599. $stoc = Db::name("good_stock")->save($stokc);
  600. if ($stoc == false) {
  601. return false;
  602. }
  603. $good_data[] = ['good_log_code' => $cgdCode, "stock_id" => isset($stoc['id']) ? $stoc['id'] : Db::name("good_stock")->getLastInsID(), "type" => 1,
  604. 'stock' => $data['good_num'], "stock_name" => "wait_in_stock"];
  605. GoodLog::LogAdd($this->post['token'], $good_data, "CGD");
  606. return true;
  607. }
  608. } else {
  609. return false;
  610. }
  611. }
  612. public function addAddr()
  613. {
  614. $orderCode = isset($this->post['orderCode']) && $this->post['orderCode'] != "" ? trim($this->post['orderCode']) : "";
  615. $etid = Db::name("sale")->where(["orderCode" => $orderCode, "is_del" => 0])->find();
  616. if (empty($etid)) {
  617. return error_show(1002, "未找到数据");
  618. }
  619. $retrun =Db::name("sale_return")->where([["orderCode","=",$orderCode],["is_del","=",0],["status","<",4]])
  620. ->count();
  621. if($retrun>0){
  622. return error_show(1005,"存在未完成退货订单数据");
  623. }
  624. $arrtime = isset($this->post['arrtime']) && $this->post['arrtime'] != "" ? $this->post['arrtime'] : "";
  625. $token = isset($this->post['token']) && $this->post['token'] !== "" ? trim($this->post['token']) : "";
  626. $apply_id = GetUserInfo($token);
  627. if (empty($apply_id) || $apply_id['code'] != 0) {
  628. return error_show(1002, "申请人数据不存在");
  629. }
  630. $rm = isset($apply_id["data"]['id']) ? $apply_id["data"]['id'] : "";
  631. $ri = isset($apply_id["data"]['nickname']) ? $apply_id["data"]['nickname'] : "";
  632. $addrlist = isset($this->post['addrlist']) && $this->post['addrlist'] !== "" ? $this->post['addrlist'] : "";
  633. if ($addrlist == "" || empty($addrlist) || !is_array($addrlist)) {
  634. return error_show(1004, "参数addrlist不能为空");
  635. }
  636. Db::startTrans();
  637. try {
  638. $i=1;
  639. foreach ($addrlist as $value) {
  640. $temp = [];
  641. $addrs = [];
  642. if ($value['addr_code'] !== '' && is_array($value['addr_code']) && !empty($value['addr_code'])) {
  643. $addrs['provice_code'] = $value['addr_code'][0];
  644. $addrs['city_code'] = $value['addr_code'][1];
  645. $addrs['area_code'] = $value['addr_code'][2];
  646. $addr = json_encode($addrs);
  647. } else {
  648. $addr = isset($value['addr_code']) && $value['addr_code'] !== '' ? $value['addr_code'] : '';
  649. }
  650. $temp['orderCode'] = $orderCode;
  651. $temp['contactor'] = $value['contactor'];
  652. $temp['mobile'] = $value['mobile'];
  653. $temp['addr'] = $value['addr'];
  654. $temp['addr_code'] = $addr;
  655. $temp['customer_code'] = $etid['customer_code'];
  656. $temp['receipt_quantity'] = $value['receipt_quantity'];
  657. $temp['post_fee'] = 0;
  658. $temp['is_del'] = 0;
  659. $temp['addtime'] = date("Y-m-d H:i:s");
  660. $temp['updatetime'] = date("Y-m-d H:i:s");
  661. if ($arrtime != "") {
  662. $temp['arrive_time'] = $arrtime;
  663. }
  664. $vmp = Db::name('order_addr')->insert($temp, true);
  665. if ($vmp > 0) {
  666. $num = $value['receipt_quantity'];
  667. $outCode = makeNo("DF");
  668. //维护商品所在仓库的库存 --- start
  669. if ($etid['is_stock'] != 1){
  670. $order = Db::name("order_num")->where(["orderCode" => $orderCode, "status" => 1])->where([["wsend_num", ">=", 0]])
  671. ->find();
  672. if (empty($order) || $order['wsend_num'] < $num) {
  673. Db::rollback();
  674. return error_show(1004, "未找到可以发货得采购单数据");
  675. }
  676. //改变编码规则,将原来的outCode后两位换成序列号
  677. //str_pad字符串填充
  678. $outCode = substr($outCode, 0, -2) . str_pad($i, 2, '0', STR_PAD_LEFT);
  679. $i++;
  680. $order['send_num'] += $num;
  681. $order['wsend_num'] -= $num;
  682. $or = Db::name("order_num")->save($order);
  683. if ($or == false) {
  684. Db::rollback();
  685. return error_show(1002, "发货地址添加创建失败");
  686. }
  687. $tep = [
  688. "cgdNo" => $order['cgdNo'],
  689. "outCode" => $outCode,
  690. "send_num" => $num,
  691. "status" => 1,
  692. "addtime" => date("Y-m-d H:i:s"),
  693. "updatetime" => date("Y-m-d H:i:s")
  694. ];
  695. $sen = Db::name("order_send")->save($tep);
  696. if ($sen == false) {
  697. Db::rollback();
  698. return error_show(1002, "发货地址添加创建失败");
  699. }
  700. $cgdinfo = Db::name("purchease_order")->where(["cgdNo" => $order['cgdNo']])->find();
  701. if ($cgdinfo == false) {
  702. Db::rollback();
  703. return error_show(1002, "未匹配到采购数据");
  704. }
  705. $temp = Db::name('good_stock')
  706. ->field('id,usable_stock,wait_out_stock')
  707. ->where(['spuCode' => $etid['good_code'], 'wsm_code' => $cgdinfo['wsm_code']])
  708. ->find();
  709. //非库存品 导入地址生成发货单时占用库存 可用库存进入待出库
  710. if ($temp == false || ($temp['usable_stock'] - $num) < 0) {
  711. $status = 0;
  712. } else {
  713. if (($temp['usable_stock'] - $num) < 0) {
  714. Db::rollback();
  715. return error_show(1004, '库存不足');
  716. }
  717. $up = Db::name('good_stock')
  718. ->where('id', $temp['id'])
  719. ->update([
  720. 'usable_stock' => $temp['usable_stock'] - $num,
  721. 'wait_out_stock' => $temp['wait_out_stock'] + $num,
  722. 'updatetime' => date('Y-m-d H:i:s'),
  723. ]);
  724. if ($up == false) {
  725. Db::rollback();
  726. return error_show(1004, '库存更新失败');
  727. }
  728. $good_data[] = ['good_log_code' => $outCode, "stock_id" => $temp['id'], "type" => 1, 'stock' => $num, "stock_name" => "wait_out_stock"];
  729. $good_data[] = ['good_log_code' => $outCode, "stock_id" => $temp['id'], "type" => 2, 'stock' => $num, "stock_name" => "usable_stock"];
  730. GoodLog::LogAdd($this->post['token'], $good_data, "CKD");
  731. $status = 1;
  732. }
  733. }else{
  734. $order = Db::name("order_num")->where(["orderCode" => $orderCode, "status" => 1])->where([["wsend_num", ">=", 0]])
  735. ->find();
  736. if($order!=false){
  737. $outCode = substr($outCode, 0, -2) . str_pad($i, 2, '0', STR_PAD_LEFT);
  738. $i++;
  739. $order['send_num'] += $num;
  740. $order['wsend_num'] -= $num;
  741. $or = Db::name("order_num")->save($order);
  742. if ($or == false) {
  743. Db::rollback();
  744. return error_show(1002, "发货地址添加创建失败");
  745. }
  746. $tep = [
  747. "cgdNo" => $order['cgdNo'],
  748. "outCode" => $outCode,
  749. "send_num" => $num,
  750. "status" => 1,
  751. "addtime" => date("Y-m-d H:i:s"),
  752. "updatetime" => date("Y-m-d H:i:s")
  753. ];
  754. $sen = Db::name("order_send")->save($tep);
  755. if ($sen == false) {
  756. Db::rollback();
  757. return error_show(1002, "发货地址添加创建失败");
  758. }
  759. $cgdinfo = Db::name("purchease_order")->where(["cgdNo" => $order['cgdNo']])->find();
  760. if ($cgdinfo == false) {
  761. Db::rollback();
  762. return error_show(1002, "未匹配到采购数据");
  763. }
  764. }
  765. $status=1;
  766. }
  767. $out = [
  768. "orderCode" => $orderCode,
  769. "outCode" => $outCode,
  770. "apply_id" => $rm,
  771. "apply_name" => $ri,
  772. "addrid" => $vmp,
  773. "post_name" => "",
  774. "post_code" => "",
  775. "post_fee" => 0,
  776. "sendtime" => date("Y-m-d H:i:s"),
  777. "send_num" => $num,
  778. "check_num" => 0,
  779. "error_num" => 0,
  780. "wsm_code" => $cgdinfo['wsm_code']??'',
  781. "order_type" => $etid['order_type'],
  782. "status" => $status,
  783. "addtime" => date("Y-m-d H:i:s"),
  784. "updatetime" => date("Y-m-d H:i:s")
  785. ];
  786. $ou = Db::name("order_out")->insertGetId($out);
  787. if ($ou == false) {
  788. Db::rollback();
  789. return error_show(1002, "发货地址添加创建失败");
  790. } else {
  791. //修改状态,添加待办
  792. ActionLog::logAdd(['id'=>$rm,'nickname'=>$ri], [
  793. "order_code" => $outCode,//出库单号
  794. "status" => 0,//这里的status是之前的值
  795. "action_remark" => '',//备注
  796. "action_type" => "create"//新建create,编辑edit,更改状态status
  797. ], "CKD", 0, $out);
  798. //区分是否是库存品订单
  799. $process=[];
  800. if($status == 1){
  801. //库存品,推给库管和库管-张凯旋
  802. if($etid['is_stock']==1){
  803. $roleid = config('app.wsm_cgder_role');
  804. $uids = Db::name('user_role')
  805. ->where('is_del', 0)
  806. ->whereIn('roleid', $roleid)
  807. ->column('uid');
  808. $process=[
  809. "order_type" => 'CKD',
  810. "order_code" => $outCode,//出库单号
  811. "order_id" => $ou,
  812. "order_status" => $status,
  813. "before_status" => 0,
  814. // 'holder_id'=>$out['apply_id'],
  815. 'handle_user_list' => implode(',', $uids)
  816. ];
  817. }else{
  818. //推给供应商负责人
  819. $supplier = Db::name('supplier')
  820. ->field('person,personid')
  821. ->where('code',$cgdinfo['supplierNo'])
  822. ->findOrEmpty();
  823. $process = [
  824. "order_type" => 'CKD',
  825. "order_code" => $outCode,//出库单号
  826. "order_id" => $ou,
  827. "order_status" => $status,
  828. "before_status" => 0,
  829. 'wait_id'=>$supplier['personid'],
  830. 'wait_name'=>$supplier['person'],
  831. 'holder_id'=>$supplier['personid'],
  832. ];
  833. }
  834. }
  835. if(empty($process)) $process=[
  836. "order_type" => 'CKD',
  837. "order_code" => $outCode,//出库单号
  838. "order_id" => $ou,
  839. "order_status" => $status,
  840. "before_status" => 0,
  841. 'holder_id'=>$out['apply_id'],
  842. ];
  843. ProcessOrder::AddProcess(['id'=>$rm,'nickname'=>$ri],$process);
  844. //处理台账-既然是根据orderCode更新的数据,那么肯定是有数据的,只需要更新就行了
  845. Db::execute("UPDATE `wsm_standing_book` SET `outCode`=CONCAT(IFNULL(`outCode`,''),',{$outCode}'),`updatetime`='" . date('Y-m-d H:i:s') . "' WHERE `orderCode`='{$orderCode}'");
  846. }
  847. //维护商品所在仓库的库存 --- end
  848. } else {
  849. Db::rollback();
  850. return error_show(1002, "发货地址添加创建失败");
  851. }
  852. }
  853. // $OrderBn = GoodStockInfo::OrderBn($orderCode,$stock_id,$num);
  854. // if($OrderBn==false){
  855. // Db::rollback();
  856. // return error_show(1004,"Bn库存数关联订单失败");
  857. // }
  858. Db::commit();
  859. return app_show(0, "发货地址添加完成");
  860. } catch (\Exception $e) {
  861. Db::rollback();
  862. return error_show(1002, $e->getMessage());
  863. }
  864. }
  865. public function consultOrder()
  866. {
  867. $bidNo = isset($this->post['bidNo']) && $this->post['bidNo'] != "" ? trim($this->post['bidNo']) : "";
  868. if ($bidNo == "") {
  869. return error_show(1003, "参数bidNo不能为空");
  870. }
  871. $zxinfo = Db::name("consult_bids")->where(["bidNo" => $bidNo, "is_del" => 0])->find();
  872. if ($zxinfo == false) {
  873. return error_show(1003, "未找到咨询单商品信息");
  874. }
  875. if ($zxinfo['status'] != 6) {
  876. return error_show(1003, "咨询单状态有误无法转单");
  877. }
  878. $zx = Db::name("consult_info")->where(["infoNo" => $zxinfo['infoNo'], "is_del" => 0])->find();
  879. if ($zx == false) {
  880. return error_show(1003, "未找到咨询单信息");
  881. }
  882. if ($zx['status'] != 4) {
  883. return error_show(1003, "咨询单状态有误无法转单");
  884. }
  885. $zxorder = Db::name("consult_order")->where(["zxNo" => $zx["zxNo"], "is_del" => 0])->find();
  886. if ($zxorder == false) {
  887. return error_show(1003, "未找到咨询单信息");
  888. }
  889. $good_num = isset($this->post['good_num']) && $this->post['good_num'] != "" ? intval($this->post['good_num']) : "";
  890. if ($good_num === "") {
  891. return error_show(1003, "参数 good_num 不能为空");
  892. }
  893. $sale_price = isset($this->post['sale_price']) && $this->post['sale_price'] != "" ? floatval($this->post['sale_price']) : "";
  894. if ($sale_price === "") {
  895. return error_show(1003, "参数 sale_price 销售单价 不能为空");
  896. }
  897. $cat_top_list = made($zxinfo['cat_id']);
  898. $cat_top_id = isset($cat_top_list[0]['id']) ? $cat_top_list[0]['id'] : 0;
  899. $saleprice = $zxinfo['sale_price'];
  900. if ($zxinfo['is_gold_price'] == 1 && $cat_top_id == 6) {
  901. $gold = Db::name("gold_price1")
  902. ->field('id,price')
  903. ->where(["type" => $zxinfo['metal_id'], "is_del" => 0, "status" => 1])
  904. ->order("addtime desc")
  905. ->find();
  906. $saleprice = $zxinfo['demo_fee'] / $good_num + $zxinfo['open_fee'] / $good_num + $zxinfo['good_weight']
  907. * $gold["price"] + $zxinfo['cost_fee'] * $zxinfo['good_weight'] + $zxinfo['pakge_fee'] + $zxinfo['mark_fee'] + $zxinfo['cert_fee'] + $zxinfo['nake_fee'] + $zxinfo['delivery_fee'];
  908. }
  909. if ($sale_price < $saleprice) {
  910. return error_show(1003, "修改的销售单价不能低于原来的销售单价");
  911. }
  912. $sendtype = isset($this->post['sendtype']) && $this->post['sendtype'] != "" ? intval($this->post['sendtype']) : "";
  913. if ($sendtype == "") {
  914. return error_show(1003, "参数sendtype不能为空");
  915. }
  916. $companyNo = isset($this->post['companyNo']) && $this->post['companyNo'] != "" ? trim($this->post['companyNo']) : "";
  917. if ($companyNo == "") {
  918. return error_show(1003, "参数 companyNo 不能为空");
  919. }
  920. $company = Db::name("business")->where(["companyNo" => $companyNo, "is_del" => 0])->find();
  921. if ($company == false) {
  922. return error_show(1003, "业务公司数据未找到");
  923. }
  924. $remark = isset($this->post['remark']) && $this->post['remark'] != "" ? trim($this->post['remark']) : "";
  925. $supplier_temp_info=Db::name("supplier")
  926. ->field('id,person,personid')
  927. ->where(["code"=>$zxinfo['supplierNo']])
  928. ->findOrEmpty();
  929. $orderCode = makeNo("QR");
  930. $spuCode = $zxinfo['spuCode'];
  931. $skuCode = "";
  932. $is_stock = 0;
  933. $cgd = [
  934. "supplierNo" => $zxinfo['supplierNo'],
  935. "companyNo" => $companyNo,
  936. "spuCode" => $spuCode,
  937. "skuCode" => $skuCode,
  938. "orderCode" => $orderCode,
  939. "good_name" => $zxinfo['good_name'],
  940. "sale_price" => $zxinfo['total_fee'],
  941. "total_fee" => round($zxinfo['total_fee'] * $good_num, 2),
  942. "pakge_fee" => $zxinfo['pakge_fee'],
  943. "cert_fee" => $zxinfo['cert_fee'],
  944. "open_fee" => $zxinfo['open_fee'],
  945. "cost_fee" => $zxinfo['cost_fee'],
  946. "mark_fee" => $zxinfo['mark_fee'],
  947. "demo_fee" => $zxinfo['demo_fee'],
  948. "nake_fee" => $zxinfo['nake_fee'],
  949. "delivery_fee" => $zxinfo['delivery_fee'],
  950. "good_num" => $good_num,
  951. "createrid" =>$supplier_temp_info['personid'],
  952. "creater" =>$supplier_temp_info['person'],
  953. "good_type" => 1,
  954. "weight" => $zxinfo['good_weight'],
  955. "gold_price" => $zxinfo['gold_price'],
  956. "is_diff" => $zxinfo['is_diff'],
  957. "order_type" => 3,
  958. "order_source" => 2,//咨询
  959. 'send_way' => $zxinfo['send_way'],
  960. 'good_createrid' => $zxinfo['createrid'],
  961. 'good_creater' => $zxinfo['creater'],//商品创建人id
  962. ];
  963. $token = isset($this->post['token']) && $this->post['token'] != "" ? trim($this->post['token']) : "";
  964. if ($token == "") {
  965. return error_show(102, "参数token不能为空");
  966. }
  967. $apply_id = GetUserInfo($token);
  968. if (empty($apply_id) || $apply_id['code'] != 0) {
  969. return error_show(102, "申请人数据不存在");
  970. }
  971. $rm = isset($apply_id["data"]['id']) ? $apply_id["data"]['id'] : "";
  972. $ri = isset($apply_id["data"]['nickname']) ? $apply_id["data"]['nickname'] : "";
  973. $va = isset($this->post['order_addr']) && $this->post['order_addr'] !== "" ? $this->post['order_addr'] : "";
  974. $send_num = 0;
  975. if ($sendtype == 1) {
  976. if ($va == "") {
  977. return error_show(1002, "参数order_addr不能为空");
  978. }
  979. $send_num = array_sum(array_column($va, "receipt_quantity"));
  980. }
  981. if ($good_num < $send_num) {
  982. return error_show(1002, "发货数量不能超过购买数量");
  983. }
  984. $arrtime = isset($this->post['arrtime']) && $this->post['arrtime'] != "" ? $this->post['arrtime'] : "";
  985. if ($arrtime == "") {
  986. return error_show(1002, "参数arrtime不能为空");
  987. }
  988. //新加字段
  989. $platform_order = isset($this->post['platform_order']) && $this->post['platform_order'] != "" ? $this->post['platform_order'] : "";
  990. $workNo = isset($this->post['workNo']) && $this->post['workNo'] != "" ? $this->post['workNo'] : "";
  991. $proof_type = isset($this->post['proof_type']) && $this->post['proof_type'] != "" ? intval($this->post['proof_type']) : 0;
  992. $proof_url = isset($this->post['proof_url']) && $this->post['proof_url'] != "" ? trim($this->post['proof_url']) : '';
  993. Db::startTrans();
  994. try {
  995. $zx = Db::name("consult_info")->where(["infoNo" => $zxinfo['infoNo'], "is_del" => 0])->lock(true)->find();
  996. if ($zx == false) {
  997. Db::rollback();
  998. return error_show(1003, "未找到咨询单信息");
  999. }
  1000. if ($companyNo != $zxorder['companyNo']) {
  1001. $zxord = Db::name("consult_order")->where($zxorder)->update(["companyNo" => $companyNo, "updatetime" => date("Y-m-d H:i:s")]);
  1002. if ($zxord == false) {
  1003. Db::rollback();
  1004. return error_show(1003, "咨询单更新业务公司失败");
  1005. }
  1006. }
  1007. $data = [
  1008. "orderCode" => $orderCode,
  1009. "good_code" => $spuCode,
  1010. "skuCode" => $skuCode,
  1011. "customer_code" => $zxorder['khNo'],
  1012. "good_name" => isset($zxinfo['good_name']) && $zxinfo['good_name'] !== '' ? $zxinfo['good_name'] : '',
  1013. "good_num" => $good_num,
  1014. "cat_id" => $zxinfo['cat_id'],
  1015. "apply_id" => $rm,
  1016. "apply_name" => $ri,
  1017. "origin_price" => $zxinfo['total_fee'],
  1018. "sale_price" => $sale_price,//销售单价支持修改
  1019. "post_fee" => 0,
  1020. "status" => 0,
  1021. "send_num" => 0,
  1022. "wsend_num" => $good_num,
  1023. "send_status" => 1,
  1024. "good_type" => 1,
  1025. "send_type" => $sendtype,
  1026. "supplierNo" => $companyNo,
  1027. "is_del" => 0,
  1028. "zxNo" => $bidNo,
  1029. "platform_order" => $platform_order,
  1030. "platform_id" => $zxorder['platform_code'],
  1031. "remark" => $remark,
  1032. "arrive_time" => $arrtime,
  1033. "is_stock" => 0,
  1034. "is_activity" => 0,
  1035. "activity_code" => '',
  1036. "proof_id" => 0,
  1037. "order_type" => 3,
  1038. "order_source" => 2,//2咨询
  1039. 'good_weight' => $zxinfo['good_weight'],
  1040. 'gold_price' => $zxinfo['gold_price'],
  1041. 'cost_price' => $zxinfo['sale_cost_fee'],
  1042. 'diff_weight' => 0,
  1043. 'diff_fee' => 0,
  1044. "addtime" => date("Y-m-d H:i:s"),
  1045. "updatetime" => date("Y-m-d H:i:s"),
  1046. 'total_price' => round($sale_price * $good_num, 2),
  1047. 'workNo' => $workNo,
  1048. 'cgderid' => $supplier_temp_info['personid'],
  1049. 'cgder' => $supplier_temp_info['person'],//采购员(采购单对应的供应商负责人)
  1050. 'good_createrid' => $zxinfo['createrid'],
  1051. 'good_creater' => $zxinfo['creater'],//商品创建人id
  1052. ];
  1053. $datainfo = Db::name('sale')->insert($data, true);
  1054. if ($datainfo > 0) {
  1055. $standing_book_data = [
  1056. 'sale_id' => $datainfo,
  1057. 'infoNo' => $zxinfo['infoNo'],
  1058. 'updatetime' => date('Y-m-d H:i:s')
  1059. ];
  1060. //修改状态,添加待办
  1061. ActionLog::logAdd($this->post['token'], [
  1062. "order_code" => $orderCode,//销售单code
  1063. "status" => 0,//这里的status是之前的值
  1064. "action_remark" => '',//备注
  1065. "action_type" => "create"//新建create,编辑edit,更改状态status
  1066. ], "XSQRD", $data['status'], $data);
  1067. ProcessOrder::AddProcess($this->post['token'], [
  1068. "order_type" => 'XSQRD',
  1069. "order_code" => $orderCode,//销售单code
  1070. "order_id" => $datainfo,
  1071. "order_status" => $data['status'],
  1072. "before_status" => 0,
  1073. 'holder_id' => $data['apply_id'],
  1074. ]);
  1075. $old_zx_status = $zx['status'];
  1076. $sa = Db::name("consult_info")->where($zx)->save(["status" => 5, "updatetime" => date("Y-m-d H:i:s")]);
  1077. if ($sa == false) {
  1078. Db::rollback();
  1079. return error_show(1002, "咨询单修改失败");
  1080. } else {
  1081. //修改状态,添加待办
  1082. ActionLog::logAdd($this->post['token'], [
  1083. "order_code" => $zx['infoNo'],//咨询单详情编号
  1084. "status" => $old_zx_status,//这里的status是之前的值
  1085. "action_remark" => '',//备注
  1086. "action_type" => "status"//新建create,编辑edit,更改状态status
  1087. ], "ZXD", 5, $zx);
  1088. }
  1089. $bol = $this->createCgd($cgd, $standing_book_data);
  1090. if ($bol == false) {
  1091. Db::rollback();
  1092. return error_show(1002, "咨询订单创建失败");
  1093. }
  1094. $limt = [
  1095. "spuCode" => $zxinfo['spuCode'],
  1096. "good_name" => $zxinfo['good_name'],
  1097. "brand_id" => $zxinfo['brand_id'],
  1098. "good_unit" => $zxinfo['unit_id'],
  1099. "cat_id" => $zxinfo['cat_id'],
  1100. "good_type" => 0,
  1101. "moq" => 1,
  1102. "customized" => $zxinfo['work_day'],
  1103. "tax" => $zxinfo['tax'],
  1104. "supplierNo" => $zxinfo["supplierNo"],
  1105. "is_auth" => 0,
  1106. "craft_desc" => $zxinfo['good_name'],
  1107. "good_remark" => "",
  1108. "platform_id" => $zxorder['platform_id'],
  1109. "good_img" => $zxinfo['good_img'],
  1110. "good_thumb_img" => "",
  1111. "good_info_img" => "",
  1112. "specinfo" => $zxinfo['specinfo'],
  1113. "work_day" => $zxinfo['work_day'],
  1114. "noble_metal" => $zxinfo['metal_id'],
  1115. "is_gold_price" => $zxinfo['is_gold_price'],
  1116. "config" => $zxinfo['config'],
  1117. "other_config" => $zxinfo['other_config'],
  1118. "weight" => $zxinfo['weight'],
  1119. "good_weight" => $zxinfo['good_weight'],
  1120. "is_diff" => $zxinfo['is_diff'],
  1121. "supply_area" => $zxinfo['supply_area'],
  1122. "pay_way" => $zxinfo['pay_way'],
  1123. "send_way" => $zxinfo['send_way'],
  1124. "companyNo" => $companyNo,
  1125. "status" => 1,
  1126. "is_del" => 0,
  1127. "createrid" => $zxinfo['createrid'],
  1128. "creater" => $zxinfo['creater'],
  1129. "addtime" => date("Y-m-d H:i:s"),
  1130. "updatetime" => date("Y-m-d H:i:s"),
  1131. 'proof_type' => $proof_type,//凭证类型
  1132. 'proof_url' => $proof_url,//凭证文件
  1133. ];
  1134. $good = Db::name("good_zixun")->insert($limt);
  1135. if (!$good) {
  1136. Db::rollback();
  1137. return error_show(1006, "咨询商品录入失败");
  1138. }
  1139. if (!empty($va)) {
  1140. $order = Db::name("order_num")->where(["orderCode" => $orderCode, "status" => 1])->where([["wsend_num", ">=", 0]])
  1141. ->find();
  1142. if ($order == false) {
  1143. Db::rollback();
  1144. return error_show(1006, "采购单关联数据未找到");
  1145. }
  1146. $i = 1;
  1147. foreach ($va as $value) {
  1148. $temp = [];
  1149. $addrs = [];
  1150. if ($value['addr_code'] !== '' && is_array($value['addr_code']) && !empty($value['addr_code'])) {
  1151. $addrs['provice_code'] = $value['addr_code'][0];
  1152. $addrs['city_code'] = $value['addr_code'][1];
  1153. $addrs['area_code'] = $value['addr_code'][2];
  1154. $addr = json_encode($addrs);
  1155. } else {
  1156. $addr = isset($value['addr_code']) ? $value['addr_code'] : '';
  1157. }
  1158. $temp['orderCode'] = $orderCode;
  1159. $temp['contactor'] = $value['contactor'];
  1160. $temp['mobile'] = $value['mobile'];
  1161. $temp['addr'] = $value['addr'];
  1162. $temp['addr_code'] = $addr;
  1163. $temp['customer_code'] = $zxorder['khNo'];
  1164. $temp['receipt_quantity'] = $value['receipt_quantity'];
  1165. $temp['post_fee'] = 0;
  1166. $temp['is_del'] = 0;
  1167. $temp['addtime'] = date("Y-m-d H:i:s");
  1168. $temp['updatetime'] = date("Y-m-d H:i:s");
  1169. $temp['arrive_time'] = $arrtime;
  1170. $vmp = Db::name('order_addr')->insert($temp, true);
  1171. if ($vmp > 0) {
  1172. $outCode = makeNo("DF");
  1173. //改变编码规则,将原来的outCode后两位换成序列号
  1174. //str_pad字符串填充
  1175. $outCode = substr($outCode, 0, -2) . str_pad($i, 2, '0', STR_PAD_LEFT);
  1176. $i++;
  1177. $out = [
  1178. "orderCode" => $orderCode,
  1179. "outCode" => $outCode,
  1180. "apply_id" => $rm,
  1181. "apply_name" => $ri,
  1182. "addrid" => $vmp,
  1183. "post_name" => "",
  1184. "post_code" => "",
  1185. "post_fee" => 0,
  1186. "sendtime" => date("Y-m-d H:i:s"),
  1187. "send_num" => $value['receipt_quantity'],
  1188. "check_num" => 0,
  1189. "error_num" => 0,
  1190. "wsm_code" => "",
  1191. "order_type" => 3,
  1192. "status" => 0,
  1193. "addtime" => date("Y-m-d H:i:s"),
  1194. "updatetime" => date("Y-m-d H:i:s")
  1195. ];
  1196. $ou = Db::name("order_out")->insertGetId($out);
  1197. if ($ou == false) {
  1198. Db::rollback();
  1199. return error_show(1002, "发货地址添加创建失败");
  1200. } else {
  1201. //修改状态,添加待办
  1202. ActionLog::logAdd(['id'=>$rm,'nickname'=>$ri], [
  1203. "order_code" => $outCode,//出库单号
  1204. "status" => 0,//这里的status是之前的值
  1205. "action_remark" => '',//备注
  1206. "action_type" => "create"//新建create,编辑edit,更改状态status
  1207. ], "CKD", 0, $out);
  1208. ProcessOrder::AddProcess(['id'=>$rm,'nickname'=>$ri], [
  1209. "order_type" => 'CKD',
  1210. "order_code" => $outCode,//出库单号
  1211. "order_id" => $ou,
  1212. "order_status" => 0,
  1213. "before_status" => 0,
  1214. 'holder_id'=>$out['apply_id'],
  1215. 'wait_id'=>$supplier_temp_info['personid'],
  1216. 'wait_name'=>$supplier_temp_info['person'],
  1217. ]);
  1218. //将发货编号添加到台账中
  1219. $standing_book_data['outCode'][] = $outCode;
  1220. }
  1221. $order['send_num'] += $value['receipt_quantity'];
  1222. $order['wsend_num'] -= $value['receipt_quantity'];
  1223. if ($order['wsend_num'] < 0) {
  1224. Db::rollback();
  1225. return error_show(1002, "发货数量已超出总数");
  1226. }
  1227. $ups = Db::name("order_num")->save($order);
  1228. if ($ups) {
  1229. $tep = [
  1230. "cgdNo" => $order['cgdNo'],
  1231. "outCode" => $outCode,
  1232. "send_num" => $value['receipt_quantity'],
  1233. "status" => 1,
  1234. "addtime" => date("Y-m-d H:i:s"),
  1235. "updatetime" => date("Y-m-d H:i:s")
  1236. ];
  1237. $sen = Db::name("order_send")->save($tep);
  1238. if ($sen == false) {
  1239. Db::rollback();
  1240. return error_show(1002, "发货地址添加创建失败");
  1241. }
  1242. }
  1243. } else {
  1244. Db::rollback();
  1245. return error_show(1002, "发货地址添加创建失败");
  1246. }
  1247. }
  1248. }
  1249. //处理台账
  1250. if (isset($standing_book_data['outCode'])) {
  1251. Db::execute("UPDATE `wsm_standing_book` SET `outCode`=CONCAT(IFNULL(`outCode`,''),'," . implode(',', $standing_book_data['outCode']) . "'),`updatetime`='" . date('Y-m-d H:i:s') . "' WHERE `infoNo`='{$standing_book_data['infoNo']}'");
  1252. unset($standing_book_data['outCode']);
  1253. }
  1254. Db::name('standing_book')->where('infoNo', $standing_book_data['infoNo'])->update($standing_book_data);
  1255. Db::commit();
  1256. return error_show(0, "咨询订单创建成功", ["order_code" => $orderCode]);
  1257. }
  1258. Db::rollback();
  1259. return error_show(1002, "咨询订单创建失败");
  1260. } catch (\Exception $e) {
  1261. Db::rollback();
  1262. return error_show(1003, $e->getMessage());
  1263. }
  1264. }
  1265. /**
  1266. * @return \think\response\Json|void
  1267. * @throws \think\db\exception\DataNotFoundException
  1268. * @throws \think\db\exception\DbException
  1269. * @throws \think\db\exception\ModelNotFoundException
  1270. */
  1271. public function projectCreate()
  1272. {
  1273. $planNo = isset($this->post['planNo']) && $this->post['planNo'] != "" ? trim($this->post['planNo']) : "";
  1274. if ($planNo == "") {
  1275. return error_show(1004, "参数planNo不能为空");
  1276. }
  1277. $plan = Db::name("project_plan")->where(["planNo" => $planNo, "is_del" => 0])->find();
  1278. if ($plan == false) {
  1279. return error_show(1004, "未找到方案信息");
  1280. }
  1281. $feedbackid = Db::name("project_plan_rela")->where(["planNo" => $planNo, "is_del" => 0])->column("feedback_id,sale_price,sale_num");
  1282. if ($feedbackid == false) {
  1283. return error_show(1004, "未找到方案反馈信息");
  1284. }
  1285. $project = Db::name("project")->where(["projectNo" => $plan['projectNo'], "is_del" => 0])->find();
  1286. if ($project == false) {
  1287. return error_show(1004, "未找到方案信息");
  1288. }
  1289. $arrtime = isset($this->post['arrtime']) && $this->post['arrtime'] != "" ? $this->post['arrtime'] : "";
  1290. if ($arrtime == "") {
  1291. return error_show(1002, "参数arrtime不能为空");
  1292. }
  1293. $planinfo = isset($this->post['planinfo']) && !empty($this->post['planinfo']) ? $this->post['planinfo'] : "";
  1294. if ($planinfo == "") {
  1295. return error_show(1002, "参数planinfo不能为空");
  1296. }
  1297. $token = isset($this->post['token']) && $this->post['token'] != "" ? trim($this->post['token']) : "";
  1298. if ($token == "") {
  1299. return error_show(102, "参数token不能为空");
  1300. }
  1301. $apply_id = GetUserInfo($token);
  1302. if (empty($apply_id) || $apply_id['code'] != 0) {
  1303. return error_show(102, "申请人数据不存在");
  1304. }
  1305. $rm = isset($apply_id["data"]['id']) ? $apply_id["data"]['id'] : "";
  1306. $ri = isset($apply_id["data"]['nickname']) ? $apply_id["data"]['nickname'] : "";
  1307. Db::startTrans();
  1308. try {
  1309. $plan = Db::name("project_plan")->where(["planNo" => $planNo, "is_del" => 0])->lock(true)->find();
  1310. if ($plan == false) {
  1311. Db::rollback();
  1312. return error_show(1004, "未找到方案信息");
  1313. }
  1314. $feedid = array_column($feedbackid, "feedback_id");
  1315. $total_price = 0;
  1316. $orgin_price = 0;
  1317. foreach ($planinfo as $key => $value) {
  1318. $good = [];
  1319. $feedback = Db::name("project_feedback")->where(["id" => $value['feedback_id'], "projectNo" => $plan['projectNo'],
  1320. "is_del" => 0])->find();
  1321. if ($feedback == false) {
  1322. Db::rollback();
  1323. return error_show(1002, "反馈数据未找到");
  1324. }
  1325. $key = array_search($feedback['id'], $feedid);
  1326. $price = $feedbackid[$key];
  1327. $good['spuCode'] = $feedback['spuCode'];
  1328. $good['skuCode'] = $feedback['skuCode'];
  1329. $good['good_num'] = $price['sale_num'];
  1330. $good['sendtype'] = $value['sendtype'];
  1331. $good['sale_price'] = $price['sale_price'];
  1332. $good['origin_price'] = $feedback['origin_price'];
  1333. $good['companyNo'] = $project['companyNo'];
  1334. $good['customerNo'] = $project['khNo'];
  1335. $good['pgNo'] = $feedback['pgNo'];
  1336. $good['platform_id'] = $project['platform_id'];
  1337. $good['arrtime'] = $arrtime;
  1338. $good['rm'] = $rm;
  1339. $good['ri'] = $ri;
  1340. $good['send_num'] = 0;
  1341. $standing_book_data = ['projectNo' => $plan['projectNo'], 'updatetime' => date('Y-m-d H:i:s')];
  1342. if ($value['sendtype'] == 1) {
  1343. if (!isset($value['addrlist']) || empty($value['addrlist'])) {
  1344. Db::rollback();
  1345. return error_show(1002, "订单地址不能为空");
  1346. }
  1347. $good['addrlist'] = $value['addrlist'];
  1348. $good['send_num'] = array_sum(array_column($value['addrlist'], "receipt_quantity"));
  1349. }
  1350. if ($feedback['data_source'] == 1) {
  1351. $feed = $this->project_good($good, $standing_book_data);
  1352. if ($feed !== true) {
  1353. Db::rollback();
  1354. switch ($feed) {
  1355. case 1:
  1356. $msg = '库存不足';
  1357. break;
  1358. case 2:
  1359. $msg = '库存更新失败';
  1360. break;
  1361. case 3:
  1362. $msg = '关联采购失败';
  1363. break;
  1364. case 4:
  1365. $msg = '商品信息未找到';
  1366. break;
  1367. default:
  1368. $msg = '咨询订单生成失败';
  1369. }
  1370. return error_show(1002, $msg);
  1371. }
  1372. }
  1373. else {
  1374. $goodinfo = Db::name("consult_bids")->where(["spuCode" => $feedback['spuCode'], "is_del" => 0])->find();
  1375. if ($goodinfo == false) {
  1376. Db::rollback();
  1377. return error_show(1002, "咨询订商品数据为找到");
  1378. }
  1379. $cat_top_list = made($goodinfo['cat_id']);
  1380. $cat_top_id = isset($cat_top_list[0]['id']) ? $cat_top_list[0]['id'] : 0;
  1381. if ($goodinfo['is_gold_price'] == 1 && $cat_top_id == 6) {
  1382. $gold = Db::name("gold_price1")
  1383. ->field('id,price')
  1384. ->where(["type" => $goodinfo['metal_id'], "is_del" => 0, "status" => 1])
  1385. ->order("addtime desc")
  1386. ->find();
  1387. $goodinfo['gold_price'] = $gold["price"];
  1388. $good['sale_price'] = $goodinfo['demo_fee'] /$good['good_num'] + $goodinfo['open_fee'] / $good['good_num'] +
  1389. $goodinfo['good_weight'] * $gold["price"] + $goodinfo['cost_fee'] * $goodinfo['good_weight'] +
  1390. $goodinfo['pakge_fee'] + $goodinfo['mark_fee'] + $goodinfo['cert_fee'] + $goodinfo['nake_fee'] + $goodinfo['delivery_fee'];
  1391. }
  1392. $feed = $this->project_zx($good, $standing_book_data);
  1393. if ($feed == false) {
  1394. Db::rollback();
  1395. return error_show(1002, "咨询订单生成失败");
  1396. }
  1397. }
  1398. $old_fk_status = $feedback['status'];
  1399. $fed = Db::name("project_feedback")->where($feedback)->save(['status' => 2, "updatetime" => date("Y-m-d H:i:s")]);
  1400. if ($fed == false) {
  1401. Db::rollback();
  1402. return error_show(1002, "项目订单生成失败");
  1403. }
  1404. //处理台账(一个项目会生成多个销售订单,第一个更新,其余的新增)
  1405. //项目创建时已有供应商和企业,不能修改
  1406. if (isset($standing_book_data['companyNo'])) unset($standing_book_data['companyNo']);
  1407. if (isset($standing_book_data['customer_code'])) unset($standing_book_data['customer_code']);
  1408. if (isset($standing_book_data['outCode'])) $standing_book_data['outCode'] = implode(',', $standing_book_data['outCode']);
  1409. //普通商品
  1410. if ($feedback['data_source'] == 1) {
  1411. if ($key == 0) Db::name('standing_book')->where('projectNo', $plan['projectNo'])->update($standing_book_data);
  1412. else {
  1413. $temp = Db::name('standing_book')->where('projectNo', $plan['projectNo'])->find();
  1414. if (!empty($temp)) {
  1415. unset($temp['id']);
  1416. $temp = array_merge($temp, $standing_book_data);
  1417. $temp['standBookNo'] = makeNo('IO');
  1418. Db::name('standing_book')->insert($temp);
  1419. }
  1420. }
  1421. } else {
  1422. //项目类竞价单
  1423. Db::name('standing_book')->where(['projectNo' => $plan['projectNo'], 'infoNo' => $standing_book_data['infoNo']])->update($standing_book_data);
  1424. }
  1425. $total_price+= $good['sale_price']*$good['good_num'];
  1426. $orgin_price+= $good['origin_price']*$good['good_num'];
  1427. }
  1428. $rate = round(($total_price-$orgin_price)/$total_price,4)*100;
  1429. if($rate<$project['low_rate']){
  1430. Db::rollback();
  1431. return error_show(1004,"方案毛利不能低于最低项目毛利率");
  1432. }
  1433. $old_plan_status = $plan['status'];
  1434. $in = Db::name("project_plan")->where($plan)->save(['status' => 2, "updatetime" => date("Y-m-d H:i:s")]);
  1435. if ($in == false) {
  1436. Db::rollback();
  1437. return error_show(1002, "项目订单生成失败");
  1438. } else {
  1439. //修改状态,添加待办,只记录动作
  1440. ActionLog::logAdd($this->post['token'], [
  1441. "order_code" => $planNo,//编码
  1442. "status" => $old_plan_status,//这里的status是之前的值
  1443. "action_remark" => '',//备注
  1444. "action_type" => "edit"//新建create,编辑edit,更改状态status
  1445. ], "PRP", 2, $plan);
  1446. }
  1447. $old_project_status = $project["status"];
  1448. // $project["status"]=6;
  1449. // $project['updatetime']=date("Y-m-d H:i:s");
  1450. $pr = Db::name("project")->where($project)->save(["updatetime" => date("Y-m-d H:i:s"), "status" => 6]);
  1451. if ($pr == false) {
  1452. Db::rollback();
  1453. return error_show(1002, "项目订单生成失败");
  1454. } else {
  1455. //修改状态,添加待办
  1456. ActionLog::logAdd($this->post['token'], [
  1457. "order_code" => $project['projectNo'],//项目编码
  1458. "status" => $old_project_status,//这里的status是之前的值
  1459. "action_remark" => '',//备注
  1460. "action_type" => "status"//新建create,编辑edit,更改状态status
  1461. ], "PRO", 6, $project);
  1462. ProcessOrder::AddProcess($this->post['token'], [
  1463. "order_type" => 'PRO',
  1464. "order_code" => $project['projectNo'],
  1465. "order_id" => $project['id'],
  1466. "order_status" => 6,
  1467. "before_status" => $old_project_status,
  1468. 'holder_id'=>$project['createrid']
  1469. ]);
  1470. }
  1471. //修改状态,添加待办,只记录动作
  1472. ActionLog::logAdd($this->post['token'], [
  1473. "order_code" => $project['projectNo'],//编码,这里是project的编码
  1474. "status" => 1,//这里的status是之前的值
  1475. "action_remark" => '',//备注
  1476. "action_type" => "create"//新建create,编辑edit,更改状态status
  1477. ], "PRT", 2, $this->post);
  1478. $process = ["order_code" => $project['projectNo'], "order_id" => $project['id'], "order_status" => 2, "order_type" => "PRT", "before_status" => 1];
  1479. ProcessOrder::AddProcess($this->post['token'], $process);
  1480. Db::commit();
  1481. return app_show(0, "咨询订单生成成功");
  1482. } catch (\Exception $e) {
  1483. Db::rollback();
  1484. return error_show(1002, $e->getMessage());
  1485. }
  1486. }
  1487. /**
  1488. * @param $data
  1489. * @return false
  1490. * @throws \think\db\exception\DataNotFoundException
  1491. * @throws \think\db\exception\DbException
  1492. * @throws \think\db\exception\ModelNotFoundException
  1493. *
  1494. */
  1495. public function project_zx($data, array &$standing_book_data = [])
  1496. {
  1497. $goodinfo = Db::name("consult_bids")->where(["spuCode" => $data['spuCode'], "is_del" => 0])->find();
  1498. if ($goodinfo == false) {
  1499. return false;
  1500. }
  1501. // $cat_top_list = made($goodinfo['cat_id']);
  1502. // $cat_top_id = isset($cat_top_list[0]['id']) ? $cat_top_list[0]['id'] : 0;
  1503. //// $saleprice = $goodinfo['sale_price'];
  1504. // if ($goodinfo['is_gold_price'] == 1 && $cat_top_id == 6) {
  1505. // $gold = Db::name("gold_price1")
  1506. // ->field('id,price')
  1507. // ->where(["type" => $goodinfo['metal_id'], "is_del" => 0, "status" => 1])
  1508. // ->order("addtime desc")
  1509. // ->find();
  1510. // $goodinfo['gold_price'] = $gold["price"];
  1511. // $data['sale_price'] = $goodinfo['demo_fee'] /$data['good_num'] + $goodinfo['open_fee'] / $data['good_num'] +
  1512. // $goodinfo['good_weight'] * $gold["price"] + $goodinfo['cost_fee'] * $goodinfo['good_weight'] +
  1513. // $goodinfo['pakge_fee'] + $goodinfo['mark_fee'] + $goodinfo['cert_fee'] + $goodinfo['nake_fee'] + $goodinfo['delivery_fee'];
  1514. //// if($data['sale_price']< $saleprice){
  1515. //// return false;
  1516. //// }
  1517. // }
  1518. $orderCode = makeNo("QR");
  1519. $supplier_temp_info = Db::name('supplier')
  1520. ->field('id,person,personid')
  1521. ->where('code',$goodinfo['supplierNo'])
  1522. ->findOrEmpty();
  1523. $cgd = [
  1524. "supplierNo" => $goodinfo['supplierNo'],
  1525. "companyNo" => $data['companyNo'],
  1526. "spuCode" => $data['spuCode'],
  1527. "skuCode" => "",
  1528. "orderCode" => $orderCode,
  1529. "good_name" => $goodinfo['good_name'],
  1530. "sale_price" => $goodinfo['total_fee'],
  1531. "total_fee" => round($goodinfo['total_fee'] * $data['good_num'], 2),
  1532. "pakge_fee" => $goodinfo['pakge_fee'],
  1533. "cert_fee" => $goodinfo['cert_fee'],
  1534. "open_fee" => $goodinfo['open_fee'],
  1535. "cost_fee" => $goodinfo['cost_fee'],
  1536. "mark_fee" => $goodinfo['mark_fee'],
  1537. "demo_fee" => $goodinfo['demo_fee'],
  1538. "nake_fee" => $goodinfo['nake_fee'],
  1539. "good_num" => $data['good_num'],
  1540. "delivery_fee" => $goodinfo['delivery_fee'],
  1541. "createrid" =>$supplier_temp_info['personid'],
  1542. "creater" =>$supplier_temp_info['person'],
  1543. "weight" => $goodinfo['good_weight'],
  1544. "gold_price" => $goodinfo['gold_price'],
  1545. "good_type" => 1,
  1546. "order_type" => 3,//3咨询商品
  1547. "order_source" => 3,//项目
  1548. "send_way" => $goodinfo['send_way'],
  1549. 'good_createrid' => $goodinfo['createrid'],
  1550. 'good_creater' => $goodinfo['creater'],//商品创建人
  1551. ];
  1552. $datas = [
  1553. "orderCode" => $orderCode,
  1554. "good_code" => $data['spuCode'],
  1555. "skuCode" => "",
  1556. "customer_code" => $data['customerNo'],
  1557. "good_name" => isset($goodinfo['good_name']) && $goodinfo['good_name'] !== '' ? $goodinfo['good_name'] : '',
  1558. "good_num" => $data['good_num'],
  1559. "cat_id" => $goodinfo['cat_id'],
  1560. "apply_id" => $data['rm'],
  1561. "apply_name" => $data['ri'],
  1562. "origin_price" => $goodinfo['total_fee'],
  1563. "sale_price" => $data['sale_price'],
  1564. "post_fee" => 0,
  1565. "status" => 0,
  1566. "send_num" => 0,
  1567. "wsend_num" => $data['good_num'],
  1568. "send_status" => 1,
  1569. "good_type" => 1,
  1570. "send_type" => $data['sendtype'],
  1571. "supplierNo" => $data['companyNo'],
  1572. "is_del" => 0,
  1573. "zxNo" => $data["pgNo"],
  1574. "platform_order" => "",
  1575. "platform_id" => $data['platform_id'],
  1576. "remark" => "",
  1577. "is_stock" => 0,
  1578. "is_activity" => 0,
  1579. "activity_code" => '',
  1580. "proof_id" => 0,
  1581. "order_type" => 3,//咨询商品
  1582. "order_source" => 3,//项目
  1583. 'good_weight' => $goodinfo['good_weight'],
  1584. 'gold_price' => $goodinfo['gold_price'],
  1585. 'cost_price' => $goodinfo['sale_cost_fee'],
  1586. 'diff_weight' => 0,
  1587. 'diff_fee' => 0,
  1588. "addtime" => date("Y-m-d H:i:s"),
  1589. "updatetime" => date("Y-m-d H:i:s"),
  1590. 'total_price' => round($data['sale_price'] * $data['good_num'], 2),
  1591. 'cgderid' => $supplier_temp_info['personid'],
  1592. 'cgder' => $supplier_temp_info['person'],//采购员(供应商负责人)
  1593. 'good_createrid' => $goodinfo['createrid'],
  1594. 'good_creater' => $goodinfo['creater'],//商品创建人
  1595. ];
  1596. $datainfo = Db::name('sale')->insert($datas, true);
  1597. if ($datainfo > 0) {
  1598. $standing_book_data['sale_id'] = $datainfo;
  1599. $standing_book_data['customer_code'] = $datas['customer_code'];
  1600. $standing_book_data['infoNo'] = $goodinfo['infoNo'];
  1601. //修改状态,添加待办
  1602. ActionLog::logAdd($this->post['token'], [
  1603. "order_code" => $orderCode,//项目编码
  1604. "status" => 0,//这里的status是之前的值
  1605. "action_remark" => '',//备注
  1606. "action_type" => "status"//新建create,编辑edit,更改状态status
  1607. ], "XSQRD", 0, $datas);
  1608. ProcessOrder::AddProcess($this->post['token'], [
  1609. "order_type" => 'XSQRD',
  1610. "order_code" => $orderCode,
  1611. "order_id" => $datainfo,
  1612. "order_status" => 0,
  1613. "before_status" => 0,
  1614. 'holder_id' => $datas['apply_id']
  1615. ]);
  1616. $bol = $this->createCgd($cgd, $standing_book_data);
  1617. if ($bol == false) {
  1618. return false;
  1619. }
  1620. $bidstatus = $goodinfo['status'];
  1621. $goodinfo['status'] = 6;
  1622. $goodinfo['updatetime'] = date("Y-m-d H:i:s");
  1623. $sa = Db::name("consult_bids")->save($goodinfo);
  1624. if ($sa == false) {
  1625. return false;
  1626. }
  1627. //修改状态,添加待办
  1628. ActionLog::logAdd($this->post['token'], [
  1629. "order_code" => $goodinfo['bidNo'],//项目编码
  1630. "status" => $bidstatus,//这里的status是之前的值
  1631. "action_remark" => '',//备注
  1632. "action_type" => "status"//新建create,编辑edit,更改状态status
  1633. ], "FKD", 6, $datas);
  1634. $zxorder = Db::name("consult_order")->where(["zxNo" => $goodinfo["zxNo"], "is_del" => 0])->find();
  1635. if ($zxorder == false) {
  1636. return false;
  1637. }
  1638. $limt = [
  1639. "spuCode" => $goodinfo['spuCode'],
  1640. "good_name" => $goodinfo['good_name'],
  1641. "brand_id" => $goodinfo['brand_id'],
  1642. "good_unit" => $goodinfo['unit_id'],
  1643. "cat_id" => $goodinfo['cat_id'],
  1644. "good_type" => 0,
  1645. "moq" => 1,
  1646. "customized" => $goodinfo['work_day'],
  1647. "tax" => $goodinfo['tax'],
  1648. "supplierNo" => $goodinfo["supplierNo"],
  1649. "is_auth" => 0,
  1650. "craft_desc" => $goodinfo['good_name'],
  1651. "good_remark" => "",
  1652. "good_img" => $goodinfo['good_img'],
  1653. "good_thumb_img" => "",
  1654. "good_info_img" => "",
  1655. "platform_id" => $zxorder['platform_id'],
  1656. "specinfo" => $goodinfo['specinfo'],
  1657. "work_day" => $goodinfo['work_day'],
  1658. "noble_metal" => $goodinfo['metal_id'],
  1659. "is_gold_price" => $goodinfo['is_gold_price'],
  1660. "good_weight" => $goodinfo['good_weight'],
  1661. "companyNo" => $zxorder['companyNo'],
  1662. "config" => $goodinfo['config'],
  1663. "other_config" => $goodinfo['other_config'],
  1664. "weight" => $goodinfo['weight'],
  1665. "is_diff" => $goodinfo['is_diff'],
  1666. "supply_area" => $goodinfo['supply_area'],
  1667. "pay_way" => $goodinfo['pay_way'],
  1668. "send_way" => $goodinfo['send_way'],
  1669. "status" => 1,
  1670. "is_del" => 0,
  1671. "createrid" => $goodinfo['createrid'],
  1672. "creater" => $goodinfo['creater'],
  1673. "addtime" => date("Y-m-d H:i:s"),
  1674. "updatetime" => date("Y-m-d H:i:s")
  1675. ];
  1676. $good = Db::name("good_zixun")->insert($limt);
  1677. if (!$good) {
  1678. return false;
  1679. }
  1680. if ($data['sendtype'] == 1 && !empty($data['addrlist'])) {
  1681. $order = Db::name("order_num")->where(["orderCode" => $orderCode, "status" => 1])->where([["wsend_num", ">=", 0]])
  1682. ->find();
  1683. if ($order == false) {
  1684. return false;
  1685. }
  1686. $i = 1;
  1687. foreach ($data['addrlist'] as $value) {
  1688. $temp = [];
  1689. $addrs = [];
  1690. if ($value['addr_code'] !== '' && is_array($value['addr_code']) && !empty($value['addr_code'])) {
  1691. $addrs['provice_code'] = $value['addr_code'][0];
  1692. $addrs['city_code'] = $value['addr_code'][1];
  1693. $addrs['area_code'] = $value['addr_code'][2];
  1694. $addr = json_encode($addrs);
  1695. } else {
  1696. $addr = isset($value['addr_code']) ? $value['addr_code'] : '';
  1697. }
  1698. $temp['orderCode'] = $orderCode;
  1699. $temp['contactor'] = $value['contactor'];
  1700. $temp['mobile'] = $value['mobile'];
  1701. $temp['addr'] = $value['addr'];
  1702. $temp['addr_code'] = $addr;
  1703. $temp['customer_code'] = $data['companyNo'];
  1704. $temp['receipt_quantity'] = $value['receipt_quantity'];
  1705. $temp['post_fee'] = 0;
  1706. $temp['is_del'] = 0;
  1707. $temp['addtime'] = date("Y-m-d H:i:s");
  1708. $temp['updatetime'] = date("Y-m-d H:i:s");
  1709. $temp['arrive_time'] = $data['arrtime'];
  1710. $vmp = Db::name('order_addr')->insert($temp, true);
  1711. if ($vmp > 0) {
  1712. $outCode = makeNo("DF");
  1713. //改变编码规则,将原来的outCode后两位换成序列号
  1714. //str_pad字符串填充
  1715. $outCode = substr($outCode, 0, -2) . str_pad($i, 2, '0', STR_PAD_LEFT);
  1716. $i++;
  1717. $out = [
  1718. "orderCode" => $orderCode,
  1719. "outCode" => $outCode,
  1720. "apply_id" => $data['rm'],
  1721. "apply_name" => $data['ri'],
  1722. "addrid" => $vmp,
  1723. "post_name" => "",
  1724. "post_code" => "",
  1725. "post_fee" => 0,
  1726. "sendtime" => date("Y-m-d H:i:s"),
  1727. "send_num" => $value['receipt_quantity'],
  1728. "check_num" => 0,
  1729. "error_num" => 0,
  1730. "wsm_code" => "",
  1731. "order_type" => 3,//3咨询商品
  1732. "status" => 0,
  1733. "addtime" => date("Y-m-d H:i:s"),
  1734. "updatetime" => date("Y-m-d H:i:s")
  1735. ];
  1736. $ou = Db::name("order_out")->insertGetId($out);
  1737. if ($ou == false) {
  1738. return false;
  1739. }
  1740. //修改状态,添加待办
  1741. ActionLog::logAdd($this->post['token'], [
  1742. "order_code" => $outCode,//项目编码
  1743. "status" => 0,//这里的status是之前的值
  1744. "action_remark" => '',//备注
  1745. "action_type" => "status"//新建create,编辑edit,更改状态status
  1746. ], "CKD", 0, $out);
  1747. ProcessOrder::AddProcess($this->post['token'], [
  1748. "order_type" => 'CKD',
  1749. "order_code" => $outCode,
  1750. "order_id" => $ou,
  1751. "order_status" => 0,
  1752. "before_status" => 0,
  1753. 'holder_id'=>$data['rm'],
  1754. 'wait_id'=>$supplier_temp_info['personid'],
  1755. 'wait_name'=>$supplier_temp_info['person'],
  1756. ]);
  1757. $order['send_num'] += $value['receipt_quantity'];
  1758. $order['wsend_num'] -= $value['receipt_quantity'];
  1759. if ($order['wsend_num'] < 0) {
  1760. return false;
  1761. }
  1762. $ups = Db::name("order_num")->save($order);
  1763. if ($ups) {
  1764. $tep = [
  1765. "cgdNo" => $order['cgdNo'],
  1766. "outCode" => $outCode,
  1767. "send_num" => $value['receipt_quantity'],
  1768. "status" => 1,
  1769. "addtime" => date("Y-m-d H:i:s"),
  1770. "updatetime" => date("Y-m-d H:i:s")
  1771. ];
  1772. $sen = Db::name("order_send")->save($tep);
  1773. if ($sen == false) {
  1774. return false;
  1775. }
  1776. $standing_book_data['outCode'][] = $outCode;
  1777. }
  1778. } else {
  1779. return false;
  1780. }
  1781. }
  1782. }
  1783. }
  1784. return true;
  1785. }
  1786. /**
  1787. * @param $data
  1788. * @return bool
  1789. * @throws \think\db\exception\DataNotFoundException
  1790. * @throws \think\db\exception\DbException
  1791. * @throws \think\db\exception\ModelNotFoundException
  1792. */
  1793. public function project_good($data, array &$standing_book_data = [])
  1794. {
  1795. $good = Db::name('good')
  1796. ->alias("a")
  1797. ->leftJoin("good_platform b", "a.spuCode=b.spuCode")
  1798. ->where(["b.skuCode" => $data['skuCode'], "a.is_del" => 0, "b.is_del" => 0])
  1799. ->field("a.*,b.skuCode,b.platform_code")->find();
  1800. if ($good == false) {
  1801. return 4; //商品信息未找到
  1802. }
  1803. $goodlass = Db::name("good_ladder")->where(["skuCode" => $data['skuCode'], "is_del" => 0, "status" => 1])->where([["min_num", "<=", $data['good_num']]])->order("min_num desc")->find();
  1804. if ($goodlass == false) {
  1805. return 4;//商品信息未找到
  1806. }
  1807. $sale_price = $goodlass['sale_price'];
  1808. $origin_price = 0;
  1809. if ($good['is_stock'] == 0) {
  1810. $origin = Db::name("good_nake")->where([["spuCode", "=", $data['spuCode']], ["min_num", "<=", $data['good_num']],
  1811. ["is_del", "=", 0]])->order("min_num desc")->find();
  1812. if ($origin == false) {
  1813. return 4;//商品信息未找到
  1814. }
  1815. $origin_price = $origin['nake_total'];
  1816. }
  1817. if ($good['is_gold_price'] == 1 && $good['is_stock'] == 0) {
  1818. $gold = Db::name("gold_price1")
  1819. ->field('id,price')
  1820. ->where(["type" => $good['noble_metal'], "is_del" => 0, "status" => 1])
  1821. ->order("addtime desc")
  1822. ->find();
  1823. //$saleprice(最终售价) = (打样费/购买数量 + 开模费/购买数量 + 商品重量* 最新金价 + 工艺费* 商品重量+包装费+加标费+证书费+产品裸价+物流费)/(1-成本售价/100);
  1824. $sale_price = $good['demo_fee'] / $data['good_num'] + $good['open_fee'] / $data['good_num'] + $good['noble_weight'] * $gold["price"] + $goodlass['cost_fee'] * $good['noble_weight'] + $origin['package_fee'] + $origin['mark_fee'] + $origin['cert_fee'] + $origin['nake_fee'] + $origin['delivery_fee'];
  1825. $good['cgd_gold_price'] = $gold["price"];
  1826. }
  1827. $orderCode = makeNo("QR");
  1828. $supplier_temp_info = Db::name('supplier')
  1829. ->field('id,person,personid')
  1830. ->where('code',$good['supplierNo'])
  1831. ->findOrEmpty();
  1832. $datas = [
  1833. "orderCode" => $orderCode,
  1834. "good_code" => $data['spuCode'],
  1835. "skuCode" => $data['skuCode'],
  1836. "customer_code" => $data['customerNo'],
  1837. "good_name" => isset($good['good_name']) && $good['good_name'] !== '' ? $good['good_name'] : '',
  1838. "good_num" => $data['good_num'],
  1839. "cat_id" => $good['cat_id'],
  1840. "apply_id" => $data['rm'],
  1841. "apply_name" => $data['ri'],
  1842. "origin_price" => $origin_price,
  1843. "sale_price" => $sale_price,
  1844. "post_fee" => 0,
  1845. "status" => 0,
  1846. "send_num" => 0,
  1847. "wsend_num" => $data['good_num'],
  1848. "send_status" => 1,
  1849. "good_type" => 1,
  1850. "send_type" => $data['sendtype'],
  1851. "supplierNo" => $data['companyNo'],
  1852. "is_del" => 0,
  1853. "zxNo" => $data["pgNo"],
  1854. "platform_order" => "",
  1855. "platform_id" => $data['platform_id'],
  1856. "remark" => "",
  1857. "is_stock" => $good['is_stock'],
  1858. "is_activity" => 0,
  1859. "activity_code" => '',
  1860. "proof_id" => 0,
  1861. "order_type" => $good['is_stock'] == 1 ? 1 : 2,//1备库,2非库存品
  1862. 'order_source' => 3,//3项目
  1863. 'good_weight' => $good['noble_weight'],
  1864. 'gold_price' => isset($good['cgd_gold_price']) ? $good['cgd_gold_price'] : 0,
  1865. 'cost_price' => $goodlass['cost_fee'],
  1866. 'diff_weight' => 0,
  1867. 'diff_fee' => 0,
  1868. "addtime" => date("Y-m-d H:i:s"),
  1869. "updatetime" => date("Y-m-d H:i:s"),
  1870. 'total_price' => round($sale_price * $data['good_num'], 2),
  1871. 'cgderid' => $supplier_temp_info['personid'],
  1872. 'cgder' => $supplier_temp_info['person'],//采购员(供应商负责人)
  1873. 'good_createrid' => $good['createrid'],
  1874. 'good_creater' => $good['creater'],//商品创建人
  1875. ];
  1876. $datainfo = Db::name('sale')->insert($datas, true);
  1877. if ($datainfo > 0) {
  1878. $standing_book_data['sale_id'] = $datainfo;
  1879. //修改状态,添加待办
  1880. ActionLog::logAdd($this->post['token'], [
  1881. "order_code" => $orderCode,//项目编码
  1882. "status" => 0,//这里的status是之前的值
  1883. "action_remark" => '',//备注
  1884. "action_type" => "status"//新建create,编辑edit,更改状态status
  1885. ], "XSQRD", 0, $datas);
  1886. ProcessOrder::AddProcess($this->post['token'], [
  1887. "order_type" => 'XSQRD',
  1888. "order_code" => $orderCode,
  1889. "order_id" => $datainfo,
  1890. "order_status" => 0,
  1891. "before_status" => 0,
  1892. 'holder_id' => $datas['apply_id']
  1893. ]);
  1894. $cgd = [
  1895. "supplierNo" => $good['supplierNo'],
  1896. "companyNo" => $data['companyNo'],
  1897. "orderCode" => $orderCode,
  1898. "spuCode" => $good['spuCode'],
  1899. "skuCode" => $good['skuCode'],
  1900. "good_name" => $good['good_name'],
  1901. "sale_price" => $origin_price,
  1902. "total_fee" => $origin_price * $data['good_num'],
  1903. "pakge_fee" => isset($origin['package_fee']) ? $origin['package_fee'] : 0,
  1904. "cert_fee" => isset($origin['cert_fee']) ? $origin['cert_fee'] : 0,
  1905. "open_fee" => $good['open_fee'],
  1906. "cost_fee" => isset($origin['cost_fee']) ? $origin['cost_fee'] : 0,
  1907. "mark_fee" => isset($origin['mark_fee']) ? $origin['mark_fee'] : 0,
  1908. "demo_fee" => $good['demo_fee'],
  1909. "nake_fee" => isset($origin['nake_fee']) ? $origin['nake_fee'] : 0,
  1910. "delivery_fee" => isset($origin['delivery_fee']) ? $origin['delivery_fee'] : 0,
  1911. "good_num" => $data['good_num'],
  1912. "good_type" => 1,
  1913. "weight" => $good['noble_weight'],
  1914. "gold_price" => isset($good['cgd_gold_price']) ? $good['cgd_gold_price'] : 0,
  1915. "createrid" => $supplier_temp_info['personid'],
  1916. "creater" => $supplier_temp_info['person'],
  1917. "order_type" => $good['is_stock'] == 1 ? 1 : 2,
  1918. 'order_source' => 3,//3项目
  1919. 'send_way' => 2,
  1920. 'good_createrid' => $good['createrid'],
  1921. 'good_creater' => $good['creater'],//商品创建人
  1922. ];
  1923. if ($good['is_stock'] == 0) {
  1924. $bol = $this->createCgd($cgd, $standing_book_data);
  1925. if ($bol == false) {
  1926. return 3;//关联采购失败
  1927. }
  1928. } else {
  1929. // $stock = Db::name("good_stock")->alias("a")->leftJoin("warehouse_info b", "a.wsm_code=b.wsm_code")->where
  1930. // (["spuCode" => $good['spuCode'], "a.is_del" => 0, "a.status" => 1, "b.wsm_type" => 5, "b.companyNo"
  1931. // => $data['companyNo']])->field("a.id,a.usable_stock,a.wait_out_stock,a.wsm_code")->find();
  1932. // if ($stock == false || $stock['usable_stock'] < $data['good_num']) {
  1933. // return 1; //库存不足
  1934. // }
  1935. // $stock_num =Db::name("good_stock_info")->where(["stockid"=>$stock['id']])->sum('balance_num');
  1936. // if($stock_num < $data['good_num']){
  1937. // return 1; //库存不足
  1938. // }
  1939. $stock_arr = Db::name("good_stock")->alias("a")
  1940. ->leftJoin("warehouse_info b", "a.wsm_code=b.wsm_code")
  1941. ->leftJoin("good_stock_info c", "a.id=c.stockid and c.balance_num>0")
  1942. ->where(["spuCode" => $good['spuCode'], "a.is_del" => 0, "a.status" => 1, "b.wsm_type" => 5, "b.companyNo" =>$data['companyNo']])
  1943. ->column('stockid,balance_num');
  1944. $stock_num = array_sum(array_column($stock_arr,"balance_num"));
  1945. $stockid = array_unique(array_column($stock_arr,"stockid"));
  1946. if($stock_num < $data['good_num']){
  1947. return 1;
  1948. }
  1949. // $bol = $this->RelaCgd(['orderCode' => $orderCode, "good_num" => $data['good_num'], "spuCode" => $good['spuCode'], "companyNo" => $data['companyNo'], "cost_fee" => $goodlass['cost_fee'], 'order_type' => $cgd['order_type'], 'order_source' => $cgd['order_source']], $standing_book_data);
  1950. // if ($bol == false) {
  1951. // return 3;//关联采购失败
  1952. // }
  1953. if (!empty($stockid)) {
  1954. $stockinfo =GoodStockInfo::OrderBn($orderCode,$stockid,$data['good_num']);
  1955. if($stockinfo==false){
  1956. return 2; //库存不足
  1957. }
  1958. //商品变动日志表,good_log_code字段存储采购单号
  1959. // $good_data[] = ['good_log_code' => $orderCode, "stock_id" => $stock['id'], "type" => 2, 'stock' => $data['good_num'], "stock_name" => "usable_stock"];
  1960. // $good_data[] = ['good_log_code' => $orderCode, "stock_id" => $stock['id'], "type" => 1, 'stock' => $data['good_num'], "stock_name" => "wait_out_stock"];
  1961. // GoodLog::LogAdd($this->post['token'], $good_data, "XSQRD");
  1962. }
  1963. }
  1964. if ($data['sendtype'] == 1 && !empty($data['addrlist'])) {
  1965. $i = 1;
  1966. foreach ($data['addrlist'] as $value) {
  1967. $temp = [];
  1968. $addrs = [];
  1969. if ($value['addr_code'] !== '' && is_array($value['addr_code']) && !empty($value['addr_code'])) {
  1970. $addrs['provice_code'] = $value['addr_code'][0];
  1971. $addrs['city_code'] = $value['addr_code'][1];
  1972. $addrs['area_code'] = $value['addr_code'][2];
  1973. $addr = json_encode($addrs);
  1974. } else {
  1975. $addr = isset($value['addr_code']) ? $value['addr_code'] : '';
  1976. }
  1977. $temp['orderCode'] = $orderCode;
  1978. $temp['contactor'] = $value['contactor'];
  1979. $temp['mobile'] = $value['mobile'];
  1980. $temp['addr'] = $value['addr'];
  1981. $temp['addr_code'] = $addr;
  1982. $temp['customer_code'] = $data['companyNo'];
  1983. $temp['receipt_quantity'] = $value['receipt_quantity'];
  1984. $temp['post_fee'] = 0;
  1985. $temp['is_del'] = 0;
  1986. $temp['addtime'] = date("Y-m-d H:i:s");
  1987. $temp['updatetime'] = date("Y-m-d H:i:s");
  1988. $temp['arrive_time'] = $data['arrtime'];
  1989. $vmp = Db::name('order_addr')->insert($temp, true);
  1990. if ($vmp > 0) {
  1991. $standing_book_data['customer_code'] = $temp['customer_code'];
  1992. $num = $value['receipt_quantity'];
  1993. $outCode = makeNo("DF");
  1994. $outCode = substr($outCode, 0, -2) . str_pad($i, 2, '0', STR_PAD_LEFT);
  1995. $i++;
  1996. if ($good['is_stock'] != 1) {
  1997. $order = Db::name("order_num")->where(["orderCode" => $orderCode, "status" => 1])->where([["wsend_num", ">=", 0]])
  1998. ->lock(true)->find();
  1999. if ($order == false) {
  2000. return 3;
  2001. }
  2002. //改变编码规则,将原来的outCode后两位换成序列号
  2003. //str_pad字符串填充
  2004. $order['wsend_num'] -= $num;
  2005. $order['send_num'] += $num;
  2006. $or = Db::name("order_num")->save($order);
  2007. if ($or == false) {
  2008. return 3;
  2009. }
  2010. $tep = [
  2011. "cgdNo" => $order['cgdNo'],
  2012. "outCode" => $outCode,
  2013. "send_num" => $num,
  2014. "status" => 1,
  2015. "addtime" => date("Y-m-d H:i:s"),
  2016. "updatetime" => date("Y-m-d H:i:s")
  2017. ];
  2018. $sen = Db::name("order_send")->save($tep);
  2019. if ($sen == false) {
  2020. return 3;
  2021. }
  2022. $cgdinfo = Db::name("purchease_order")->where(["cgdNo" => $order['cgdNo']])->find();
  2023. if ($cgdinfo == false) {
  2024. return 4;
  2025. }
  2026. }
  2027. $out = [
  2028. "orderCode" => $orderCode,
  2029. "outCode" => $outCode,
  2030. "apply_id" => $data['rm'],
  2031. "apply_name" => $data['ri'],
  2032. "addrid" => $vmp,
  2033. "post_name" => "",
  2034. "post_code" => "",
  2035. "post_fee" => 0,
  2036. "sendtime" => date("Y-m-d H:i:s"),
  2037. "send_num" => $num,
  2038. "check_num" => 0,
  2039. "error_num" => 0,
  2040. "wsm_code" => $good['is_stock'] == 1 ?'':$cgdinfo['wsm_code'],
  2041. "order_type" => 1,
  2042. "status" => $good['is_stock'] == 1 ? 1 : 0,
  2043. "addtime" => date("Y-m-d H:i:s"),
  2044. "updatetime" => date("Y-m-d H:i:s")
  2045. ];
  2046. $ou = Db::name("order_out")->insertGetId($out);
  2047. if ($ou == false) {
  2048. return 0;
  2049. } else {
  2050. $standing_book_data['outCode'][] = $outCode;
  2051. //修改状态,添加待办
  2052. if($good['is_stock'] == 1){
  2053. $roleid = config('app.wsm_cgder_role');
  2054. $uids = Db::name('user_role')
  2055. ->where('is_del', 0)
  2056. ->whereIn('roleid', $roleid)
  2057. ->column('uid');
  2058. $handle_user_list=implode(',', $uids);
  2059. }
  2060. ActionLog::logAdd($this->post['token'], [
  2061. "order_code" => $outCode,//出库单号
  2062. "status" => 0,//这里的status是之前的值
  2063. "action_remark" => '',//备注
  2064. "action_type" => "create"//新建create,编辑edit,更改状态status
  2065. ], "CKD", 0, $out);
  2066. ProcessOrder::AddProcess($this->post['token'], [
  2067. "order_type" => 'CKD',
  2068. "order_code" => $outCode,//出库单号
  2069. "order_id" => $ou,
  2070. "order_status" => $good['is_stock'] == 1 ? 1 : 0,
  2071. "before_status" => 0,
  2072. 'holder_id'=>$out['apply_id'],
  2073. 'handle_user_list' =>$handle_user_list??""
  2074. ]);
  2075. }
  2076. } else {
  2077. return false;
  2078. }
  2079. }
  2080. }
  2081. // }
  2082. }
  2083. return true;
  2084. }
  2085. public function list()
  2086. {
  2087. $page = isset($this->post['page']) && $this->post['page'] !== "" ? intval($this->post['page']) : "1";
  2088. $size = isset($this->post['size']) && $this->post['size'] !== "" ? intval($this->post['size']) : "10";
  2089. $where[] = ['s.is_del', "=", 0];
  2090. $orderCode = isset($this->post['orderCode']) && $this->post['orderCode'] !== "" ? trim($this->post['orderCode']) : "";
  2091. if ($orderCode !== "") {
  2092. $where[] = ['s.orderCode', "like", "%$orderCode%"];
  2093. }
  2094. $apply_name = isset($this->post['apply_name']) && $this->post['apply_name'] !== "" ? trim($this->post['apply_name']) : "";
  2095. if ($apply_name !== "") {
  2096. $where[] = ['s.apply_name', "like", "%$apply_name%"];
  2097. }
  2098. $good_name = isset($this->post['good_name']) && $this->post['good_name'] !== "" ? trim($this->post['good_name']) : "";
  2099. if ($good_name !== "") {
  2100. $where[] = ['s.good_name', "like", "%$good_name%"];
  2101. }
  2102. $good_code = isset($this->post['good_code']) && $this->post['good_code'] !== "" ? trim($this->post['good_code']) : "";
  2103. if ($good_code !== "") {
  2104. $where[] = ['s.good_code', "like", "%$good_code%"];
  2105. }
  2106. $customer_code = isset($this->post['customer_code']) && $this->post['customer_code'] !== "" ? trim($this->post['customer_code']) : "";
  2107. if ($customer_code !== "") {
  2108. $where[] = ['s.customer_code', "like", "%$customer_code%"];
  2109. }
  2110. $supplierNo = isset($this->post['supplierNo']) && $this->post['supplierNo'] !== "" ? trim($this->post['supplierNo']) : "";
  2111. if ($supplierNo !== "") {
  2112. $where[] = ['s.supplierNo', "like", "%$supplierNo%"];
  2113. }
  2114. $ordertype = isset($this->post['order_type']) && $this->post['order_type'] !== "" ? intval($this->post['order_type']) : "";
  2115. if ($ordertype !== "") {
  2116. $where[] = ['s.order_type', "=", $ordertype];
  2117. }
  2118. $status = isset($this->post['status']) && $this->post['status'] !== "" ? trim($this->post['status']) : "";
  2119. if ($status !== "") {
  2120. $where[] = ['s.status', "=", $status];
  2121. }
  2122. $start = isset($this->post['start']) && $this->post['start'] !== "" ? $this->post['start'] : "";
  2123. if ($start != "") {
  2124. $where[] = ["s.addtime", '>=', $start];
  2125. }
  2126. $end = isset($this->post['end']) && $this->post['end'] !== "" ? $this->post['end'] : "";
  2127. if ($end != "") {
  2128. $end .= " 23:59:59";
  2129. $where[] = ["s.addtime", '<=', $end];
  2130. }
  2131. // $role = $this->checkRole();
  2132. // if (!empty($role['write'])) {
  2133. // $where[] = ["s.apply_id", "in", $role['write']];
  2134. // }
  2135. // $role = $this->checkDataShare();
  2136. // if (!empty($role[DataGroupModel::$type_全部])) $where[] = ['s.apply_id', 'in', $role[DataGroupModel::$type_全部]];
  2137. $role = $this->checkDataShare();
  2138. $hand = resign_hand_user($this->uid,0);
  2139. if (!empty($role[DataGroupModel::$type_全部])) {
  2140. $arr= array_unique(array_merge($hand,$role[DataGroupModel::$type_全部]));
  2141. $where[] = ['s.apply_id', 'in',$arr];
  2142. }
  2143. $company_name = isset($this->post['company_name']) && $this->post['company_name'] !== "" ? trim($this->post['company_name']) : "";
  2144. if ($company_name !== "") $where[] = ["s.apply_id", 'in', get_company_item_user_by_name($company_name)];
  2145. // if(!empty($role['platform']) ){
  2146. // $where[]=["s.platform_id","in",$role['platform']];
  2147. // }
  2148. $count = Db::name('sale')
  2149. ->alias('s')
  2150. ->leftJoin("depart_user u", "u.uid=s.apply_id AND u.is_del=0")->where($where)
  2151. ->where($where)
  2152. ->count();
  2153. $total = ceil($count / $size);
  2154. $page = $page >= $total ? $total : $page;
  2155. $list = Db::name('sale')
  2156. ->alias('s')
  2157. ->field('s.*,u.itemid')
  2158. ->leftJoin("depart_user u", "u.uid=s.apply_id AND u.is_del=0")->where($where)
  2159. ->order("s.addtime desc")
  2160. ->page($page, $size)
  2161. ->cursor();
  2162. $data = [];
  2163. foreach ($list as $value) {
  2164. if ($value['order_type'] == 3||$value['order_type'] == 4) {
  2165. $var = Db::name("good_zixun")->where(["spuCode" => $value['good_code'], "is_del" => 0])->find();
  2166. $value["speclist"] = isset($var['specinfo']) && $var['specinfo'] != "" ? json_decode($var['specinfo'], true) : "";
  2167. } else {
  2168. $var = Db::name('good_platform')->alias('a')->join('good b', 'b.spuCode=a.spuCode', 'left')
  2169. ->where(['a.skuCode' => $value['skuCode']])->find();
  2170. $spec = Db::name("good_spec")->where(["spuCode" => $var['spuCode'], "is_del" => 0])->select()->toArray();
  2171. $speclist = [];
  2172. if (!empty($spec)) {
  2173. foreach ($spec as $val) {
  2174. $temp = [];
  2175. $temp['id'] = $val['id'];
  2176. $temp['spuCode'] = $val['spuCode'];
  2177. $temp['spec_id'] = $val['spec_id'];
  2178. $temp['spec_value_id'] = $val['spec_value_id'];
  2179. $sp = Db::name("specs")->where(["id" => $val['spec_id']])->find();
  2180. $temp['spec_name'] = isset($sp["spec_name"]) ? $sp["spec_name"] : "";
  2181. $spv = Db::name("spec_value")->where(["id" => $val['spec_value_id']])->find();
  2182. $temp['spec_value'] = isset($spv["spec_value"]) ? $spv["spec_value"] : "";
  2183. $speclist[] = $temp;
  2184. }
  2185. }
  2186. $value["speclist"] = empty($speclist) ? [] : $speclist;
  2187. }
  2188. $value['can'] = isset($var['cat_id']) && $var['cat_id'] != 0 ? made($var['cat_id']) : [];
  2189. $value['supplierName'] = '';
  2190. if ($value['supplierNo'] != "") {
  2191. $supplier = Db::name("business")->where(["companyNo" => $value['supplierNo']])->find();
  2192. $value['supplierName'] = isset($supplier['company']) ? $supplier['company'] : "";
  2193. }
  2194. $value['customerName'] = '';
  2195. if ($value['customer_code'] != "") {
  2196. $supplier = Db::name("customer_info")->where(["companyNo" => $value['customer_code']])->find();
  2197. $value['customerName'] = isset($supplier['companyName']) ? $supplier['companyName'] : "";
  2198. }
  2199. $value['useage'] = "";
  2200. if ($value['use_order'] != 0) {
  2201. $use = Db::name("order_use")->where(["id" => $value['use_order']])->find();
  2202. $value['useage'] = isset($use['order_use']) ? $use['order_use'] : "";
  2203. } else {
  2204. $value['use_order'] = '';
  2205. }
  2206. $value['good_num'] -= $value['th_num'];
  2207. $value['send_num'] -= $value['th_num'];
  2208. $value['total_price'] = round($value['total_price'] - $value['th_fee'], 2);
  2209. $value['company_name'] = implode('/', array_column(GetPart($value['itemid']), 'name'));
  2210. //是否具有编辑权限
  2211. $value['is_allow_update'] = 0;
  2212. if (in_array($this->roleid, [1, 33]) || in_array($value['apply_id'], $role[DataGroupModel::$type_可编辑])) $value['is_allow_update'] = 1;
  2213. $data[] = $value;
  2214. }
  2215. return app_show(0, "获取成功", ['list' => $data, 'count' => $count]);
  2216. }
  2217. public function edit()
  2218. {
  2219. $token = isset($this->post['token']) && $this->post['token'] !== "" ? trim($this->post['token']) : "";
  2220. $id = isset($this->post['id']) && $this->post['id'] !== "" ? trim($this->post['id']) : "";
  2221. if ($id == "") {
  2222. return error_show(1002, "参数id不能为空");
  2223. }
  2224. $etid = Db::name("sale")->where(["id" => $id, "is_del" => 0])->find();
  2225. if (empty($etid)) {
  2226. return error_show(1002, "未找到数据");
  2227. }
  2228. // $orderCode=isset($this->post['orderCode']) && $this->post['orderCode'] !=="" ? trim($this->post['orderCode']) :"";
  2229. // if($orderCode==""){
  2230. // return error_show(1002,"销售单code不能为空");
  2231. // }
  2232. $good_code = isset($this->post['good_code']) && $this->post['good_code'] !== "" ? trim($this->post['good_code']) : "";
  2233. if ($good_code == "") {
  2234. return error_show(1002, "商品code不能为空");
  2235. }
  2236. $ct = Db::name('good')->alias('a')->join('good_type b', 'b.good_code=a.good_code', 'left')
  2237. ->where(['b.type_code' => $good_code])->find();
  2238. if ($ct == "") {
  2239. return error_show(1002, "未找到商品数据");
  2240. }
  2241. $customer_code = isset($this->post['customer_code']) && $this->post['customer_code'] !== "" ? trim($this->post['customer_code']) : "";
  2242. if ($customer_code == "") {
  2243. return error_show(1002, "客户code不能为空");
  2244. }
  2245. $customer = Db::name("customer_info")->where(["companyNo" => $customer_code])->find();
  2246. if ($customer == false) {
  2247. return error_show(1004, "未找到客户数据");
  2248. }
  2249. $supplierNo = $this->post['supplierNo'] && $this->post['supplierNo'] !== "" ? trim($this->post['supplierNo']) : "";
  2250. if ($supplierNo == "") {
  2251. return error_show(1002, "参数supplierNo不能为空");
  2252. }
  2253. $supplier = Db::name("supplier")->where(["code" => $supplierNo])->find();
  2254. if ($supplier == false) {
  2255. return error_show(1004, "未找到平台供应商数据");
  2256. }
  2257. $apply_id = GetUserInfo($token);
  2258. if (empty($apply_id) || $apply_id['code'] != 0) {
  2259. return error_show(1002, "申请人数据不存在");
  2260. }
  2261. $rm = isset($apply_id["data"]['id']) ? $apply_id["data"]['id'] : "";
  2262. $ri = isset($apply_id["data"]['nickname']) ? $apply_id["data"]['nickname'] : "";
  2263. // $good_name = isset($this->post['good_name']) && $this->post['good_name'] !== "" ? trim
  2264. //($this->post['good_name']) : "";
  2265. // $good_num = isset($this->post['good_num']) && $this->post['good_num'] !== "" ? intval
  2266. //($this->post['good_num']) : "";
  2267. // $origin_price = isset($this->post['origin_price']) && $this->post['origin_price'] !== "" ? intval
  2268. // ($this->post['origin_price']) : "";
  2269. // $sale_price = isset($this->post['sale_price']) && $this->post['sale_price'] !== "" ? trim($this->post['sale_price']) : "";
  2270. // $total_price = isset($this->post['total_price']) && $this->post['total_price'] !== "" ? trim($this->post['total_price']) : "";
  2271. // $post_fee = isset($this->post['post_fee']) && $this->post['post_fee'] !== "" ? trim($this->post['post_fee']) : "";
  2272. // $status = isset($this->post['status']) && $this->post['status'] !== "" ? intval($this->post['status']) : "";
  2273. $vr = isset($this->post['order_addr']) && $this->post['order_addr'] !== "" ? $this->post['order_addr'] : "";
  2274. if ($vr == "") {
  2275. return error_show(1002, "参数order_addr不能为空");
  2276. }
  2277. $vi = isset($this->post['good_stock']) && $this->post['good_stock'] !== "" ? $this->post['good_stock'] : "";
  2278. if ($vi == "") {
  2279. return error_show(1002, "参数good_stock不能为空");
  2280. }
  2281. $good_num = intval(array_sum(array_column($vi, "num")));
  2282. Db::startTrans();
  2283. try {
  2284. $datn = [
  2285. "id" => $id,
  2286. "good_code" => $good_code,
  2287. "customer_code" => $customer_code,
  2288. "good_num" => $good_num,
  2289. "supplierNo" => $supplierNo,
  2290. "apply_id" => $rm,
  2291. "apply_name" => $ri,
  2292. "is_del" => 0,
  2293. "updatetime" => date("Y-m-d H:i:s")
  2294. ];
  2295. $datninfo = Db::name('sale')->where(['id' => $id, 'is_del' => 0])->save($datn);
  2296. if ($datninfo > 0) {
  2297. $stn = ["order_code" => $etid['orderCode'], "status" => $etid['status'], "action_remark" => '', "action_type" => "edit"];
  2298. ActionLog::logAdd($this->post['token'], $stn, "XSQRD", $etid['status'], $datn);
  2299. // $order=["order_type"=>'XSQRD',"order_code"=>$etid['orderCode'],"order_id"=>$id,"order_status"=>$etid['status'],"before_status"=> 0];
  2300. // ProcessOrder::AddProcess($this->post['token'],$order);
  2301. //更新台账
  2302. Db::name('standing_book')
  2303. ->where('orderCode', $etid['orderCode'])
  2304. ->update([
  2305. 'customer_code' => $customer_code,
  2306. 'supplierNo' => $supplierNo,
  2307. 'updatetime' => date("Y-m-d H:i:s")
  2308. ]);
  2309. foreach ($vi as $ion) {
  2310. $iten = [];
  2311. isset($ion['id']) && $ion['id'] !== "" ? $iten['id'] = $ion['id'] : '';
  2312. $iten['orderCode'] = $etid['orderCode'];
  2313. $iten['wsm_code'] = $ion['wsm_code'];
  2314. $iten['stock_id'] = 0;
  2315. $iten['num'] = $ion['num'];
  2316. $iten['status'] = 1;
  2317. $iten['sale_price'] = $ct['original_price'];
  2318. isset($ion['id']) && $ion['id'] !== "" ? '' : $iten['addtime'] = date("Y-m-d H:i:s");
  2319. $iten['updatetime'] = date("Y-m-d H:i:s");
  2320. $vp = Db::name('sale_info')->save($iten);
  2321. if ($vp == false) {
  2322. Db::rollback();
  2323. return error_show(1002, "更新失败");
  2324. }
  2325. }
  2326. foreach ($vr as $value) {
  2327. $temp = [];
  2328. isset($value['id']) && $value['id'] !== "" ? $temp['id'] = $value['id'] : '';
  2329. $temp['orderCode'] = $etid['orderCode'];
  2330. $temp['contactor'] = $value['contactor'];
  2331. $temp['mobile'] = $value['mobile'];
  2332. $temp['addr'] = $value['addr'];
  2333. $temp['addr_code'] = $value['addr_code'];
  2334. $temp['customer_code'] = $customer_code;
  2335. $temp['receipt_quantity'] = $value['receipt_quantity'];
  2336. $temp['post_fee'] = 0;
  2337. $temp['is_del'] = $value['is_del'];
  2338. isset($value['id']) && $value['id'] !== "" ? '' : $temp['addtime'] = date("Y-m-d H:i:s");
  2339. $temp['updatetime'] = date("Y-m-d H:i:s");
  2340. $temp['arrive_time'] = date("Y-m-d H:i:s");
  2341. $dat = Db::name('order_addr')->save($temp);
  2342. if ($dat == false) {
  2343. Db::rollback();
  2344. return error_show(1002, "更新失败");
  2345. }
  2346. }
  2347. Db::commit();
  2348. return error_show(0, "更新成功");
  2349. }
  2350. Db::rollback();
  2351. return error_show(1002, "更新失败");
  2352. } catch (Exception $e) {
  2353. Db::rollback();
  2354. return error_show(1005, $e->getMessage());
  2355. }
  2356. }
  2357. public function info()
  2358. {
  2359. $id = isset($this->post['id']) && $this->post['id'] !== "" ? intval($this->post['id']) : "";
  2360. if ($id == "") {
  2361. return error_show(1002, "参数id不能为空");
  2362. }
  2363. $einfo = Db::name('sale')->where(['id' => $id, 'is_del' => 0])->find();
  2364. if (empty($einfo)) {
  2365. return error_show(1002, "未找到销售订单数据");
  2366. }
  2367. if ($einfo['order_type'] == 3||$einfo['order_type'] == 4) {
  2368. $goon = Db::name("good_zixun")->where(["spuCode" => $einfo['good_code'], "is_del" => 0])->find();
  2369. } else {
  2370. $goon = Db::name('good_platform')->alias('a')->join('good b', 'b.spuCode=a.spuCode', 'left')->where(['a.skuCode' => $einfo['skuCode']])->find();
  2371. }
  2372. if ($goon == false) {
  2373. return error_show(1003, "未找到商品数据");
  2374. } else {
  2375. $goon['exclusive'] = isset($goon['is_exclusive']) ? makeExcluse($goon['is_exclusive']) : "";
  2376. $unit = Db::name("unit")->where(["id" => $goon['good_unit']])->find();
  2377. $goon['unit'] = isset($unit['unit']) ? $unit['unit'] : '';
  2378. $spec = Db::name("good_spec")->where(["spuCode" => $goon['spuCode'], "is_del" => 0])->select()->toArray();
  2379. $speclist = [];
  2380. if (!empty($spec)) {
  2381. foreach ($spec as $value) {
  2382. $temp = [];
  2383. $temp['id'] = $value['id'];
  2384. $temp['spuCode'] = $value['spuCode'];
  2385. $temp['spec_id'] = $value['spec_id'];
  2386. $temp['spec_value_id'] = $value['spec_value_id'];
  2387. $temp['is_del'] = $value['is_del'];
  2388. $sp = Db::name("specs")->where(["id" => $value['spec_id']])->find();
  2389. $temp['spec_name'] = isset($sp["spec_name"]) ? $sp["spec_name"] : "";
  2390. $spv = Db::name("spec_value")->where(["id" => $value['spec_value_id']])->find();
  2391. $temp['spec_value'] = isset($spv["spec_value"]) ? $spv["spec_value"] : "";
  2392. $speclist[] = $temp;
  2393. }
  2394. }
  2395. $goon["speclist"] = empty($speclist) ? [] : $speclist;
  2396. $proof = Db::name("good_proof")->where(["spuCode" => $goon['spuCode'], "is_del" => 0])->order("updatetime desc")->field("id,proof_type,proof_url")->find();
  2397. $goon['proof'] = isset($proof) && $proof != false ? $proof : [];
  2398. $goon['origin_place_cn'] = "";
  2399. $goon['delivery_place_cn'] = "";
  2400. if (isset($goon['delivery_place']) && $goon['delivery_place'] !== "") {
  2401. $place = ["provice_code" => "", "city_code" => "", "area_code" => ""];
  2402. list($place['provice_code'], $place['city_code'], $place['area_code']) = explode(",", $goon['delivery_place']);
  2403. $goon['delivery_place_cn'] = GetAddr(json_encode($place));
  2404. }
  2405. if (isset($goon['delivery_place']) && $goon['origin_place'] !== "") {
  2406. $place = ["provice_code" => "", "city_code" => "", "area_code" => ""];
  2407. list($place['provice_code'], $place['city_code'], $place['area_code']) = explode(",", $goon['origin_place']);
  2408. $goon['origin_place_cn'] = GetAddr(json_encode($place));
  2409. }
  2410. if ($goon['brand_id'] != 0) {
  2411. $brand = Db::name("brand")->where(["id" => $goon['brand_id']])->find();
  2412. $goon["brand_name"] = isset($brand['brand_name']) ? $brand['brand_name'] : "";
  2413. } else {
  2414. $goon["brand_name"] = "";
  2415. $goon["brand_id"] = "";
  2416. }
  2417. $supplier = Db::name("supplier")->where(["code" => $goon['supplierNo']])->find();
  2418. $goon['supplierName'] = isset($supplier['name']) ? $supplier['name'] : "";
  2419. $goon['noble_name'] = isset($goon['noble_metal']) && $goon['noble_metal'] != 0 ? $this->noble[$goon['noble_metal']] : "";
  2420. if (isset($goon['companyNo']) && $goon['companyNo'] != "") {
  2421. $company = Db::name("business")->where(["companyNo" => $goon['companyNo']])->find();
  2422. }
  2423. $goon['company'] = isset($company['company']) ? $company['company'] : "";
  2424. }
  2425. $int = isset($goon['cat_id']) && $goon['cat_id'] != 0 ? made($goon['cat_id']) : [];
  2426. $in = Db::name('customer_info')->where(['companyNo' => $einfo['customer_code']])->field('companyName')->find();
  2427. $einfo['supplierName'] = '';
  2428. if ($einfo['supplierNo'] != "") {
  2429. $supplier = Db::name("business")->where(["companyNo" => $einfo['supplierNo']])->find();
  2430. $einfo['supplierName'] = isset($supplier['company']) ? $supplier['company'] : "";
  2431. }
  2432. $addr_sum = Db::name('order_addr')->where(['orderCode' => $einfo['orderCode'],"is_del"=>0])->sum('receipt_quantity');
  2433. $einfo['addr_sum']=$addr_sum;
  2434. // $fo = Db::name('order_addr')->alias("a")->leftJoin("order_out b", "a.id=b.addrid and b.is_del=0")
  2435. // ->where(['a.orderCode' => $einfo['orderCode'], 'a.is_del' => 0])->field("a.*,b.post_name,b.post_code,
  2436. // b.post_fee,b.sendtime,b.send_num,b.check_num,b.error_num,b.wsm_code,b.order_type,b.status as send_status,b.outCode")
  2437. // ->select();
  2438. $addrs = [];
  2439. // if (!empty($fo)) {
  2440. // foreach ($fo as $value) {
  2441. // $value['addr_info'] = "";
  2442. // $value['send_num'] = 0;
  2443. // if ($value['addr_code'] != "" && !empty($value['addr_code'])) {
  2444. // $place = ["provice_code" => "", "city_code" => "", "area_code" => ""];
  2445. // list($place['provice_code'], $place['city_code'], $place['area_code']) = explode(",", $value['addr_code']);
  2446. // $addr = GetAddr(json_encode($place));
  2447. // $value['addr_info'] = $addr;
  2448. // }
  2449. // $value['wsm_name'] = "";
  2450. // if (isset($value['wsm_code']) && $value['wsm_code'] != "") {
  2451. // $wsmcode = Db::name("warehouse_info")->where(["wsm_code" => $value['wsm_code']])->find();
  2452. // $value['wsm_name'] = isset($wsmcode['name']) ? $wsmcode['name'] : "";
  2453. // }
  2454. // $value['sendtime'] = $value['send_status'] < 2 ? '' : $value['sendtime'];
  2455. // $addrs[] = $value;
  2456. // }
  2457. // }
  2458. $einfo['useage'] = "";
  2459. if ($einfo['use_order'] != 0) {
  2460. $use = Db::name("order_use")->where(["id" => $einfo['use_order']])->find();
  2461. $einfo['useage'] = isset($use['order_use']) ? $use['order_use'] : "";
  2462. } else {
  2463. $einfo['use_order'] = '';
  2464. }
  2465. $einfo['platform_name'] = '';
  2466. if ($einfo['platform_id'] != 0) {
  2467. $plat = Db::name("platform")->where(['id' => $einfo['platform_id']])->find();
  2468. $einfo['platform_name'] = isset($plat['platform_name']) ? $plat['platform_name'] : "";
  2469. }
  2470. $einfo['companyName'] = isset($in['companyName']) ? $in['companyName'] : "";
  2471. $einfo['addrs'] = $addrs;
  2472. $einfo['can'] = $int;
  2473. $einfo['goodinfo'] = $goon;
  2474. $einfo['good_num'] -= $einfo['th_num'];
  2475. $einfo['send_num'] -= $einfo['th_num'];
  2476. $einfo['total_price'] = round($einfo['total_price'] - $einfo['th_fee'], 2);
  2477. //处理凭证
  2478. if ($einfo['order_type'] == 1 || $einfo['order_type'] == 2) {
  2479. $proof = Db::name('good_proof')
  2480. ->field('id,proof_type,proof_url')
  2481. ->where(['id' => $einfo['proof_id'], 'is_del' => 0])
  2482. ->find();
  2483. $einfo['proof_type'] = isset($proof['proof_type']) ? $proof['proof_type'] : '';
  2484. $einfo['proof_url'] = isset($proof['proof_url']) ? $proof['proof_url'] : '';
  2485. } elseif ($einfo['order_type'] == 3) {
  2486. $einfo['proof_type'] = isset($goon['proof_type']) ? $goon['proof_type'] : '';
  2487. $einfo['proof_url'] = isset($goon['proof_url']) ? $goon['proof_url'] : '';
  2488. } else {
  2489. $einfo['proof_type'] = '';
  2490. $einfo['proof_url'] = '';
  2491. }
  2492. if (empty($einfo)) {
  2493. return error_show(1002, "未找到销售订单数据");
  2494. } else {
  2495. return app_show(0, "获取成功", $einfo);
  2496. }
  2497. }
  2498. public function del()
  2499. {
  2500. $id = isset($this->post['id']) && $this->post['id'] !== "" ? intval($this->post['id']) : "";
  2501. if ($id === "") {
  2502. return error_show(1002, "参数id不能为空");
  2503. }
  2504. $ed = Db::name('sale')->where(['id' => $id, 'is_del' => 0])->find();
  2505. if (empty($ed)) {
  2506. return error_show(1002, "未找到销售订单数据");
  2507. }
  2508. $str = Db::name('sale')->update(['id' => $id, 'is_del' => 1, 'updatetime' => date("Y-m-d H:i:s")]);
  2509. if ($str) {
  2510. $stc = ["order_code" => $id, "status" => $ed['status'], "action_remark" => '', "action_type" => "delete"];
  2511. ActionLog::logAdd($this->post['token'], $stc, "XSQRD", $ed['status'], ['id' => $id, 'is_del' => 1, 'updatetime' => date("Y-m-d H:i:s")]);
  2512. $order = ["order_type" => 'XSQRD', "order_code" => $ed['orderCode'], "order_id" => $id, "order_status" => $ed['status'],'holder_id' => $ed['apply_id']
  2513. ];
  2514. ProcessOrder::workdel($order);
  2515. return error_show(0, "删除成功");
  2516. } else {
  2517. return error_show(1002, "删除失败");
  2518. }
  2519. }
  2520. //废弃接口
  2521. public function status()
  2522. {
  2523. $token = isset($this->post['token']) && $this->post['token'] !== "" ? trim($this->post['token']) : "";
  2524. $id = isset($this->post['id']) && $this->post['id'] !== "" ? intval($this->post['id']) : "";
  2525. if ($id == "") {
  2526. return error_show(1002, "参数id不能为空");
  2527. }
  2528. $status = isset($this->post['status']) && $this->post['status'] !== "" ? intval($this->post['status']) : "";
  2529. if ($status == "") {
  2530. return error_show(1002, "订单状态不能为空");
  2531. }
  2532. $dio = Db::name('sale')->where(['id' => $id, 'is_del' => 0])->find();
  2533. if (empty($dio)) {
  2534. return error_show(1002, "销售单信息未找到");
  2535. }
  2536. if ($status == 1 && $dio['order_type'] == 2) {
  2537. $zxinfo = Db::name("consult")->where(["zxNo" => $dio['zxNo'], "is_del" => 0])->find();
  2538. if ($zxinfo == false) {
  2539. return error_show(1004, "未找到咨询单数据");
  2540. }
  2541. $gold['price'] = 0;
  2542. if ($zxinfo['zx_type'] == 2) {
  2543. if ($zxinfo['metals'] == "") {
  2544. return error_show(1004, "未找到咨询单贵金属类型数据");
  2545. }
  2546. $metals = $zxinfo['metals'] == '18K' ? 1 : ($zxinfo['metals'] == '24K' ? 2 : 3);
  2547. $gold = Db::name("gold_price")->where(["type" => $metals])->order("addtime desc")->find();
  2548. if (empty($gold)) {
  2549. return error_show(1004, "未找到咨询单贵金属类型数据");
  2550. }
  2551. $dio['gold_price'] = $gold['price'];
  2552. }
  2553. $wsm = Db::name("warehouse_info")->where(["supplierNo" => $zxinfo['gysNo'], "wsm_type" => 2])->find();
  2554. if (empty($wsm)) {
  2555. return error_show(1002, "供应商仓库未找到");
  2556. }
  2557. }
  2558. // $apply_id = GetUserInfo($token);
  2559. // if (empty($apply_id) || $apply_id['code'] != 0) {
  2560. // return error_show(1002, "申请人数据不存在");
  2561. // }
  2562. $rm = $this->uid;
  2563. $ri = $this->uname;
  2564. Db::startTrans();
  2565. try {
  2566. $vmp = $dio['status'];
  2567. $dio['status'] = $status;
  2568. $dio['updatetime'] = date("Y-m-d H:i:s");
  2569. $st = Db::name('sale')->save($dio);
  2570. if ($st) {
  2571. $stn = ["order_code" => $dio['orderCode'], "status" => $vmp, "action_remark" => '', "action_type" => "status"];
  2572. ActionLog::logAdd($this->post['token'], $stn, $dio['order_type'] == 2 ? "ZXQRD" : "XSQRD", $dio['status'], $dio);
  2573. $order = ["order_type" => "XSQRD", "order_code" => $dio['orderCode'], "order_id" => $id, "order_status" => $dio['status'], "before_status" => 1,'holder_id' => $dio['apply_id']];
  2574. ProcessOrder::AddProcess($this->post['token'], $order);
  2575. if ($status == 3 && $dio['order_type'] == 1) {
  2576. $dn = Db::name('sale_info')->where(['orderCode' => $st['orderCode']])->select();
  2577. foreach ($dn as $value) {
  2578. $dm = Db::name('good_stock')->where(['wsm_code' => $value['wsm_code'], 'good_type_code' => $st['good_code']])->find();
  2579. if ($dm == "") {
  2580. Db::rollback();
  2581. return error_show(1003, "未找到商品数据");
  2582. }
  2583. if ($value['num'] > $dm['usable_stock']) {
  2584. Db::rollback();
  2585. return error_show(1002, "超出库存数量");
  2586. }
  2587. $dm['usable_stock'] -= $value['num'];
  2588. $dm['wait_out_stock'] += $value['num'];
  2589. $send = Db::name("order_out")->where(["wsm_code" => $value['wsm_code'], "is_del" => 0])->sum("send_num");
  2590. $value['send_num'] = $send ?? 0;
  2591. $value['wsend_num'] = $value['num'] - $value['send_num'];
  2592. $Db = Db::name('good_stock')->update($dm);
  2593. $Db['updatetime'] = date('Y-m-d H:i:s');
  2594. if ($Db == false) {
  2595. Db::rollback();
  2596. return error_show(1002, "状态更新失败");
  2597. }
  2598. }
  2599. }
  2600. if ($status == 1 && $dio['order_type'] == 2) {
  2601. $cgd = makeNo("CG");
  2602. $clll = [
  2603. "cgdNo" => $cgd,
  2604. "bkcode" => $dio['orderCode'],
  2605. "wsm_code" => $wsm['wsm_code'],
  2606. "cgder_id" => Db::name('depart_user')->where('nickname', $zxinfo['saler'])->value('uid') ?? 0,//重名以及多个账号的话…………
  2607. "cgder" => $zxinfo['saler'],
  2608. "good_code" => "GD-" . $zxinfo['cpNo'],
  2609. "good_name" => $zxinfo['cpName'],
  2610. "good_type_code" => $zxinfo['cpNo'],
  2611. "good_num" => $dio['good_num'],
  2612. "good_price" => $zxinfo['total_fee'],
  2613. "total_fee" => round($zxinfo['total_fee'] * $dio['good_num'], 2),
  2614. "pakge_fee" => $zxinfo['package_fee'],
  2615. "cert_fee" => $zxinfo['cert_fee'],
  2616. "open_fee" => $zxinfo['open_fee'],
  2617. "delivery_fee" => $zxinfo['delivery_fee'],
  2618. "mark_fee" => $zxinfo['mark_fee'],
  2619. "teach_fee" => $zxinfo['cost_fee'],
  2620. "demo_fee" => $zxinfo['demo_fee'],
  2621. "nake_fee" => $zxinfo['bare_fee'],
  2622. "weight" => isset($zxinfo['weight']) ? $zxinfo['weight'] : 0,
  2623. "supplierNo" => $zxinfo['gysNo'],
  2624. "supplier_name" => $zxinfo['gysname'],
  2625. "gold_price" => $gold['price'],
  2626. "send_num" => 0,
  2627. "wsend_num" => $dio['good_num'],
  2628. "remark" => '',
  2629. "lasttime" => date("Y-m-d H:i:s"),
  2630. "is_del" => 0,
  2631. "status" => $dio['send_type'] == 1 ? 3 : 0,
  2632. "order_type" => 2,
  2633. "order_source" => 3,//3项目,废弃接口???
  2634. "addtime" => date("Y-m-d H:i:s"),
  2635. "updatetime" => date("Y-m-d H:i:s")
  2636. ];
  2637. $cgin = Db::name("purchease_order")->insert($clll);
  2638. // var_dump(Db::name("purchease_order")->getLastSql(),$clll);
  2639. if ($cgin == false) {
  2640. $stb = ["order_code" => $cgd, "status" => $clll['status'], "action_remark" => '', "action_type" => "create"];
  2641. ActionLog::logAdd($this->post['token'], $stb, "xsd", $clll['status'], $stb);
  2642. Db::rollback();
  2643. return error_show(1002, "咨询采购单创建商品失败");
  2644. }
  2645. if ($dio['send_type'] == 1) {
  2646. $addr = Db::name('order_addr')->where(["orderCode" => $dio['orderCode'], 'is_del' => 0])->select();
  2647. $i = 1;
  2648. foreach ($addr as $value) {
  2649. $outCode = makeNo("DF");
  2650. //改变编码规则,将原来的outCode后两位换成序列号
  2651. //str_pad字符串填充
  2652. $outCode = substr($outCode, 0, -2) . str_pad($i, 2, '0', STR_PAD_LEFT);
  2653. $i++;
  2654. $data = [
  2655. "wsm_code" => $wsm['wsm_code'],
  2656. "orderCode" => $dio['orderCode'],
  2657. "outCode" => $outCode,
  2658. "order_type" => $dio['order_type'],
  2659. "apply_id" => $rm,
  2660. "apply_name" => $ri,
  2661. "addrid" => $value['id'],
  2662. "post_name" => '',
  2663. "post_code" => '',
  2664. "post_fee" => '',
  2665. "sendtime" => date("Y-m-d H:i:s"),
  2666. "send_num" => $value['receipt_quantity'],
  2667. "check_num" => 0,
  2668. "error_num" => 0,
  2669. "status" => 0,
  2670. "addtime" => date("Y-m-d H:i:s"),
  2671. "updatetime" => date("Y-m-d H:i:s")
  2672. ];
  2673. $datainfo = Db::name('order_out')->insertGetId($data);
  2674. if (!$datainfo) {
  2675. $sti = ["order_code" => $dio['orderCode'], "status" => 0, "action_remark" => '', "action_type" => "create"];
  2676. ActionLog::logAdd($this->post['token'], $sti, "xsd", 0, $sti);
  2677. Db::rollback();
  2678. return error_show(1003, "创建失败");
  2679. } else {
  2680. //修改状态,添加待办
  2681. ActionLog::logAdd(['id'=>$rm,'nickname'=>$ri], [
  2682. "order_code" => $outCode,//出库单号
  2683. "status" => 0,//这里的status是之前的值
  2684. "action_remark" => '',//备注
  2685. "action_type" => "create"//新建create,编辑edit,更改状态status
  2686. ], "CKD", 0, $data);
  2687. ProcessOrder::AddProcess(['id'=>$rm,'nickname'=>$ri], [
  2688. "order_type" => 'CKD',
  2689. "order_code" => $outCode,//出库单号
  2690. "order_id" => $datainfo,
  2691. "order_status" => 0,
  2692. "before_status" => 0,
  2693. 'holder_id'=>$data['apply_id'],
  2694. ]);
  2695. }
  2696. }
  2697. $wsm_in_code = makeNo("CF");
  2698. $orin = [
  2699. "wsm_in_code" => $wsm_in_code,
  2700. "cgdNo" => $cgd,
  2701. "wsm_code" => $wsm['wsm_code'],
  2702. "wsm_reaper" => "",
  2703. "send_num" => $dio['good_num'],
  2704. "post_company" => '',
  2705. "post_code" => '',
  2706. "post_fee" => '',
  2707. "sendtime" => date("Y-m-d H:i:s"),
  2708. "apply_id" => $rm,
  2709. "apply_name" => $ri,
  2710. "wait_num" => 0,
  2711. "status" => 4,
  2712. "addtime" => date("Y-m-d H:i:s"),
  2713. "updatetime" => date("Y-m-d H:i:s")
  2714. ];
  2715. $win = Db::name("purchease_in")->insert($orin);
  2716. if (!$win) {
  2717. $stv = ["order_code" => $wsm_in_code, "status" => 4, "action_remark" => '', "action_type" => "create"];
  2718. ActionLog::logAdd($this->post['token'], $stv, "xsd", 4, $stv);
  2719. Db::rollback();
  2720. return error_show(1003, "创建失败");
  2721. }
  2722. //维护台账
  2723. Db::execute("UPDATE `wsm_standing_book` SET `wsm_in_code`=CONCAT(IFNULL(`wsm_in_code`,''),',{$wsm_in_code}'),`updatetime`='" . date('Y-m-d H:i:s') . "' WHERE `cgdNo`='{$cgd}'");
  2724. $good = Db::name("good_stock")->where(["wsm_code" => $wsm['wsm_code'], "good_type_code" => $zxinfo['cpNo'], "is_del" => 0])->find();
  2725. if (empty($good)) {
  2726. $good = [
  2727. "good_type_code" => $zxinfo['cpNo'],
  2728. "wsm_code" => $wsm['wsm_code'],
  2729. "usable_stock" => 0,
  2730. "wait_out_stock" => 0,
  2731. "total_stock" => 0,
  2732. "addtime" => date("Y-m-d H:i:s"),
  2733. "updatetime" => date("Y-m-d H:i:s"),
  2734. ];
  2735. }
  2736. $good['wait_out_stock'] += $dio['good_num'];
  2737. $good['total_stock'] = $good['usable_stock'] + $good['wait_out_stock'];
  2738. $good['updatetime'] = date("Y-m-d H:i:s");
  2739. $upd = Db::name("good_stock")->save($good);
  2740. if (!$upd) {
  2741. $ste = ["order_code" => $zxinfo['cpNo'], "status" => 0, "action_remark" => '', "action_type" => "create"];
  2742. ActionLog::logAdd($this->post['token'], $ste, "xsd", 0, $ste);
  2743. Db::rollback();
  2744. return error_show(1003, "创建失败");
  2745. }
  2746. }
  2747. }
  2748. }
  2749. Db::commit();
  2750. return error_show(0, "订单状态更新成功");
  2751. } catch (Exception $e) {
  2752. Db::rollback();
  2753. return error_show(1005, $e->getMessage());
  2754. }
  2755. }
  2756. public function fee()
  2757. {
  2758. $id = isset($this->post['id']) && $this->post['id'] !== "" ? trim($this->post['id']) : "";
  2759. if ($id == "") {
  2760. return error_show(1002, "参数id不能为空");
  2761. }
  2762. $etid = Db::name("sale")->where(["id" => $id, "is_del" => 0])->find();
  2763. if (empty($etid)) {
  2764. return error_show(1002, "未找到数据");
  2765. }
  2766. $vr = isset($this->post['order_addr']) && $this->post['order_addr'] !== "" ? $this->post['order_addr'] : "";
  2767. if ($vr == "") {
  2768. return error_show(1002, "参数order_addr不能为空");
  2769. }
  2770. Db::startTrans();
  2771. try {
  2772. $data = [
  2773. "id" => $id,
  2774. "status" => 2,
  2775. "is_del" => 0,
  2776. "updatetime" => date("Y-m-d H:i:s")
  2777. ];
  2778. $datainfo = Db::name('sale')->where(['id' => $id, 'is_del' => 0])->save($data);
  2779. if ($datainfo) {
  2780. $stx = ["order_code" => $etid['orderCode'], "status" => $etid['status'], "action_remark" => '', "action_type" => "edit"];
  2781. ActionLog::logAdd($this->post['token'], $stx, "XSQRD", 2, $data);
  2782. $order = ["order_type" => "XSQRD", "order_code" => $etid['orderCode'], "order_id" => $id, "order_status" => $data['status'], "before_status" => 0,'holder_id'=>$etid['apply_id']];
  2783. ProcessOrder::AddProcess($this->post['token'], $order);
  2784. foreach ($vr as $value) {
  2785. $tm = [];
  2786. $tm['id'] = $value['id'];
  2787. $tm['orderCode'] = $etid['orderCode'];
  2788. $tm['post_fee'] = $value['post_fee'];
  2789. $tm['updatetime'] = date("Y-m-d H:i:s");
  2790. $dn = Db::name('order_addr')->save($tm);
  2791. if ($dn == false) {
  2792. Db::rollback();
  2793. return error_show(1002, "更新失败");
  2794. }
  2795. }
  2796. Db::commit();
  2797. return error_show(0, "更新成功");
  2798. }
  2799. Db::rollback();
  2800. return error_show(1003, "更新失败");
  2801. } catch (Exception $e) {
  2802. Db::rollback();
  2803. return error_show(1005, $e->getMessage());
  2804. }
  2805. }
  2806. // 废弃
  2807. public function out()
  2808. {
  2809. $token = isset($this->post['token']) && $this->post['token'] !== "" ? trim($this->post['token']) : "";
  2810. $outCode = makeNo("DF");
  2811. $orderCode = isset($this->post['orderCode']) && $this->post['orderCode'] !== "" ? trim($this->post['orderCode']) : "";
  2812. if ($orderCode == "") {
  2813. return error_show(1002, "参数orderCoder不能为空");
  2814. }
  2815. $der = Db::name('sale')->where(['orderCode' => $orderCode])->find();
  2816. if ($der == "") {
  2817. return error_show(1002, "未找到出库订单单号");
  2818. }
  2819. // $wsm_code = isset($this->post['wsm_code']) && $this->post['wsm_code'] !== "" ? trim($this->post['wsm_code']) : "";
  2820. // if ($wsm_code == "") {
  2821. // return error_show(1002, "参数wsm_code不能为空");
  2822. // }
  2823. // $wsm = Db::name('sale_info')->where(['wsm_code' => $wsm_code, 'orderCode' => $der['orderCode']])->find();
  2824. // if ($wsm == "") {
  2825. // return error_show(1002, "未找到仓库编码");
  2826. // }
  2827. $post_name = isset($this->post['post_name']) && $this->post['post_name'] !== "" ? trim($this->post['post_name']) : "";
  2828. if ($post_name == "") {
  2829. return error_show(1002, "物流公司不能为空");
  2830. }
  2831. $post_code = isset($this->post['post_code']) && $this->post['post_code'] !== "" ? trim($this->post['post_code']) : "";
  2832. if ($post_code == "") {
  2833. return error_show(1002, "物流单号不能为空");
  2834. }
  2835. $post_fee = isset($this->post['post_fee']) && $this->post['post_fee'] !== "" ? intval($this->post['post_fee']) : "";
  2836. if ($post_fee == "") {
  2837. return error_show(1002, "物流费不能为空");
  2838. }
  2839. $send_num = isset($this->post['send_num']) && $this->post['send_num'] !== "" ? $this->post['send_num'] : "";
  2840. if ($send_num == "") {
  2841. return error_show(1002, "发货数量不能为空");
  2842. }
  2843. if ($send_num > $der['wsend_num']) {
  2844. return error_show(1002, "超出可发货数量");
  2845. }
  2846. // $apply_id = GetUserInfo($token);
  2847. // if (empty($apply_id) || $apply_id['code'] != 0) {
  2848. // return error_show(1002, "申请人数据不存在");
  2849. // }
  2850. $rm = $this->uid;
  2851. $ri = $this->uname;
  2852. $addrid = isset($this->post['addrid']) && $this->post['addrid'] !== "" ? intval($this->post['addrid']) : "";
  2853. $dr = Db::name('order_addr')->where(['id' => $addrid, 'is_del' => 0])->find();
  2854. if (empty($dr)) {
  2855. return error_show(1003, "收货人信息未找到");
  2856. }
  2857. if ($dr['orderCode'] !== $orderCode) {
  2858. return error_show(1002, "订单code不存在");
  2859. }
  2860. $sendtime = isset($this->post['sendtime']) && $this->post['sendtime'] !== "" ? $this->post['sendtime'] : date("Y-m-d H:i:s");
  2861. // $check_num = isset($this->post['check_num']) && $this->post['check_num'] !=="" ? $this->post['check_num'] :"";
  2862. // $error_num = isset($this->post['error_num']) && $this->post['error_num'] !=="" ? $this->post['error_num'] :"";
  2863. $status = isset($this->post['status']) && $this->post['status'] !== "" ? $this->post['status'] : "1";
  2864. //$order_type = isset($this->post['order_type']) && $this->post['order_type'] !=="" ? $this->post['order_type'] :"1";
  2865. //$dn=Db::name('sale_info')->where(['wsm_code'=>$outCode])->find();
  2866. Db::startTrans();
  2867. try {
  2868. $data = [
  2869. "wsm_code" => "",
  2870. "orderCode" => $orderCode,
  2871. "outCode" => $outCode,
  2872. "order_type" => $der['order_type'],
  2873. "apply_id" => $rm,
  2874. "apply_name" => $ri,
  2875. "addrid" => $dr['id'],
  2876. "post_name" => $post_name,
  2877. "post_code" => $post_code,
  2878. "post_fee" => $post_fee,
  2879. "sendtime" => $sendtime,
  2880. "send_num" => $send_num,
  2881. "check_num" => 0,
  2882. "error_num" => 0,
  2883. "status" => $status,
  2884. "addtime" => date("Y-m-d H:i:s"),
  2885. "updatetime" => date("Y-m-d H:i:s")
  2886. ];
  2887. $datainfo = Db::name('order_out')->insert($data, true);
  2888. if ($datainfo > 0) {
  2889. $stx = ["order_code" => $outCode, "status" => $status, "action_remark" => '', "action_type" => "create"];
  2890. ActionLog::logAdd(['id'=>$rm,'nickname'=>$ri], $stx, $der['order_type'] == 1 ? "CKD" : 'ZXCKD', $status, $data);
  2891. //是否库存品,待办数据推送到的人有区别,
  2892. //库存品——>推到库管,非库存品——>推送供应商负责人
  2893. $order=[];
  2894. if($data['status'] == 1){
  2895. if($der['is_stock'] == 1){
  2896. //库存品,推给库管和库管-张凯旋
  2897. $roleid = config('app.wsm_cgder_role');
  2898. $uids = Db::name('user_role')
  2899. ->where('is_del', 0)
  2900. ->whereIn('roleid', $roleid)
  2901. ->column('uid');
  2902. $order = ["order_type" => "CKD", "order_code" => $outCode, "order_id" => $datainfo, "order_status" => $data['status'], "before_status" => 0, 'handle_user_list' => implode(',', $uids)];
  2903. }else{
  2904. //推给供应商负责人
  2905. $supplier = Db::name('supplier')
  2906. ->alias('a')
  2907. ->field('a.id,a.person,a.personid')
  2908. ->leftJoin('purchease_order b', 'b.is_del=0 AND b.supplierNo=a.code')
  2909. ->leftJoin('order_num c', 'c.cgdNo=b.cgdNo')
  2910. ->where('c.orderCode', $orderCode)
  2911. ->findOrEmpty();
  2912. $order = ["order_type" => "CKD", "order_code" => $outCode, "order_id" => $datainfo, "order_status" => $data['status'], "before_status" => 0, 'holder_id' => $data['apply_id'], 'wait_id' => $supplier['personid'] ?? 0, 'wait_name' => $supplier['person'] ?? ''];
  2913. }
  2914. }
  2915. if(empty($order)) $order = ["order_type" => "CKD", "order_code" => $outCode, "order_id" => $datainfo, "order_status" => $data['status'], "before_status" => 0, 'holder_id' => $data['apply_id']];
  2916. ProcessOrder::AddProcess(['id'=>$rm,'nickname'=>$ri], $order);
  2917. if ($status == 1) {
  2918. $item = $der['status'];
  2919. $der['send_num'] += $send_num;
  2920. $der['wsend_num'] -= $send_num;//($der['send_num'])?$der['wsend_num'] =="" ? $der['send']
  2921. $der['send_status'] = $der['send_num'] == 0 ? 1 : $der['wsend_num'] == 0 ? 3 : 2;
  2922. $der['status'] = $der['send_num'] == 0 ? 3 : $der['wsend_num'] == 0 ? 5 : 4;
  2923. $der['updatetime'] = date("Y-m-d H:i:s");
  2924. $si = Db::name('sale')->save($der);
  2925. if ($si == false) {
  2926. Db::rollback();
  2927. return error_show(1003, "更新失败");
  2928. }
  2929. $stx = ["order_code" => $orderCode, "status" => $item, "action_remark" => '', "action_type" => "edit"];
  2930. ActionLog::logAdd(['id'=>$rm,'nickname'=>$ri], $stx, "XSQRD", $der['status'], $der);
  2931. $order = ["order_type" => "XSQRD", "order_code" => $orderCode, "order_id" => $der['id'], "order_status" => $data['status'], "before_status" => 0,'holder_id'=>$der['apply_id']];
  2932. ProcessOrder::AddProcess(['id'=>$rm,'nickname'=>$ri], $order);
  2933. }
  2934. Db::commit();
  2935. return error_show(0, "创建成功");
  2936. } else {
  2937. Db::rollback();
  2938. return error_show(1003, "创建失败");
  2939. }
  2940. } catch (Exception $e) {
  2941. Db::rollback();
  2942. return error_show(1005, $e->getMessage());
  2943. }
  2944. }
  2945. // 废弃
  2946. public function customer()
  2947. {
  2948. $outCode = isset($this->post['outCode']) && $this->post['outCode'] !== "" ? trim($this->post['outCode']) : "";
  2949. if (empty($outCode)) {
  2950. return error_show(1002, "销售订单编号不能为空");
  2951. }
  2952. $codeinfo = Db::name('order_out')->where(['outCode' => $outCode])->find();
  2953. if ($codeinfo == "") {
  2954. return error_show(1003, "未找到订单数据");
  2955. }
  2956. // $orderCode = isset($this->post['orderCode']) && $this->post['orderCode'] !=="" ? trim($this->post['orderCode']) :"";
  2957. // if($orderCode==""){
  2958. // return error_show(1002,"参数orderCoder不能为空");
  2959. // }
  2960. $dr = Db::name('sale')->where(['orderCode' => $codeinfo['orderCode']])->find();
  2961. if ($dr == "") {
  2962. return error_show(1002, "未找到销售订单");
  2963. }
  2964. $status = isset($this->post['status']) && $this->post['status'] !== "" ? $this->post['status'] : "";
  2965. if ($status == "") {
  2966. return error_show(10002, "状态不能为空");
  2967. }
  2968. Db::startTrans();
  2969. try {
  2970. $time = $codeinfo['status'];
  2971. $codeinfo['status'] = $status;
  2972. $codeinfo['updatetime'] = date("Y-m-d H:i:s");
  2973. $cust = Db::name('order_out')->save($codeinfo);
  2974. if ($cust) {
  2975. $stx = ["order_code" => $outCode, "status" => $time, "action_remark" => '', "action_type" => "status"];
  2976. ActionLog::logAdd(['id'=>$this->uid,'nickname'=>$this->uname], $stx, "CKD", $codeinfo['status'], $codeinfo);
  2977. $order = [];
  2978. if ($status == 1) {
  2979. //推给供应商负责人
  2980. if ($dr['is_stock'] == 0) {
  2981. $supplier = Db::name('supplier')
  2982. ->alias('a')
  2983. ->field('a.id,a.person,a.personid')
  2984. ->leftJoin('purchease_order b', 'b.is_del=0 AND b.supplierNo=a.code')
  2985. ->leftJoin('order_num c', 'c.cgdNo=b.cgdNo')
  2986. ->where('c.orderCode', $codeinfo['orderCode'])
  2987. ->findOrEmpty();
  2988. $order = ["order_type" => "CKD", "order_code" => $outCode, "order_id" => $codeinfo['id'], "order_status" => $codeinfo['status'], "before_status" => 0, 'holder_id' => $codeinfo['apply_id'], 'wait_id' => $supplier['personid'] ?? 0, 'wait_name' => $supplier['person'] ?? ''];
  2989. } else{
  2990. $roleid = config('app.wsm_cgder_role');
  2991. $uids = Db::name('user_role')
  2992. ->where('is_del', 0)
  2993. ->whereIn('roleid', $roleid)
  2994. ->column('uid');
  2995. $order = ["order_type" => "CKD", "order_code" => $outCode, "order_id" => $codeinfo['id'], "order_status" => $codeinfo['status'], "before_status" => 0, 'handle_user_list' => implode(',', $uids)];
  2996. }
  2997. }
  2998. if (empty($order)) $order = ["order_type" => "CKD", "order_code" => $outCode, "order_id" => $codeinfo['id'], "order_status" => $codeinfo['status'], "before_status" => 0, 'holder_id' => $codeinfo['apply_id']];
  2999. ProcessOrder::AddProcess(['id'=>$this->uid,'nickname'=>$this->uname], $order);
  3000. if ($status == 1) {
  3001. $stokc = Db::name("good_stock")->where(['spuCode' => $codeinfo['spuCode'], "wsm_code" => $codeinfo['wsm_code'],
  3002. "is_del" => 0])->find();
  3003. if ($stokc == false) {
  3004. Db::rollback();
  3005. return error_show(1002, "未找库存到数据");
  3006. } else {
  3007. if ($codeinfo['send_num'] > $stokc['usable_stock']) {
  3008. Db::rollback();
  3009. return error_show(1002, "超出库存数量");
  3010. }
  3011. $stokc['wait_out_stock'] += $codeinfo['send_num'];
  3012. $stokc['usable_stock'] -= $codeinfo['send_num'];
  3013. $stokc['updatetime'] = date("Y-m-d H:i:s");
  3014. }
  3015. $stoc = Db::name("good_stock")->save($stokc);
  3016. if ($stoc == false) {
  3017. Db::rollback();
  3018. return error_show(1002, "库存更新失败");
  3019. }
  3020. $item = $dr['status'];
  3021. $dr['send_num'] += $codeinfo['send_num'];
  3022. $dr['wsend_num'] -= $codeinfo['send_num'];//($der['send_num'])?$der['wsend_num'] =="" ? $der['send']
  3023. $dr['send_status'] = $dr['send_num'] == 0 ? 1 : $dr['wsend_num'] == 0 ? 3 : 2;
  3024. $dr['status'] = $dr['send_num'] == 0 ? 3 : $dr['wsend_num'] == 0 ? 5 : 4;
  3025. $dr['updatetime'] = date("Y-m-d H:i:s");
  3026. $si = Db::name('sale')->save($dr);
  3027. if ($si == false) {
  3028. Db::rollback();
  3029. return error_show(1003, "更新失败");
  3030. }
  3031. $stx = ["order_code" => $dr['orderCode'], "status" => $item, "action_remark" => '', "action_type" => "edit"];
  3032. ActionLog::logAdd(['id'=>$this->uid,'nickname'=>$this->uname], $stx, $dr['order_type'] == 2 ? "ZXQRD" : "XSQRD", $dr['status'],$dr);
  3033. $order = ["order_type" => "XSQRD", "order_code" => $dr['orderCode'], "order_id" => $dr['id'], "order_status" => $dr['status'], "before_status" => 0, 'holder_id' => $dr['apply_id']];
  3034. ProcessOrder::AddProcess(['id'=>$this->uid,'nickname'=>$this->uname], $order);
  3035. //商品变动日志表,good_log_code字段存储销售订单编号
  3036. $good_data[] = ['good_log_code' => $outCode, "stock_id" => $stoc['id'], "type" => 1, 'stock' => $codeinfo['send_num'], "stock_name" => "wait_out_stock"];
  3037. $good_data[] = ['good_log_code' => $outCode, "stock_id" => $stoc['id'], "type" => 2, 'stock' => $codeinfo['send_num'], "stock_name" => "usable_stock"];
  3038. GoodLog::LogAdd(['id'=>$this->uid,'nickname'=>$this->uname], $good_data, 'CKD');
  3039. }
  3040. if ($status == 3) {
  3041. $var = Db::name('good_stock')->where(['wsm_code' => $codeinfo['wsm_code'], 'good_type_code' => $dr['good_code']])->find();
  3042. if ($var == false) {
  3043. Db::rollback();
  3044. return error_show(1002, "未找到商品数据");
  3045. }
  3046. if ($codeinfo['send_num'] > $var['intra_stock']) {
  3047. Db::rollback();
  3048. return error_show(1003, "超出在途库存数量");
  3049. }
  3050. $var['intra_stock'] -= $codeinfo['send_num'];
  3051. $var['updatetime'] = date("Y-m-d H:i:s");
  3052. $stre = Db::name('good_stock')->save($var);
  3053. //商品变动日志表,good_log_code字段存储销售订单编号
  3054. $good_data[] = ['good_log_code' => $outCode, "stock_id" => $var['id'], "type" => 2, 'stock' => $codeinfo['send_num'], "stock_name" => "intra_stock"];
  3055. GoodLog::LogAdd(['id'=>$this->uid,'nickname'=>$this->uname], $good_data, $codeinfo['order_type'] == 2 ? "ZXCKD" : "CKD");
  3056. if ($stre == false) {
  3057. Db::rollback();
  3058. return error_show(1002, "状态更新失败");
  3059. }
  3060. }
  3061. Db::commit();
  3062. return error_show(0, "出库订单更新成功");
  3063. } else {
  3064. Db::rollback();
  3065. return error_show(1003, "出库订单更新失败");
  3066. }
  3067. } catch (Exception $e) {
  3068. Db::rollback();
  3069. return error_show(1005, $e->getMessage());
  3070. }
  3071. }
  3072. public function difflist()
  3073. {
  3074. $page = isset($this->post['page']) && $this->post['page'] !== "" ? intval($this->post['page']) : "1";
  3075. $size = isset($this->post['size']) && $this->post['size'] !== "" ? intval($this->post['size']) : "10";
  3076. $where = [];
  3077. $cgdNo = isset($this->post['orderCode']) && $this->post['orderCode'] != "" ? trim($this->post['orderCode']) : "";
  3078. if ($cgdNo != "") {
  3079. $where[] = ['a.orderCode', "like", "%$cgdNo%"];
  3080. }
  3081. $diffNo = isset($this->post['diffCode']) && $this->post['diffCode'] != "" ? trim($this->post['diffCode']) : "";
  3082. if ($diffNo != "") {
  3083. $where[] = ['a.diffCode', "like", "%$diffNo%"];
  3084. }
  3085. $status = isset($this->post['status']) && $this->post['status'] !== "" ? intval($this->post['status']) : "";
  3086. if ($status !== "") {
  3087. $where[] = ['a.status', "=", $status];
  3088. }
  3089. $start = isset($this->post['start']) && $this->post['start'] !== "" ? $this->post['start'] : "";
  3090. if ($start != "") {
  3091. $where[] = ["a.addtime", '>=', $start];
  3092. }
  3093. $end = isset($this->post['end']) && $this->post['end'] !== "" ? $this->post['end'] : "";
  3094. if ($end != "") {
  3095. $where[] = ["a.addtime", '<=', $end];
  3096. }
  3097. $supplierNo = isset($this->post['supplierNo']) && $this->post['supplierNo'] !== "" ? trim($this->post['supplierNo']) : "";
  3098. if ($supplierNo != "") {
  3099. $where[] = ['c.supplierNo', "like", "%$supplierNo%"];
  3100. }
  3101. $companyNo = isset($this->post['companyNo']) && $this->post['companyNo'] !== "" ? trim($this->post['companyNo']) : "";
  3102. if ($companyNo != "") {
  3103. $where[] = ['c.customer_code', "like", "%$companyNo%"];
  3104. }
  3105. // $role=$this->checkRole();
  3106. // if(!empty($role['write'])){
  3107. // $where[]=["apply_id","in",$role['write']];
  3108. // }
  3109. // $role = $this->checkDataShare();
  3110. // if (!empty($role[DataGroupModel::$type_全部])) $where[] = ['c.apply_id', 'in', $role[DataGroupModel::$type_全部]];
  3111. $role = $this->checkDataShare();
  3112. $hand = resign_hand_user($this->uid,0);
  3113. if (!empty($role[DataGroupModel::$type_全部])) {
  3114. $arr= array_unique(array_merge($hand,$role[DataGroupModel::$type_全部]));
  3115. $where[] = ['c.apply_id', 'in',$arr];
  3116. }
  3117. // if(!empty($role['platform']) ){
  3118. // $where[]=["c.platform_id","in",$role['platform']];
  3119. // }
  3120. $count = Db::name('sale_diff')
  3121. ->alias('a')
  3122. ->join("sale c", "c.orderCode=a.orderCode", "left")
  3123. ->join("customer_info v", "v.companyNo=c.customer_code", "left")
  3124. ->where($where)->count();
  3125. $total = ceil($count / $size);
  3126. $page = $page >= $total ? intval($total) : $page;
  3127. $list = Db::name('sale_diff')
  3128. ->alias('a')
  3129. ->field("a.*,c.customer_code,v.companyName,c.skuCode,c.order_type,c.supplierNo,c.apply_id")
  3130. ->join("sale c", "c.orderCode=a.orderCode", "left")
  3131. ->join("customer_info v", "v.companyNo=c.customer_code", "left")
  3132. ->where($where)
  3133. ->page($page, $size)
  3134. ->order("a.addtime desc")
  3135. ->select()
  3136. ->toArray();
  3137. $data = [];
  3138. foreach ($list as $value) {
  3139. if ($value['order_type'] == 3||$value['order_type'] == 4) {
  3140. $goon = Db::name("good_zixun")->where(["spuCode" => $value['good_code'], "is_del" => 0])->find();
  3141. } else {
  3142. $goon = Db::name('good_platform')->alias('a')->join('good b', 'b.spuCode=a.spuCode', 'left')
  3143. ->where(['a.skuCode' => $value['skuCode']])->find();
  3144. }
  3145. $value['can'] = isset($goon['cat_id']) && $goon['cat_id'] != 0 ? made($goon['cat_id']) : [];
  3146. $wsm = Db::name("business")->where(['companyNo' => $value['supplierNo']])->find();
  3147. $value['supplierNo'] = isset($wsm['companyNo']) ? $wsm['companyNo'] : "";
  3148. $value['supplierName'] = isset($wsm['company']) ? $wsm['company'] : "";
  3149. //是否具有编辑权限
  3150. $value['is_allow_update'] = 0;
  3151. if (in_array($this->roleid, [1, 33]) || in_array($value['apply_id'], $role[DataGroupModel::$type_可编辑])) $value['is_allow_update'] = 1;
  3152. $data[] = $value;
  3153. }
  3154. return app_show(0, "获取成功", ['list' => $data, 'count' => $count]);
  3155. }
  3156. /**
  3157. * @return \think\response\Json|void
  3158. * @throws \think\db\exception\DataNotFoundException
  3159. * @throws \think\db\exception\DbException
  3160. * @throws \think\db\exception\ModelNotFoundException
  3161. */
  3162. //工差单审核
  3163. public function diffcheck()
  3164. {
  3165. $token = isset($this->post['token']) && $this->post['token'] !== "" ? trim($this->post['token']) : "";
  3166. $id = isset($this->post['id']) && $this->post['id'] !== "" ? intval($this->post['id']) : "";
  3167. if ($id === "") {
  3168. return error_show(1004, "参数id不能为空");
  3169. }
  3170. $info = Db::name("sale_diff")->where(["id" => $id])->find();
  3171. if (empty($info)) {
  3172. return error_show(1004, "订单数据未找到");
  3173. }
  3174. $sale = Db::name("sale")->where(["orderCode" => $info["orderCode"]])->find();
  3175. if ($sale == false) {
  3176. return error_show(1004, "订单数据未找到");
  3177. }
  3178. $cgd = Db::name("purchease_diff")->where(['id' => $info['cgd_diffid']])->find();
  3179. if ($cgd == false) {
  3180. return error_show(1004, "采购工差单数据未找到");
  3181. }
  3182. $is_act = isset($this->post['is_act']) && $this->post['is_act'] !== "" ? intval($this->post['is_act']) : "";
  3183. if ($is_act === '') {
  3184. return error_show(1004, "参数is_act不能为空");
  3185. }
  3186. $customer_remark = isset($this->post['customer_remark']) && $this->post['customer_remark'] !== "" ? trim($this->post['customer_remark']) : "";
  3187. if ($customer_remark === '') {
  3188. return error_show(1004, "参数customer_remark不能为空");
  3189. }
  3190. $status = isset($this->post['status']) && $this->post['status'] !== "" ? intval($this->post['status']) : "2";
  3191. $remark = isset($this->post['remark']) && $this->post['remark'] !== "" ? trim($this->post['remark']) : "";
  3192. $item = $info['status'];
  3193. $info['is_act'] = $is_act;
  3194. $info['customer_remark'] = $customer_remark;
  3195. $info['status'] = $status;
  3196. $info['remark'] = $remark;
  3197. $info['updatetime'] = date("Y-m-d H:i:s");
  3198. Db::startTrans();
  3199. try {
  3200. $up = Db::name("sale_diff")->save($info);
  3201. if ($up) {
  3202. $stx = ["order_code" => $info["orderCode"], "status" => $item, "action_remark" => '', "action_type" => "edit"];
  3203. ActionLog::logAdd(['id'=>$this->uid,'nickname'=>$this->uname], $stx, "XSGCD", $info['status'], $info);
  3204. $order = ["order_type" => "XSGCD", "order_code" => $info["orderCode"], "order_id" => $info['id'], "order_status" => $info['status'], "before_status" => $item,'holder_id'=>$sale['apply_id']];
  3205. ProcessOrder::AddProcess(['id'=>$this->uid,'nickname'=>$this->uname], $order);
  3206. $upda = [
  3207. "status" => $status,
  3208. "remark" => $remark,
  3209. "updatetime" => date("Y-m-d H:i:s"),
  3210. ];
  3211. $old_purchease_diff = Db::name("purchease_diff")
  3212. ->field('id,cgdNo,status')
  3213. ->where(["id" => $info['cgd_diffid']])
  3214. ->find();
  3215. $cgdup = Db::name("purchease_diff")->where(["id" => $info['cgd_diffid']])->save($upda);
  3216. if ($cgdup) {
  3217. if ($status == 2) {
  3218. if ($customer_remark == 1) {
  3219. $sale['diff_weight'] = $info['diff_weight'];
  3220. $sale['diff_fee'] = $info['diff_price'];
  3221. $sale['updatetime'] = date("Y-m-d H:i:s");
  3222. $sal = Db::name("sale")->save($sale);
  3223. if ($sal == false) {
  3224. Db::rollback();
  3225. return error_show(1003, "订单更新工差失败");
  3226. }
  3227. }
  3228. $cgdup = Db::name("purchease_order")->where(["cgdNo" => $cgd['cgdNo']])->save
  3229. (["diff_weight" => $cgd['diff_weight'], "diff_fee" => $cgd['diff_price'], "updatetime" => date("Y-m-d H:i:s")]);
  3230. if ($cgdup == false) {
  3231. Db::rollback();
  3232. return error_show(1003, "采购订单更新工差失败");
  3233. }
  3234. }
  3235. $a = ["order_code" => $old_purchease_diff["cgdNo"], "status" => $old_purchease_diff['status'], "action_remark" => '', "action_type" => "status"];
  3236. ActionLog::logAdd(['id' => $this->uid, 'nickname' => $this->uname], $a, "CGGCD", $upda['status'], $info);
  3237. $b = ["order_type" => "CGGCD", "order_code" => $old_purchease_diff["cgdNo"], "order_id" => $old_purchease_diff['id'], "order_status" => $upda['status'], "before_status" => $old_purchease_diff['status'], 'holder_id' => $cgd['apply_id']];
  3238. ProcessOrder::AddProcess(['id' => $this->uid, 'nickname' => $this->uname], $b);
  3239. Db::commit();
  3240. return app_show(0, "更新成功");
  3241. }
  3242. }
  3243. Db::rollback();
  3244. return error_show(1003, "更新失败");
  3245. } catch (\Exception $e) {
  3246. Db::rollback();
  3247. return error_show(1003, $e->getMessage());
  3248. }
  3249. }
  3250. /**
  3251. * @return \think\response\Json|void
  3252. * @throws \think\db\exception\DataNotFoundException
  3253. * @throws \think\db\exception\DbException
  3254. * @throws \think\db\exception\ModelNotFoundException
  3255. */
  3256. public function diffstatus()
  3257. {
  3258. $token = isset($this->post['token']) && $this->post['token'] !== "" ? trim($this->post['token']) : "";
  3259. $id = isset($this->post['id']) && $this->post['id'] !== "" ? intval($this->post['id']) : "";
  3260. if ($id === "") {
  3261. return error_show(1004, "参数id不能为空");
  3262. }
  3263. $info = Db::name("sale_diff")->where(["id" => $id])->find();
  3264. if ($info == false) {
  3265. return error_show(1004, "工差单数据未找到");
  3266. }
  3267. $sale = Db::name("sale")->where(["orderCode" => $info["orderCode"]])->find();
  3268. if ($sale == false) {
  3269. return error_show(1004, "订单数据未找到");
  3270. }
  3271. $cgd = Db::name("purchease_diff")->where(['id' => $info['cgd_diffid']])->find();
  3272. if ($cgd == false) {
  3273. return error_show(1004, "采购工差单数据未找到");
  3274. }
  3275. $status = isset($this->post['status']) && $this->post['status'] !== "" ? intval($this->post['status']) : "3";
  3276. $remark = isset($this->post['remark']) && $this->post['remark'] !== "" ? trim($this->post['remark']) : "";
  3277. $ite = $info['status'];
  3278. Db::startTrans();
  3279. try {
  3280. $upda = [
  3281. "status" => $status,
  3282. "remark" => $remark,
  3283. "updatetime" => date("Y-m-d H:i:s"),
  3284. ];
  3285. $up = Db::name("sale_diff")->where($info)->save($upda);
  3286. if ($up) {
  3287. $stx = ["order_code" => $info["orderCode"], "status" => $ite, "action_remark" => '', "action_type" => "status"];
  3288. ActionLog::logAdd($this->post['token'], $stx, "XSGCD", $status, $info);
  3289. $order = ["order_type" => "XSGCD", "order_code" => $info["orderCode"], "order_id" => $info['id'],"order_status" => $status, "before_status" => $ite,'holder_id'=>$sale['apply_id']];
  3290. ProcessOrder::AddProcess($this->post['token'], $order);
  3291. $cgdup = Db::name("purchease_diff")->where(["id" => $info['cgd_diffid']])->save($upda);
  3292. if ($cgdup) {
  3293. if ($status == 2 && $info['customer_remark'] == 1) {
  3294. $sale['diff_weight'] = $info['diff_weight'];
  3295. $sale['diff_fee'] = $info['diff_price'];
  3296. $sale['updatetime'] = date("Y-m-d H:i:s");
  3297. $sal = Db::name("sale")->save($sale);
  3298. if ($sal == false) {
  3299. Db::rollback();
  3300. return error_show(1003, "订单更新工差失败");
  3301. }
  3302. }
  3303. Db::commit();
  3304. return app_show(0, "更新成功");
  3305. }
  3306. }
  3307. Db::rollback();
  3308. return error_show(1003, "更新失败");
  3309. } catch (\Exception $e) {
  3310. Db::rollback();
  3311. return error_show(1003, $e->getMessage());
  3312. }
  3313. }
  3314. /**
  3315. * @return \think\response\Json|void
  3316. * @throws \think\db\exception\DataNotFoundException
  3317. * @throws \think\db\exception\DbException
  3318. * @throws \think\db\exception\ModelNotFoundException
  3319. */
  3320. public function diffinfo()
  3321. {
  3322. $id = isset($this->post['id']) && $this->post['id'] !== "" ? intval($this->post['id']) : "";
  3323. if ($id === "") {
  3324. return error_show(1004, "参数id不能为空");
  3325. }
  3326. $info = Db::name('sale_diff')->where(["id" => $id])->find();
  3327. if (empty($info)) {
  3328. return error_show(1004, "工差订单数据未找到");
  3329. }
  3330. $einfo = Db::name('sale')->where(['orderCode' => $info['orderCode'], 'is_del' => 0])->find();
  3331. if ($einfo == false) {
  3332. return error_show(1002, "未找到销售订单数据");
  3333. }
  3334. if ($einfo['order_type'] == 3||$einfo['order_type'] == 4) {
  3335. $goon = Db::name("good_zixun")->where(["spuCode" => $einfo['good_code'], "is_del" => 0])->find();
  3336. } else {
  3337. $goon = Db::name('good_platform')->alias('a')->join('good b', 'b.spuCode=a.spuCode', 'left')
  3338. ->where(['a.skuCode' => $einfo['skuCode']])->find();
  3339. }
  3340. if ($goon == false) {
  3341. return error_show(1002, "未找到商品数据");
  3342. }
  3343. $info['skuCode'] = isset($goon['skuCode']) ? $goon['skuCode'] : "";
  3344. $info['spuCode'] = isset($goon['spuCode']) ? $goon['spuCode'] : "";
  3345. $info['order_type'] = isset($einfo['order_type']) ? $einfo['order_type'] : "";
  3346. $info['can'] = isset($info['cat_id']) && $info['cat_id'] !== 0 ? made($info['cat_id']) : [];
  3347. return app_show(0, "获取成功", $info);
  3348. }
  3349. //发货申请单列表
  3350. public function saleout()
  3351. {
  3352. $page = isset($this->post['page']) && $this->post['page'] !== "" ? intval($this->post['page']) : "1";
  3353. $size = isset($this->post['size']) && $this->post['size'] !== "" ? intval($this->post['size']) : "10";
  3354. $where = [["a.is_del", "=", 0]];
  3355. $orderCode = isset($this->post['orderCode']) && $this->post['orderCode'] !== "" ? trim($this->post['orderCode']) : "";
  3356. if ($orderCode !== "") {
  3357. $where[] = ['a.orderCode', "like", "%$orderCode%"];
  3358. }
  3359. $order_type = isset($this->post['order_type']) && $this->post['order_type'] !== "" ? trim($this->post['order_type']) : "";
  3360. if ($order_type !== "") {
  3361. $where[] = ['a.order_type', "=", $order_type];
  3362. }
  3363. $outCode = isset($this->post['outCode']) && $this->post['outCode'] !== "" ? trim($this->post['outCode']) : "";
  3364. if ($outCode !== "") {
  3365. $where[] = ['a.outCode', "like", "%$outCode%"];
  3366. }
  3367. $apply_name = isset($this->post['apply_name']) && $this->post['apply_name'] !== "" ? trim($this->post['apply_name']) : "";
  3368. if ($apply_name !== "") {
  3369. $where[] = ['a.apply_name', "like", "%$apply_name%"];
  3370. }
  3371. $good_code = isset($this->post['good_code']) && $this->post['good_code'] !== "" ? trim($this->post['good_code']) : "";
  3372. if ($good_code !== "") {
  3373. $where[] = ['b.good_code', "like", "%$good_code%"];
  3374. }
  3375. $good_name = isset($this->post['good_name']) && $this->post['good_name'] !== "" ? trim($this->post['good_name']) : "";
  3376. if ($good_name !== "") {
  3377. $where[] = ['b.good_name', "like", "%$good_name%"];
  3378. }
  3379. $supplier_name = isset($this->post['supplier_name']) && $this->post['supplier_name'] !== "" ? trim($this->post['supplier_name']) : "";
  3380. if ($supplier_name !== "") {
  3381. $where[] = ['wpo.supplier_name', "like", "%$supplier_name%"];
  3382. }
  3383. $status = isset($this->post['status']) && $this->post['status'] !== "" ? trim($this->post['status']) : "";
  3384. if ($status !== "") {
  3385. $where[] = ['a.status', "=", $status];
  3386. }
  3387. $start = isset($this->post['start']) && $this->post['start'] !== "" ? $this->post['start'] : "";
  3388. if ($start != "") {
  3389. $where[] = ["a.addtime", '>=', $start." 00:00:00"];
  3390. }
  3391. $end = isset($this->post['end']) && $this->post['end'] !== "" ? $this->post['end'] : "";
  3392. if ($end != "") {
  3393. $where[] = ["a.addtime", '<=', $end." 23:59:59"];
  3394. }
  3395. $companyNo = isset($this->post['companyNo']) && $this->post['companyNo'] !== "" ? trim($this->post['companyNo']) : "";
  3396. if ($companyNo != "") {
  3397. $where[] = ['b.customer_code', "like", "%$companyNo%"];
  3398. }
  3399. $cgdNo = isset($this->post['cgdNo']) && $this->post['cgdNo'] !== "" ? $this->post['cgdNo'] : "";
  3400. if ($cgdNo != "") {
  3401. $where[] = ["os.cgdNo", 'like', '%' . $cgdNo . '%'];
  3402. }
  3403. // $role = $this->checkRole();
  3404. $condition ='';
  3405. // if (!empty($role['write']) && $this->uid != "") {
  3406. // // $where[]=["a.apply_id","in",$role['write']];
  3407. // $condition .= " (b.is_stock=1 and n.contactor = {$this->uid}) or (b.is_stock=0 and wpo.cgder_id = {$this->uid}) or a.apply_id in (" . implode(',',
  3408. // $role['write']) . ")";
  3409. // }
  3410. $hand = resign_hand_user($this->uid,0);
  3411. $uidarr =implode(",",$hand);
  3412. //库管只能看到库存品订单,供应商负责人只能看到非库存品订单
  3413. if(!in_array($this->roleid,[1,33])){
  3414. //库管看到所有的库存品发货申请单
  3415. if(in_array($this->roleid,config('app.wsm_cgder_role'))) $condition .= " b.is_stock=1";
  3416. else{
  3417. $role = $this->checkDataShare();
  3418. if (!empty($role[DataGroupModel::$type_全部])) {
  3419. $arr= array_unique(array_merge($hand,$role[DataGroupModel::$type_全部]));
  3420. if($condition!='') $condition.=" or ";
  3421. $condition .= " a.apply_id in (" . implode(',',$arr) . ")";
  3422. }
  3423. }
  3424. $personid=Db::name('supplier')->field('id')->where(['is_del'=>0,'personid'=> $hand])->findOrEmpty();
  3425. if($personid){
  3426. if($condition!='') $condition.=" or ";
  3427. $condition.="(b.is_stock=0 and sip.personid in ($uidarr))";
  3428. }
  3429. }
  3430. // if(!empty($role['platform']) ){
  3431. // $where[]=["b.platform_id","in",$role['platform']];
  3432. // }
  3433. $company_name = isset($this->post['company_name']) && $this->post['company_name'] !== "" ? trim($this->post['company_name']) : "";
  3434. if ($company_name !== "") $where[] = ["a.apply_id", 'in', get_company_item_user_by_name($company_name)];
  3435. //发货时间筛选
  3436. $start_sendtime = isset($this->post['start_sendtime']) && $this->post['start_sendtime'] !== "" ? $this->post['start_sendtime'] : "";
  3437. $end_sendtime = isset($this->post['end_sendtime']) && $this->post['end_sendtime'] !== "" ? $this->post['end_sendtime'] : "";
  3438. if ($start_sendtime != "" && $end_sendtime != "") {
  3439. $where[] = ["a.sendtime", 'between', [$start_sendtime." 00:00:00", $end_sendtime." 23:59:59"]];
  3440. $where[] = ["a.status", '>=', 2];//搜索发货时间时,要指定状态为已发货及之后的状态值(0待发货,1待库管发货,2已发货待收货,3已收货,4已全部退货',)
  3441. }
  3442. $count = Db::name('order_out')
  3443. ->alias('a')
  3444. ->join("sale b", "b.orderCode=a.orderCode", "left")
  3445. ->join("customer_info v", "v.companyNo=b.customer_code", "left")
  3446. ->join("warehouse_info n", "n.wsm_code=a.wsm_code", "left")
  3447. ->leftJoin("depart_user u", "u.uid=a.apply_id AND u.is_del=0")
  3448. ->leftJoin("order_send os", "os.outCode=a.outCode")
  3449. ->leftJoin("purchease_order wpo", "wpo.cgdNo=os.cgdNo")
  3450. ->leftJoin('supplier sip', 'sip.code=wpo.supplierNo')
  3451. ->where($where)
  3452. ->where($condition)
  3453. ->count();
  3454. $total = ceil($count / $size);
  3455. $page = $page >= $total ? $total : $page;
  3456. $list = Db::name('order_out')
  3457. ->alias('a')
  3458. ->join("sale b", "b.orderCode=a.orderCode", "left")
  3459. ->join("customer_info v", "v.companyNo=b.customer_code", "left")
  3460. ->join("warehouse_info n", "n.wsm_code=a.wsm_code AND n.is_del=0", "left")
  3461. ->leftJoin("order_send os", "os.outCode=a.outCode")
  3462. ->leftJoin("purchease_order wpo", "wpo.cgdNo=os.cgdNo")
  3463. ->leftJoin("depart_user u", "u.uid=a.apply_id AND u.is_del=0")
  3464. ->leftJoin('supplier sip', 'sip.code=wpo.supplierNo')
  3465. ->field("a.*,b.order_type,b.order_source,b.good_name,b.good_code,b.skuCode,b.supplierNo,b.customer_code,v.companyName,b.origin_price,b.sale_price,b.total_price,os.cgdNo,u.itemid")
  3466. ->where($where)
  3467. ->where($condition)
  3468. ->order("a.id desc")
  3469. ->page($page, $size)
  3470. ->cursor();
  3471. $data = [];
  3472. foreach ($list as $value) {
  3473. if($value['order_type']==1 && $value['wsm_code']==''){
  3474. $wsmcode = Db::name("good")->alias("a")
  3475. ->leftJoin("supplier b","a.supplierNo=b.code")
  3476. ->where(["a.spuCode"=>$value['good_code']])->field("'' wsm_name,b.name,b.code")->find();
  3477. }else{
  3478. $wsmcode = Db::name("warehouse_info")->alias("k")->leftJoin("supplier c", "k.supplierNo=c.code")
  3479. ->where(["k.wsm_code" => $value['wsm_code']])->field("k.name as wsm_name,c.name,c.code")->find();
  3480. }
  3481. $addr = Db::name("order_addr")->where(["id" => $value['addrid']])->find();
  3482. if($addr){
  3483. $addinfo =$addr['addr_code']!=''?json_decode($addr['addr_code'],true)??$addr['addr_code']: '' ;
  3484. if(is_string($addinfo) &&$addinfo!=''){
  3485. $addinfo=["provice_code"=>'',"city_code"=>'',"area_code"=>''];
  3486. list($addinfo['provice_code'],$addinfo['city_code'],$addinfo['area_code']) = explode(",",$addr['addr_code']);
  3487. }
  3488. $addr['addr_cn'] =GetAddr(json_encode($addinfo));
  3489. }
  3490. if ($value['order_type'] == 3||$value['order_type'] == 4) {
  3491. $goon = Db::name("good_zixun")->field('id,cat_id')->where(["spuCode" => $value['good_code'], "is_del" => 0])->find();
  3492. } else {
  3493. $goon = Db::name('good_platform')->field('a.id,b.cat_id')->alias('a')->join('good b', 'b.spuCode=a.spuCode', 'left')->where(['a.skuCode' => $value['skuCode']])->find();
  3494. }
  3495. $value['wsm_name'] = isset($wsmcode['wsm_name']) ? $wsmcode['wsm_name'] : "";
  3496. $value['wsm_supplierNo'] = isset($wsmcode['code']) ? $wsmcode['code'] : "";
  3497. $value['wsm_supplier'] = isset($wsmcode['name']) ? $wsmcode['name'] : "";
  3498. $value['wsm_has_account'] = (int)isset(checkHasAccountBySupplierNos([$wsmcode['code']])[$wsmcode['code']]);
  3499. $value['addr'] = isset($addr['addr']) ? $addr['addr_cn'].$addr['addr'] : "";
  3500. $value['contactor'] = isset($addr['contactor']) ? $addr['contactor'] : "";
  3501. $value['mobile'] = isset($addr['mobile']) ? $addr['mobile'] : "";
  3502. $value['can'] = isset($goon['cat_id']) && $goon['cat_id'] != 0 ? made($goon['cat_id']) : [];
  3503. $value['company_name'] = implode('/', array_column(GetPart($value['itemid']), 'name'));
  3504. $value['sendtime'] = $value['status'] < 2 ? '' : $value['sendtime'];
  3505. //是否具有编辑权限
  3506. // $value['is_allow_update'] = 0;
  3507. // if (in_array($this->roleid, [1, 33]) || in_array($value['apply_id'], $role[DataGroupModel::$type_可编辑])) $value['is_allow_update'] = 1;
  3508. $data[] = $value;
  3509. }
  3510. return app_show(0, "获取成功", ['list' => $data, 'count' => $count]);
  3511. }
  3512. public function outinfo()
  3513. {
  3514. $outCode = isset($this->post['outCode']) && $this->post['outCode'] !== "" ? trim($this->post['outCode']) : "";
  3515. if ($outCode == "") {
  3516. return error_show(1002, "参数outcode不能为空");
  3517. }
  3518. $codeinfo = Db::name("order_out")->where(['outCode' => $outCode, "is_del" => 0])->find();
  3519. if (empty($codeinfo)) {
  3520. return error_show(1002, "未找到出库数据");
  3521. }
  3522. $item = Db::name("sale")->where(['orderCode' => $codeinfo['orderCode']])->find();
  3523. if ($item['order_type'] == 3||$item['order_type'] == 4) {
  3524. $goodinfo = Db::name("good_zixun")->where(["spuCode" => $item['good_code'], "is_del" => 0])->find();
  3525. if ($goodinfo == false) {
  3526. return error_show(1004, "未找到商品数据");
  3527. }
  3528. } else {
  3529. $goodinfo = Db::name('good_platform')->alias('a')->join('good b', 'b.spuCode=a.spuCode', 'left')
  3530. ->where(['a.skuCode' => $item['skuCode']])->find();
  3531. if ($goodinfo == false) {
  3532. return error_show(1002, "未找到商品数据");
  3533. }
  3534. }
  3535. $int = isset($goodinfo['cat_id']) && $goodinfo['cat_id'] != 0 ? made($goodinfo['cat_id']) : [];
  3536. $addr = Db::name("order_addr")->where(["id" => $codeinfo['addrid']])->find();
  3537. if($addr){
  3538. $addinfo =$addr['addr_code']!=''?json_decode($addr['addr_code'],true)??$addr['addr_code']: '' ;
  3539. if(is_string($addinfo)&&$addinfo!=''){
  3540. $addinfo=["provice_code"=>'',"city_code"=>'',"area_code"=>''];
  3541. list($addinfo['provice_code'],$addinfo['city_code'],$addinfo['area_code']) = explode(",",$addr['addr_code']);
  3542. }
  3543. $addr['addr_cn'] =GetAddr(json_encode($addinfo));
  3544. }
  3545. $codeinfo['good_name'] = isset($item['good_name']) ? $item['good_name'] : "";
  3546. $codeinfo['good_num'] = isset($item['good_num']) ? $item['good_num'] : "";
  3547. $codeinfo['good_code'] = isset($item['good_code']) ? $item['good_code'] : "";
  3548. $codeinfo['origin_price'] = isset($item['origin_price']) ? $item['origin_price'] : "";
  3549. $codeinfo['sale_price'] = isset($item['sale_price']) ? $item['sale_price'] : "";
  3550. $codeinfo['total_price'] = isset($item['total_price']) ? $item['total_price'] : "";
  3551. $codeinfo['skuCode'] = isset($item['skuCode']) ? $item['skuCode'] : "";
  3552. $codeinfo['addr'] = $addr['addr_cn']??'';
  3553. $codeinfo['addr'] .= isset($addr['addr']) ? $addr['addr'] : "";
  3554. $codeinfo['addr_code'] = isset($addr['addr_code']) ? $addr['addr_code'] : "";
  3555. $codeinfo['contactor'] = isset($addr['contactor']) ? $addr['contactor'] : "";
  3556. $codeinfo['mobile'] = isset($addr['mobile']) ? $addr['mobile'] : "";
  3557. $codeinfo['sendtime'] = $codeinfo['status'] < 2 ? '' : $codeinfo['sendtime'];
  3558. $codeinfo['can'] = $int;
  3559. $codeinfo['order_source'] = $item['order_source'];
  3560. $orderReturn = Db::name("order_return")->where(["outCode" => $outCode, "is_del" => 0])->order("id desc")->find();
  3561. $codeinfo['order_return'] = $orderReturn;
  3562. //获取销售订单对应的供应商是否有启用账号
  3563. $codeinfo['has_account'] = 0;
  3564. $supplierNo = Db::name('order_num')
  3565. ->alias('a')
  3566. ->leftJoin('purchease_order b', 'b.cgdNo=a.cgdNo')
  3567. ->where('a.orderCode', $codeinfo['orderCode'])
  3568. ->value('b.supplierNo');
  3569. if ($supplierNo) {
  3570. $has_account = checkHasAccountBySupplierNos([$supplierNo]);
  3571. $codeinfo['has_account'] = (int)isset($has_account[$supplierNo]);
  3572. }
  3573. $saleinfo=Db::name("sale_info")->where([["orderCode","=",$codeinfo['orderCode']],["num",">",0]])->select()
  3574. ->toArray();
  3575. if(!empty($saleinfo)){
  3576. $stockidArr=array_column($saleinfo,"stockid");
  3577. $wsm=Db::name("good_stock")->alias("a")
  3578. ->leftJoin("warehouse_info b","a.wsm_code=b.wsm_code")
  3579. ->where("a.id","in",$stockidArr)
  3580. ->column("a.wsm_code,name","a.id");
  3581. foreach ($saleinfo as &$item){
  3582. $item['wsm_code'] = $wsm[$item['stockid']]['wsm_code'];
  3583. $item['wsm_name'] = $wsm[$item['stockid']]['name'];
  3584. }
  3585. }
  3586. $codeinfo["saleinfo"] = $saleinfo;
  3587. return app_show(0, "获取成功", $codeinfo);
  3588. }
  3589. public function outadd()
  3590. {
  3591. $token = isset($this->post['token']) && $this->post['token'] !== "" ? trim($this->post['token']) : "";
  3592. $orderCode = isset($this->post['orderCode']) && $this->post['orderCode'] !== "" ? trim($this->post['orderCode']) : "";
  3593. if ($orderCode == "") {
  3594. return error_show(1002, "参数orderCoder不能为空");
  3595. }
  3596. $retrun =Db::name("sale_return")->where([["orderCode","=",$orderCode],["is_del","=",0],["status","<",4]])
  3597. ->count();
  3598. if($retrun>0){
  3599. return error_show(1005,"存在未完成退货订单数据");
  3600. }
  3601. $der = Db::name('sale')->where(['orderCode' => $orderCode, "is_del" => 0])->find();
  3602. if ($der == "") {
  3603. return error_show(1002, "未找到出库订单单号");
  3604. }
  3605. $send_num = isset($this->post['send_num']) && $this->post['send_num'] !== "" ? $this->post['send_num'] : "";
  3606. if ($send_num == "") {
  3607. return error_show(1002, "发货数量不能为空");
  3608. }
  3609. $wsed = Db::name("order_out")->where(["orderCode" => $orderCode])->where([["status", "<", 2], ["is_del", "=", 0]])->sum
  3610. ('send_num');
  3611. if ($send_num > $der['wsend_num'] - $wsed) {
  3612. return error_show(1002, "超出可发货数量");
  3613. }
  3614. $contactor = isset($this->post['contactor']) && $this->post['contactor'] != "" ? trim($this->post['contactor']) : "";
  3615. if ($contactor == "") {
  3616. return error_show(1002, "参数contactor不能为空");
  3617. }
  3618. $mobile = isset($this->post['mobile']) && $this->post['mobile'] != "" ? trim($this->post['mobile']) : "";
  3619. if ($mobile == "") {
  3620. return error_show(1002, "参数mobile不能为空");
  3621. }
  3622. $addr = isset($this->post['addr']) && $this->post['addr'] != "" ? trim($this->post['addr']) : "";
  3623. if ($addr == "") {
  3624. return error_show(1002, "参数addr不能为空");
  3625. }
  3626. $addr_code = isset($this->post['addr_code']) && $this->post['addr_code'] != "" ? trim($this->post['addr_code']) : "";
  3627. if ($addr_code == "") {
  3628. return error_show(1002, "参数addr_code不能为空");
  3629. }
  3630. // $apply_id = GetUserInfo($token);
  3631. // if (empty($apply_id) || $apply_id['code'] != 0) {
  3632. // return error_show(1002, "申请人数据不存在");
  3633. // }
  3634. $rm = $this->uid;//isset($apply_id["data"]['id']) ? $apply_id["data"]['id'] : "";
  3635. $ri = $this->uname;//isset($apply_id["data"]['nickname']) ? $apply_id["data"]['nickname'] : "";
  3636. $sendtime = isset($this->post['sendtime']) && $this->post['sendtime'] !== "" ? $this->post['sendtime'] : date("Y-m-d H:i:s");
  3637. Db::startTrans();
  3638. try {
  3639. $addrlst = [
  3640. "orderCode" => $orderCode,
  3641. "addr" => $addr,
  3642. "addr_code" => json_encode($addr_code),
  3643. "contactor" => $contactor,
  3644. "mobile" => $mobile,
  3645. "customer_code" => $der['customer_code'],
  3646. "post_fee" => $der['post_fee'],
  3647. "arrive_time" => $sendtime,
  3648. "receipt_quantity" => $send_num,
  3649. "is_del" => 0,
  3650. "addtime" => date("Y-m-d H:i:s"),
  3651. "updatetime" => date("Y-m-d H:i:s")
  3652. ];
  3653. $addrid = Db::name("order_addr")->insert($addrlst, true);
  3654. if ($addrid > 0) {
  3655. $outCode = makeNo("DF");
  3656. $order=[];
  3657. if($der['order_type']!=1){
  3658. $order = Db::name("order_num")->where(["orderCode" => $orderCode, "status" => 1])->where([["wsend_num", ">=", 0]])
  3659. ->lock(true)->find();
  3660. if ($order == false) {
  3661. Db::rollback();
  3662. return error_show(1004, "未找到可以发货得采购单数据");
  3663. }
  3664. $cgd = Db::name("purchease_order")->where(["cgdNo" => $order['cgdNo']])->find();
  3665. if ($cgd == false) {
  3666. Db::rollback();
  3667. return error_show(1002, "未找到对应的采购单数据");
  3668. }
  3669. $order['wsend_num'] -= $send_num;
  3670. $order['send_num'] += $send_num;
  3671. $or = Db::name("order_num")->save($order);
  3672. if ($or == false) {
  3673. Db::rollback();
  3674. return error_show(1002, "发货地址添加创建失败");
  3675. }
  3676. $tep = [
  3677. "cgdNo" => $order['cgdNo'],
  3678. "outCode" => $outCode,
  3679. "send_num" => $send_num,
  3680. "status" => 1,
  3681. "addtime" => date("Y-m-d H:i:s"),
  3682. "updatetime" => date("Y-m-d H:i:s")
  3683. ];
  3684. $sen = Db::name("order_send")->save($tep);
  3685. if ($sen == false) {
  3686. Db::rollback();
  3687. return error_show(1002, "发货地址添加创建失败");
  3688. }
  3689. }else{
  3690. $order = Db::name("order_num")->where(["orderCode" => $orderCode, "status" => 1])->where([["wsend_num", ">=", 0]])
  3691. ->lock(true)->find();
  3692. if ($order!= false) {
  3693. $cgd = Db::name("purchease_order")->where(["cgdNo" => $order['cgdNo']])->find();
  3694. if ($cgd == false) {
  3695. Db::rollback();
  3696. return error_show(1002, "未找到对应的采购单数据");
  3697. }
  3698. $order['wsend_num'] -= $send_num;
  3699. $order['send_num'] += $send_num;
  3700. $or = Db::name("order_num")->save($order);
  3701. if ($or == false) {
  3702. Db::rollback();
  3703. return error_show(1002, "发货地址添加创建失败");
  3704. }
  3705. $tep = [
  3706. "cgdNo" => $order['cgdNo'],
  3707. "outCode" => $outCode,
  3708. "send_num" => $send_num,
  3709. "status" => 1,
  3710. "addtime" => date("Y-m-d H:i:s"),
  3711. "updatetime" => date("Y-m-d H:i:s")
  3712. ];
  3713. $sen = Db::name("order_send")->save($tep);
  3714. if ($sen == false) {
  3715. Db::rollback();
  3716. return error_show(1002, "发货地址添加创建失败");
  3717. }
  3718. }else{
  3719. $order['cgdNo']='';
  3720. $cgd=[];
  3721. }
  3722. }
  3723. $data = [
  3724. "wsm_code" => isset($cgd['wsm_code']) ? $cgd['wsm_code'] : "",
  3725. "orderCode" => $orderCode,
  3726. "outCode" => $outCode,
  3727. "order_type" => $der['order_type'],
  3728. "apply_id" => $rm,
  3729. "apply_name" => $ri,
  3730. "addrid" => $addrid,
  3731. "post_name" => "",
  3732. "post_code" => "",
  3733. "post_fee" => "",
  3734. "sendtime" => $sendtime,
  3735. "send_num" => $send_num,
  3736. "check_num" => 0,
  3737. "error_num" => 0,
  3738. "status" => 1,
  3739. "addtime" => date("Y-m-d H:i:s"),
  3740. "updatetime" => date("Y-m-d H:i:s")
  3741. ];
  3742. if ($der['is_stock'] == 0) {
  3743. //维护商品所在仓库的库存 --- start
  3744. $temp = Db::name('good_stock')
  3745. ->field('id,usable_stock,wait_out_stock')
  3746. ->where(['spuCode' => $der['good_code'], 'wsm_code' => $cgd['wsm_code']])
  3747. ->find();
  3748. if (($temp == false || ($temp['usable_stock'] - $send_num) < 0) && $der['send_type'] == 1) {
  3749. Db::rollback();
  3750. return error_show(1004, '库存不足');
  3751. } else {
  3752. if (($temp == false || ($temp['usable_stock'] - $send_num) < 0) && $der['send_type'] == 2) {
  3753. $data['status'] = 0;
  3754. } else {
  3755. $up = Db::name('good_stock')
  3756. ->where('id', $temp['id'])
  3757. ->update([
  3758. 'usable_stock' => $temp['usable_stock'] - $send_num,
  3759. 'wait_out_stock' => $temp['wait_out_stock'] + $send_num,
  3760. 'updatetime' => date('Y-m-d H:i:s'),
  3761. ]);
  3762. if ($up == false) {
  3763. Db::rollback();
  3764. return error_show(1004, '库存更新失败');
  3765. }
  3766. // ::todo
  3767. $good_data[] = ['good_log_code' => $outCode, "stock_id" => $temp['id'], "type" => 1, 'stock' => $send_num, "stock_name" => "wait_out_stock"];
  3768. $good_data[] = ['good_log_code' => $outCode, "stock_id" => $temp['id'], "type" => 2, 'stock' => $send_num, "stock_name" => "usable_stock"];
  3769. GoodLog::LogAdd($this->post['token'], $good_data, "CKD");
  3770. }
  3771. }
  3772. }
  3773. $datainfo = Db::name('order_out')->insert($data, true);
  3774. if ($datainfo > 0) {
  3775. //修改状态,添加待办
  3776. ActionLog::logAdd(['id'=>$rm,'nickname'=>$ri], [
  3777. "order_code" => $data['outCode'],//出库单号
  3778. "status" => $data['status'],//这里的status是之前的值
  3779. "action_remark" => '',//备注
  3780. "action_type" => "create"//新建create,编辑edit,更改状态status
  3781. ], "CKD", $data['status'], $data);
  3782. //是否库存品,待办数据推送到的人有区别,
  3783. $process = [];
  3784. if ($data['status'] == 1) {
  3785. if ($der['is_stock'] == 1) {
  3786. //库存品,推给库管和库管-张凯旋
  3787. $roleid = config('app.wsm_cgder_role');
  3788. $uids = Db::name('user_role')
  3789. ->where('is_del', 0)
  3790. ->whereIn('roleid', $roleid)
  3791. ->column('uid');
  3792. $process = ["order_type" => 'CKD', "order_code" => $data['outCode'], "order_id" => $datainfo, "order_status" => $data['status'], "before_status" => 0, 'holder_id' => $data['apply_id'], 'handle_user_list' => implode(',', $uids)];
  3793. } else{
  3794. //推给供应商负责人
  3795. $supplier = Db::name('supplier')
  3796. ->field('person,personid')
  3797. ->where('code', $cgd['supplierNo'])
  3798. ->findOrEmpty();
  3799. $process = ["order_type" => 'CKD', "order_code" => $data['outCode'], "order_id" => $datainfo, "order_status" => $data['status'], "before_status" => 0, 'holder_id' => $data['apply_id'], 'wait_id' => $supplier['personid'], 'wait_name' => $supplier['person'],];
  3800. }
  3801. }
  3802. if (empty($process)) $process = ["order_type" => 'CKD', "order_code" => $data['outCode'], "order_id" => $datainfo, "order_status" => $data['status'], "before_status" => 0, 'holder_id' => $data['apply_id']];
  3803. ProcessOrder::AddProcess(['id' => $rm, 'nickname' => $ri], $process);
  3804. //维护台账记录
  3805. Db::name('standing_book')
  3806. ->where('orderCode', $orderCode)
  3807. ->update([
  3808. 'order_type' => $der['order_type'],
  3809. 'order_source' => $der['order_source'],
  3810. 'cgdNo' => $order['cgdNo'],
  3811. 'customer_code' => $der['customer_code'],
  3812. 'updatetime' => date('Y-m-d H:i:s'),
  3813. ]);
  3814. Db::execute("UPDATE `wsm_standing_book` SET `outCode`=CONCAT(IFNULL(`outCode`,''),',{$outCode}') WHERE `cgdNo`='{$order['cgdNo']}'");
  3815. Db::commit();
  3816. return app_show(0, "出库单新建成功");
  3817. }
  3818. }
  3819. Db::rollback();
  3820. return error_show(1004, "出库单新建失败");
  3821. } catch (Exception $e) {
  3822. Db::rollback();
  3823. return error_show(1005, $e->getMessage());
  3824. }
  3825. }
  3826. //库管发货
  3827. public function outSend()
  3828. {
  3829. $outCode = isset($this->post['outCode']) && $this->post['outCode'] != "" ? trim($this->post['outCode']) : "";
  3830. if ($outCode == "") {
  3831. return error_show(1004, "参数outCode不能为空");
  3832. }
  3833. $outinfo = Db::name("order_out")->where(["outCode" => $outCode, "is_del" => 0])->find();
  3834. if ($outinfo == false) {
  3835. return error_show(1004, "发货数据未找到");
  3836. }
  3837. if($outinfo['status']!=1){
  3838. return error_show(1004, "发货状态有误");
  3839. }
  3840. $einfo = Db::name('sale')->where(['orderCode' => $outinfo['orderCode'], 'is_del' => 0])->find();
  3841. if (empty($einfo)) {
  3842. return error_show(1002, "未找到销售订单数据");
  3843. }
  3844. $is_reurn = Db::name("sale_return")->where(['orderCode' => $outinfo['orderCode'], 'is_del' => 0])->where("status", "<", 4)->find();
  3845. if ($is_reurn != false) {
  3846. return error_show(1002, "销售单存在退货未处理完成");
  3847. }
  3848. $post_name = isset($this->post['post_name']) && $this->post['post_name'] != "" ? trim($this->post['post_name']) : "";
  3849. if ($post_name == "") {
  3850. return error_show(1004, "参数post_name不能为空");
  3851. }
  3852. $post_code = isset($this->post['post_code']) && $this->post['post_code'] != "" ? trim($this->post['post_code']) : "";
  3853. if ($post_code == "") {
  3854. return error_show(1004, "参数post_code不能为空");
  3855. }
  3856. $remark = isset($this->post['remark']) && $this->post['remark'] != "" ? trim($this->post['remark']) : "";
  3857. $post_fee = isset($this->post['post_fee']) && $this->post['post_fee'] != "" ? floatval($this->post['post_fee']) : "";
  3858. $outinfo['post_name'] = $post_name;
  3859. $outinfo['post_code'] = $post_code;
  3860. $outinfo['post_fee'] = $post_fee;
  3861. $outinfo['sendtime'] = date("Y-m-d H:i:s");
  3862. $old_outinfo_status = $outinfo['status'];
  3863. $outinfo['status'] = 2;
  3864. $outinfo['updatetime'] = date("Y-m-d H:i:s");
  3865. $outinfo['remark'] = $remark;
  3866. if ($einfo['wsend_num'] < $outinfo['send_num']) {
  3867. return error_show(1004, "订单未发货数量不足");
  3868. }
  3869. Db::startTrans();
  3870. try {
  3871. $up = Db::name("order_out")->where(["outCode"=>$outCode,"status"=>1,"is_del"=>0])->update($outinfo);
  3872. $user_info = GetUserInfo($this->post['token']);
  3873. $uid = isset($user_info['data']['id']) ? $user_info['data']['id'] : 0;
  3874. $uname = isset($user_info['data']['nickname']) ? $user_info['data']['nickname'] : '';
  3875. if ($einfo['is_stock'] == 1) {
  3876. //如果是库存品,只能由库管和库管-张凯旋操作
  3877. $own_roleid = Db::name('user_role')->where(['is_del'=>0,'uid'=>$uid,'status'=>1])->value('roleid',0);
  3878. if (!in_array($own_roleid, config('app.wsm_cgder_role'))) throw new \think\Exception('库存品只能由库管人员操作');
  3879. } elseif ($einfo['is_stock'] == 0 || $einfo['order_type'] == 3) {
  3880. //非库存品和采返商品只能由供应商负责人操作
  3881. if($einfo['order_type'] == 3||$einfo['order_type'] == 4){
  3882. $personid = Db::name('good_zixun')->alias("a")->leftJoin("supplier b","a.supplierNo=b.code")
  3883. ->where(['a.spuCode' => $einfo['good_code'], 'a.is_del' => 0])
  3884. ->value('personid');
  3885. }else{
  3886. $personid = Db::name('good')->alias("a")->leftJoin("supplier b","a.supplierNo=b.code")
  3887. ->where(['a.spuCode' => $einfo['good_code'], 'a.is_del' => 0])
  3888. ->value('personid');
  3889. }
  3890. if ($uid !=$personid) throw new \think\Exception('非库存品和采返商品只能由供应商负责人操作');
  3891. }
  3892. if ($up) {
  3893. //修改状态,添加待办
  3894. ActionLog::logAdd(['id' => $uid, 'nickname' => $uname], [
  3895. "order_code" => $outinfo['outCode'],//出库单号
  3896. "status" => $old_outinfo_status,//这里的status是之前的值
  3897. "action_remark" => '',//备注
  3898. "action_type" => "edit"//新建create,编辑edit,更改状态status
  3899. ], "CKD", $outinfo['status'], $outinfo);
  3900. ProcessOrder::AddProcess(['id' => $uid, 'nickname' => $uname], [
  3901. "order_type" => 'CKD',
  3902. "order_code" => $outinfo['outCode'],//出库单号
  3903. "order_id" => $outinfo['id'],
  3904. "order_status" => $outinfo['status'],
  3905. "before_status" => $old_outinfo_status,
  3906. 'wait_id'=>$outinfo['apply_id'],
  3907. 'wait_name'=>$outinfo['apply_name'],
  3908. 'holder_id'=>$outinfo['apply_id'],
  3909. ]);
  3910. if($einfo['wsend_num']<$outinfo['send_num']){
  3911. Db::rollback();
  3912. return error_show(1002, "订单待付货数量不足");
  3913. }
  3914. $orderstatus = $einfo['status'];
  3915. $einfo['send_num'] += $outinfo['send_num'];
  3916. $einfo['wsend_num'] -= $outinfo['send_num'];
  3917. $einfo['status'] = $einfo['wsend_num'] == 0 ? 2 : ($einfo['send_num'] == 0 ? 0 : 1);
  3918. $einfo['send_status'] = $einfo['wsend_num'] == 0 ? 3 : ($einfo['send_num'] == 0 ? 1 : 2);
  3919. $einfo['updatetime'] = date("Y-m-d H:i:s");
  3920. $saleup = Db::name("sale")->save($einfo);
  3921. if ($saleup == false) {
  3922. Db::rollback();
  3923. return error_show(1002, "销售单状态更新失败");
  3924. }
  3925. // }
  3926. //修改状态,添加待办
  3927. ActionLog::logAdd(['id' => $uid, 'nickname' => $uname], [
  3928. "order_code" => $einfo['orderCode'],//出库单号
  3929. "status" => $orderstatus,//这里的status是之前的值
  3930. "action_remark" => '',//备注
  3931. "action_type" => "edit"//新建create,编辑edit,更改状态status
  3932. ], "XSQRD", $einfo['status'], $einfo);
  3933. ProcessOrder::AddProcess(['id' => $uid, 'nickname' => $uname], [
  3934. "order_type" => 'XSQRD',
  3935. "order_code" => $einfo['orderCode'],//出库单号
  3936. "order_id" => $einfo['id'],
  3937. "order_status" => $einfo['status'],
  3938. "before_status" => $orderstatus,
  3939. 'holder_id' => $einfo['apply_id']
  3940. ]);
  3941. if($einfo["order_type"]!=1 ){
  3942. $stokc = Db::name("good_stock")->where(['spuCode' => $einfo['good_code'], "wsm_code" => $outinfo['wsm_code'], "is_del" => 0])->find();
  3943. if ($stokc == false) {
  3944. Db::rollback();
  3945. return error_show(1002, "未找到库存数据");
  3946. } else {
  3947. if ($outinfo['send_num'] > $stokc['wait_out_stock']) {
  3948. Db::rollback();
  3949. return error_show(1002, "超出库存数量");
  3950. }
  3951. $stokc['wait_out_stock'] -= $outinfo['send_num'];
  3952. $stokc['total_stock'] = $stokc['wait_out_stock'] + $stokc['usable_stock'];
  3953. // $stokc['intra_stock']+=$outinfo['send_num'];
  3954. $stokc['updatetime'] = date("Y-m-d H:i:s");
  3955. }
  3956. $stoc = Db::name("good_stock")->save($stokc);
  3957. if ($stoc == false) {
  3958. Db::rollback();
  3959. return error_show(1002, "库存更新失败");
  3960. }
  3961. $outsend =Db::name("order_send")->where(["outCode"=> $outCode])->findOrEmpty();
  3962. if(empty($outsend)){
  3963. Db::rollback();
  3964. return error_show(1002, "未找到关联采购单");
  3965. }
  3966. $cgdinfo= Db::name("purchease_order")->where(["cgdNo"=>$outsend['cgdNo'],"is_del"=>0])
  3967. ->findOrEmpty();
  3968. $bn_code =makeNo("BN");
  3969. $bnin=GoodStockInfo::AddBn($stokc["id"],$bn_code,$outinfo['send_num'],$cgdinfo['good_price']??0);
  3970. if($bnin==false){
  3971. Db::rollback();
  3972. return error_show(1004,"库存bn数据新增失败");
  3973. }
  3974. $bnup =GoodStockInfo::OrderBn($outinfo['orderCode'],$stokc["id"],$outinfo['send_num'],0);
  3975. if($bnup==false){
  3976. Db::rollback();
  3977. return error_show(1004,"库存bn库存数更新失败");
  3978. }
  3979. $outsend['bnCode']=$bn_code;
  3980. $outsend['updatetime']=date("Y-m-d H:i:s");
  3981. $ps=Db::name("order_send")->save($outsend);
  3982. if($ps==false){
  3983. Db::rollback();
  3984. return error_show(1004,"库存bn库存数更新失败");
  3985. }
  3986. $good_data[] = ['good_log_code' => $outCode, "stock_id" => $stokc['id'], "type" => 2, 'stock' => $outinfo['send_num'], "stock_name" => "wait_out_stock"];
  3987. GoodLog::LogAdd(['id' => $uid, 'nickname' => $uname], $good_data, "CKD");
  3988. }else{
  3989. $saleinfo =Db::name("sale_info")->where(["orderCode"=>$outinfo['orderCode']])->select()->toArray();
  3990. if (!empty($saleinfo)){
  3991. $bnup =SaleInfo::SendStock($outinfo['orderCode'],$outinfo['send_num']);
  3992. if($bnup==false){
  3993. Db::rollback();
  3994. return error_show(1004,"库存bn库存数更新失败");
  3995. }
  3996. }else{
  3997. $stokc = Db::name("good_stock")->where(['spuCode' => $einfo['good_code'], "wsm_code" => $outinfo['wsm_code'], "is_del" => 0])->find();
  3998. if ($stokc == false) {
  3999. Db::rollback();
  4000. return error_show(1002, "未找到库存数据");
  4001. } else {
  4002. if ($outinfo['send_num'] > $stokc['wait_out_stock']) {
  4003. Db::rollback();
  4004. return error_show(1002, "超出库存数量");
  4005. }
  4006. $stokc['wait_out_stock'] -= $outinfo['send_num'];
  4007. $stokc['total_stock'] = $stokc['wait_out_stock'] + $stokc['usable_stock'];
  4008. // $stokc['intra_stock']+=$outinfo['send_num'];
  4009. $stokc['updatetime'] = date("Y-m-d H:i:s");
  4010. }
  4011. $stoc = Db::name("good_stock")->save($stokc);
  4012. if ($stoc == false) {
  4013. Db::rollback();
  4014. return error_show(1002, "库存更新失败");
  4015. }
  4016. }
  4017. }
  4018. Cache::store("redis")->handler()->lPush("SENDOUT", $outCode);
  4019. Db::commit();
  4020. } else {
  4021. Db::rollback();
  4022. return error_show(1004, "发货失败");
  4023. }
  4024. //如果是有赞订单的话,将发货信息推到有赞
  4025. //有赞信息有可能推送失败(比如超过72小时,不允许多次修改等),所以不应该和这里的事务放到一起
  4026. if ($einfo['order_source'] == 5) {
  4027. $res = curl_request(config('app.yz_domain') . 'api/yz_out_send', ['orderCode' => $einfo['orderCode'], 'out_stype' => $post_name, 'post_code' => $post_code, 'uid' => $uid, 'uname' => $uname, 'order_out' => $outCode]);
  4028. $res = json_decode($res, true);
  4029. if ($res['code'] != 0) return app_show(0, '发货成功,' . $res['message']);
  4030. }
  4031. return app_show(0, "发货成功");
  4032. } catch (\Exception $e) {
  4033. Db::rollback();
  4034. return error_show(1004, $e->getMessage());
  4035. }
  4036. }
  4037. public function RelaCgd($outinfo, array &$standing_book_da = [])
  4038. {
  4039. $cgd = Db::name("order_bk")->where([["spuCode", "=", $outinfo['spuCode']], ["is_del", "=", 0], ["balance_num", ">=", $outinfo['good_num']], ['companyNo', "=", $outinfo['companyNo']]])->lock(true)->find();
  4040. if ($cgd == false) {
  4041. return false;
  4042. }
  4043. $good = Db::name("good")->where(["spuCode" => $outinfo['spuCode'], "is_del" => 0])->find();
  4044. if ($good == false) {
  4045. return false;
  4046. }
  4047. $cgdinfo = Db::name("purchease_order")->where(['cgdNo' => $cgd['cgdNo'], "is_del" => 0])->find();
  4048. if ($cgdinfo == false) {
  4049. return false;
  4050. }
  4051. $QrdCgd = [
  4052. "cgdNo" => makeNo("CG"),
  4053. "bkcode" => $cgdinfo['bkcode'],
  4054. 'wsm_code' => $cgdinfo['wsm_code'],
  4055. "cgder_id" => $cgdinfo['cgder_id'],
  4056. "cgder" => $cgdinfo['cgder'],
  4057. "spuCode" => $cgdinfo['spuCode'],
  4058. "good_name" => $cgdinfo['good_name'],
  4059. "good_num" => $outinfo['good_num'],
  4060. "good_price" => $cgdinfo['good_price'],
  4061. "total_fee" => round($cgdinfo['good_price'] * $outinfo['good_num'], 2),
  4062. "pakge_fee" => $cgdinfo['pakge_fee'],
  4063. "cert_fee" => $cgdinfo['cert_fee'],
  4064. "open_fee" => $cgdinfo['open_fee'],
  4065. "delivery_fee" => $cgdinfo['delivery_fee'],
  4066. "mark_fee" => $cgdinfo['mark_fee'],
  4067. "teach_fee" => $cgdinfo['teach_fee'],
  4068. "nake_fee" => $cgdinfo['nake_fee'],
  4069. "demo_fee" => $cgdinfo['demo_fee'],
  4070. "weight" => $cgdinfo['weight'],
  4071. "diff_weight" => $cgdinfo['diff_weight'],
  4072. "diff_fee" => $cgdinfo['diff_fee'],
  4073. "gold_price" => $cgdinfo['gold_price'],
  4074. "supplierNo" => $cgdinfo['supplierNo'],
  4075. "supplier_name" => $cgdinfo['supplier_name'],
  4076. "companyNo" => $cgdinfo['companyNo'],
  4077. "send_status" => 3,
  4078. "send_num" => $outinfo['good_num'],
  4079. "wsend_num" => 0,
  4080. "remark" => $cgdinfo['remark'],
  4081. "status" => 3,
  4082. "lasttime" => $cgdinfo['lasttime'],
  4083. "is_del" => 0,
  4084. "order_type" => $outinfo['order_type'],
  4085. "order_source" => $outinfo['order_source'],
  4086. "good_type" => $cgdinfo['good_type'],
  4087. "addtime" => date("Y-m-d H:i:s"),
  4088. "updatetime" => date("Y-m-d H:i:s"),
  4089. 'good_createrid' => $good['createrid'],
  4090. 'good_creater' => $good['creater'],//商品创建人
  4091. ];
  4092. $insetrCgd = Db::name("purchease_order")->insert($QrdCgd);
  4093. if ($insetrCgd == false) {
  4094. return false;
  4095. } else {
  4096. $standing_book_da = array_merge($standing_book_da, [
  4097. 'orderCode' => $outinfo['orderCode'],
  4098. 'cgdNo' => $cgdinfo['cgdNo'],
  4099. 'spuCode' => $outinfo['spuCode'],
  4100. 'order_type' => $QrdCgd['order_type'],
  4101. 'order_source' => $QrdCgd['order_source'],
  4102. 'supplierNo' => $cgdinfo['supplierNo'],
  4103. 'companyNo' => $cgdinfo['companyNo'],
  4104. 'bk_code' => $cgdinfo['bkcode'],
  4105. 'purchease_id' => Db::name('purchease')->where('bk_code', $cgdinfo['bkcode'])->value('id'),
  4106. ]);
  4107. }
  4108. if ($good['is_gold_price'] == 1 && $good['is_stock'] == 1) {
  4109. $gold = Db::name("gold_price1")
  4110. ->field('id,price')
  4111. ->where(["type" => $good['noble_metal'], "is_del" => 0, "status" => 1])
  4112. ->order("addtime desc")
  4113. ->find();
  4114. //$saleprice(最终售价) = (打样费/购买数量 + 开模费/购买数量 + 商品重量* 最新金价 + 工艺费* 商品重量+包装费+加标费+证书费+产品裸价+物流费)/(1-成本售价/100);
  4115. $sale_price = $good['demo_fee'] / $outinfo['good_num'] + $good['open_fee'] / $outinfo['good_num'] + $good['noble_weight'] * $gold["price"] + $outinfo['cost_fee'] * $good['noble_weight'] + $cgdinfo['pakge_fee'] + $cgdinfo['mark_fee'] + $cgdinfo['cert_fee'] + $cgdinfo['nake_fee'] + $cgdinfo['delivery_fee'];
  4116. $ct['cgd_gold_price'] = $gold["price"];
  4117. $updat = [
  4118. "sale_price" => $sale_price,
  4119. "total_price" => round($sale_price * $outinfo['good_num'], 2),
  4120. "origin_price" => $cgdinfo['good_price'],
  4121. "gold_price" => $gold["price"],
  4122. ];
  4123. $upsale = Db::name("sale")->where(["orderCode" => $outinfo['orderCode']])->update($updat);
  4124. if ($upsale == false) {
  4125. return false;
  4126. }
  4127. }
  4128. $merge_num = Db::name("purchease_order")->where(["bkcode" => $cgdinfo['bkcode'], "order_type" => 1, "is_del" => 0])
  4129. ->where("order_source", "<>", 0)
  4130. ->field("sum(send_num)-sum(th_num) as num")->find();
  4131. $cgd['balance_num'] = $cgd['total_num'] - $merge_num['num'];
  4132. $cgd['merge_num'] = $merge_num['num'];
  4133. $cgd['updatetime'] = date("Y-m-d H:i:s");
  4134. $up = Db::name("order_bk")->save($cgd);
  4135. if ($up == false) {
  4136. return false;
  4137. }
  4138. $data = [
  4139. "orderCode" => $outinfo['orderCode'],
  4140. "cgdNo" => $QrdCgd['cgdNo'],
  4141. "spuCode" => $outinfo['spuCode'],
  4142. "companyNo" => $outinfo['companyNo'],
  4143. "good_num" => $outinfo['good_num'],
  4144. "wsend_num" => $outinfo['good_num'],
  4145. "send_num" => 0,
  4146. "wait_num" => $outinfo['good_num'],
  4147. "status" => 1,
  4148. "source" => 1,
  4149. ];
  4150. $order = Db::name("order_num")->save($data);
  4151. if ($order == false) {
  4152. return false;
  4153. }
  4154. return true;
  4155. }
  4156. public function addother()
  4157. {
  4158. $orderCode = isset($this->post['orderCode']) && $this->post['orderCode'] != "" ? trim($this->post['orderCode']) : "";
  4159. if ($orderCode == "") {
  4160. return error_show(1004, "参数orderCode不能为空");
  4161. }
  4162. $order = Db::name("sale")->where(["orderCode" => $orderCode, "is_del" => 0])->find();
  4163. if ($order == false) {
  4164. return error_show(1004, "未找到订单数据");
  4165. }
  4166. $paytime = isset($this->post['paytime']) && $this->post['paytime'] != "" ? $this->post['paytime'] : "";
  4167. $workNo = isset($this->post['workNo']) && $this->post['workNo'] != "" ? trim($this->post['workNo']) : "";
  4168. $platform_order = isset($this->post['platform_order']) && $this->post['platform_order'] != "" ? trim($this->post['platform_order']) : "";
  4169. $paytime == "" ? "" : $order['paytime'] = $paytime;
  4170. $order['workNo'] = $workNo;
  4171. $order['platform_order'] = $platform_order;
  4172. $order['updatetime'] = date("Y-m-d H:i:s");
  4173. $sa = Db::name("sale")->save($order);
  4174. if ($sa) {
  4175. return app_show(0, "更新成功");
  4176. } else {
  4177. return error_show(1004, "更新失败");
  4178. }
  4179. }
  4180. public function getPrice()
  4181. {
  4182. $skuCode = isset($this->post['skuCode']) && $this->post['skuCode'] != "" ? trim($this->post['skuCode']) : "";
  4183. if ($skuCode === "") {
  4184. return error_show(1003, "参数skuCode不能为空");
  4185. }
  4186. $is_activity = isset($this->post['is_activity']) && $this->post['is_activity'] !== "" ? intval($this->post['is_activity'])
  4187. : "";
  4188. if ($is_activity === "") {
  4189. return error_show(1003, "参数is_activity不能为空");
  4190. }
  4191. $sale_num = isset($this->post['sale_num']) && $this->post['sale_num'] !== "" ? intval($this->post['sale_num']) : "";
  4192. if ($sale_num === "") {
  4193. return error_show(1003, "参数sale_num不能为空");
  4194. }
  4195. $ct = Db::name('good_platform')->alias('a')->join('good b', 'b.spuCode=a.spuCode', 'left')
  4196. ->where(['a.skuCode' => $skuCode])->find();
  4197. if ($ct == false) {
  4198. return error_show(1002, "未找到商品数据");
  4199. }
  4200. $stock = 0;
  4201. if ($ct['is_stock'] == 1) {
  4202. $good_stock = Db::name("good_stock")->alias("a")->leftJoin("warehouse_info b", "a.wsm_code=b.wsm_code")->where
  4203. (["spuCode" => $ct['spuCode'], "a.is_del" => 0, "a.status" => 1, "b.wsm_type" => 5])->field("a.id,a.usable_stock,a.wait_out_stock")->find();
  4204. // $good_stock = Db::name("good_stock")->where(["spuCode" => $ct['spuCode'], "is_del" => 0])->find();
  4205. $stock = isset($good_stock['usable_stock']) ? $good_stock['usable_stock'] : "0";
  4206. }
  4207. if ($is_activity == 1) {
  4208. $act = Db::name("activity_info")->alias("a")->leftJoin("good_activity b", "a.activity_code=b.activity_code")
  4209. ->where(["a.skuCode" => $skuCode, "a.is_del" => 0, "a.status" => 1, "b.status" => 6, "b.is_del" => 0])->find();
  4210. if ($act == false) {
  4211. return error_show(1003, "未找到相关活动价");
  4212. }
  4213. if ($act['moq_num'] > $sale_num) {
  4214. return error_show(1003, "商品不满足活动价起订量{$act['moq_num']}");
  4215. }
  4216. if ($act['activity_stock'] < $sale_num) {
  4217. return error_show(1003, "商品活动库存剩余{$act['activity_stock']}");
  4218. }
  4219. return app_show(0, "获取成功", ['sale_price' => $act['activity_price'], "stock" => $act['activity_stock']]);
  4220. } else {
  4221. //good_nake 成本阶梯 good_ladder销售阶梯
  4222. $origin = Db::name("good_nake")->where([["spuCode", "=", $ct['spuCode']], ["is_del", "=", 0]])->order("min_num asc")->find();
  4223. if (!$origin) {
  4224. return error_show(1003, "没有找到成本数据");
  4225. }
  4226. $good = Db::name("good_ladder")->where(["skuCode" => $skuCode, "is_del" => 0, "status" => 1])->order("min_num asc")->find();
  4227. if (!$good) {
  4228. return error_show(1003, "未找到相关阶梯价格");
  4229. }
  4230. if (!isset($origin['min_num'])) $origin['min_num'] = 0;
  4231. //如果是库存品的话,只取销售的库存
  4232. if ($ct['is_stock'] == 1) $lastnum = $good['min_num'];
  4233. else $lastnum = max($origin['min_num'] ?? 0, $good['min_num']);
  4234. if ($sale_num < $lastnum) {
  4235. return error_show(1003, "商品不满足起订量{$lastnum}");
  4236. }
  4237. $good_temp = Db::name("good_ladder")->where(["skuCode" => $skuCode, "is_del" => 0, "status" => 1])->where('min_num', '<=', $sale_num)->order("min_num desc")->find();
  4238. if (!$good_temp) {
  4239. return error_show(1003, "未找到相关阶梯价格");
  4240. }
  4241. $cat_top_list = made($ct['cat_id']);
  4242. $cat_top_id = isset($cat_top_list[0]['id']) ? $cat_top_list[0]['id'] : 0;
  4243. if ($ct['is_gold_price'] == 1 && $cat_top_id == 6) {
  4244. $gold = Db::name("gold_price1")
  4245. ->field('id,price')
  4246. ->where(["type" => $ct['noble_metal'], "is_del" => 0, "status" => 1])
  4247. ->order("addtime desc")
  4248. ->find();
  4249. $saleprice = $ct['demo_fee'] / $sale_num + $ct['open_fee'] / $sale_num + $ct['noble_weight'] * $gold["price"] + $good_temp['cost_fee'] * $ct['noble_weight'] + $origin['package_fee'] + $origin['mark_fee'] + $origin['cert_fee'] + $origin['nake_fee'] + $origin['delivery_fee'];
  4250. return app_show(0, "获取成功", ['sale_price' => $saleprice, "stock" => $stock]);
  4251. }
  4252. return app_show(0, "获取成功", ['sale_price' => $good_temp['sale_price'], "stock" => $stock]);
  4253. }
  4254. }
  4255. public function saleuse()
  4256. {
  4257. $orderCode = isset($this->post['orderCode']) && !empty($this->post['orderCode']) ? $this->post['orderCode'] : "";
  4258. if ($orderCode == "") {
  4259. return error_show(1003, "参数orderCode不能为空");
  4260. }
  4261. $order = Db::name("sale")->where(["orderCode" => $orderCode, "is_del" => 0])->select()->toArray();
  4262. if (empty($order)) {
  4263. return error_show(1003, "订单数据未找到");
  4264. }
  4265. $useid = isset($this->post['useid']) && $this->post['useid'] != "" ? intval($this->post['useid']) : "";
  4266. if ($useid == "") {
  4267. return error_show(1003, "参数useid不能为空");
  4268. }
  4269. $use = Db::name("order_use")->where(["id" => $useid, "is_del" => 0])->find();
  4270. if ($use == false) {
  4271. return error_show(1003, "用途数据未找到");
  4272. }
  4273. $asve = ['use_order' => $useid, "updatetime" => date("Y-m-d H:i:s")];
  4274. $up = Db::name("sale")->where(["orderCode" => $orderCode, "is_del" => 0])->update($asve);
  4275. if ($up > 0) {
  4276. return app_show(0, "更新成功");
  4277. } else {
  4278. return error_show(1003, "更新失败");
  4279. }
  4280. }
  4281. public function goodzxinfo()
  4282. {
  4283. $orderCode = isset($this->post['spuCode']) && $this->post['spuCode'] != '' ? trim($this->post['spuCode']) : "";
  4284. if ($orderCode == "") {
  4285. return error_show(1003, "参数spuCode不能为空");
  4286. }
  4287. $order = Db::name("good_zixun")->where(["spuCode" => $orderCode, "is_del" => 0])->find();
  4288. if (empty($order)) {
  4289. return error_show(1003, "订单数据未找到");
  4290. }
  4291. $unit = Db::name("unit")->where(["id" => $order['good_unit']])->find();
  4292. if ($order['brand_id'] != 0) {
  4293. $brand = Db::name("brand")->where(["id" => $order['brand_id']])->find();
  4294. $order["brand_name"] = isset($brand['brand_name']) ? $brand['brand_name'] : "";
  4295. } else {
  4296. $order["brand_name"] = "";
  4297. $order["brand_id"] = "";
  4298. }
  4299. $order['specinfo'] = json_decode($order['specinfo'], true);
  4300. $order['unit'] = isset($unit['unit']) ? $unit['unit'] : '';
  4301. $order['cat_info'] = made($order['cat_id'], []);
  4302. $order['noble_name'] = isset($order['noble_metal']) && $order['noble_metal'] != 0 ? $this->noble[$order['noble_metal']] : "";
  4303. if ($order['is_gold_price'] == 1) {
  4304. $price = Db::name("gold_price1")->where(["type" => $order['noble_metal'], "status" => 1, "is_del" => 0])->order("addtime desc")->find();
  4305. }
  4306. $supplier = Db::name("supplier")->where(["code" => $order['supplierNo']])->find();
  4307. $order['supplier_name'] = isset($supplier['name']) ? $supplier['name'] : "";
  4308. $order['cgder'] = isset($supplier['person']) ? $supplier['person'] : "";
  4309. $order['cgderid'] = isset($supplier['personid']) ? $supplier['personid'] : "";
  4310. $palt = Db::name("platform")->where(["id" => $order['platform_id']])->find();
  4311. $order['platform_name'] = isset($palt['platform_name']) ? $palt['platform_name'] : "";
  4312. $company = Db::name("business")->where(["companyNo" => $order['companyNo']])->find();
  4313. $order['company'] = isset($company['company']) ? $company['company'] : "";
  4314. $order["gold_price"] = isset($price['price']) ? $price['price'] : 0;
  4315. $order["noble_weight"] = isset($order['weight']) ? $order['weight'] : 0;
  4316. return app_show(0, "获取成功", $order);
  4317. }
  4318. //获取采反商品详情,当数据不在good_zixun中,模仿goodzxinfo
  4319. public function getGoodZxInfoByNotZixun()
  4320. {
  4321. $param = $this->request->only(['spuCode'], 'post', 'trim');
  4322. $val = Validate::rule(['spuCode' => 'require']);
  4323. if (!$val->check($param)) return error_show(1004, $val->getError());
  4324. $order = Db::name('consult_bids')
  4325. ->field(true)
  4326. ->where(['spuCode' => $param['spuCode'], 'is_del' => 0])
  4327. ->find();
  4328. if (empty($order)) return error_show(1003, "数据未找到");
  4329. // $orderCode= isset($this->post['spuCode'])&&$this->post['spuCode']!=''?trim($this->post['spuCode']):"";
  4330. // if($orderCode==""){
  4331. // return error_show(1003,"参数spuCode不能为空");
  4332. // }
  4333. // $order= Db::name("good_zixun")->where(["spuCode"=>$orderCode,"is_del"=>0])->find();
  4334. // if(empty($order)){
  4335. // return error_show(1003,"订单数据未找到");
  4336. // }
  4337. $unit = Db::name("unit")->where(["id" => $order['unit_id']])->find();
  4338. if ($order['brand_id'] != 0) {
  4339. $brand = Db::name("brand")->where(["id" => $order['brand_id']])->find();
  4340. $order["brand_name"] = isset($brand['brand_name']) ? $brand['brand_name'] : "";
  4341. } else {
  4342. $order["brand_name"] = "";
  4343. $order["brand_id"] = "";
  4344. }
  4345. $order['specinfo'] = json_decode($order['specinfo'], true);
  4346. $order['unit'] = isset($unit['unit']) ? $unit['unit'] : '';
  4347. $order['cat_info'] = made($order['cat_id'], []);
  4348. $order['noble_name'] = isset($order['metal_id']) && $order['metal_id'] != 0 ? $this->noble[$order['metal_id']] : "";
  4349. if ($order['is_gold_price'] == 1) {
  4350. $price = Db::name("gold_price1")->where(["type" => $order['metal_id'], "status" => 1, "is_del" => 0])->order("addtime desc")->find();
  4351. }
  4352. $supplier = Db::name("supplier")->where(["code" => $order['supplierNo']])->find();
  4353. $order['supplier_name'] = isset($supplier['name']) ? $supplier['name'] : "";
  4354. // $palt =Db::name("platform")->where(["id"=>$order['platform_id']])->find();
  4355. // $order['platform_name']=isset($palt['platform_name']) ? $palt['platform_name']:"";
  4356. $order["gold_price"] = isset($price['price']) ? $price['price'] : 0;
  4357. $order["noble_weight"] = isset($order['weight']) ? $order['weight'] : 0;
  4358. $good_info = Db::name('good_basic')
  4359. ->field('id,createrid,creater')
  4360. ->where('is_del',0)
  4361. ->where('spuCode',$order['spuCode'])
  4362. ->findOrEmpty();
  4363. //补充商品创建人字段
  4364. // 2022-9-7号确认 creater创建人即采购单的采购员 咨询cgder 只是供应商负责人
  4365. $order['good_createrid']=$good_info['createrid']??$order['createrid'];
  4366. $order['good_creater']=$good_info['creater']??$order['creater'];
  4367. return app_show(0, "获取成功", $order);
  4368. }
  4369. //发货申请单导出
  4370. public function exportSaleOut()
  4371. {
  4372. $outCodes = $this->request->post('outCodes', [], 'trim');
  4373. if (empty($outCodes)) return error_show(1004, '要导出的发货申请单编号不能为空');
  4374. $i = 1;
  4375. $send_type = [1 => '直接发货', 2 => '延时发货'];
  4376. $status = [0 => '待发货', 1 => '待库管发货', 2 => '已发货待收货', 3 => '已收货', 4 => '已全部退货'];
  4377. $list = Db::name("order_out")
  4378. ->alias('a')
  4379. ->field('"" as 序号,a.addtime as 创建时间,po.cgdNo as 采购单编号,po.status as 采购单状态,po.cgder as 采购员,b.orderCode as 确认单号,b.addtime as 确认单时间,
  4380. b.good_code as 产品编号,b.good_name as 产品名称,"" as 规格,"" as 单位,po.supplier_name as 供应商名称,po.supplierNo as 供应商编号,po.nake_fee as 裸价,
  4381. a.post_fee as 物流费,b.send_type as 发货方式,po.good_price as 采购单价,b.remark as 确认单备注,po.good_num as 采购数量,po.total_fee as 采购货款,a.send_num 发货数量,
  4382. oa.contactor as 收货人,oa.mobile as 联系方式,oa.addr as 收货地址,oa.addr_code,oa.arrive_time as 到货时间,a.outCode as 发货申请单号,po.order_type,
  4383. b.platform_order 平台订单号,a.post_name 发货申请单物流公司,a.post_code 发货申请单物流单号,a.post_fee 发货申请单物流费用,a.remark 发货申请单备注,a.apply_name 申请人,b.cat_id 商品分类')
  4384. ->whereIn('a.outCode', $outCodes)
  4385. ->order("a.addtime desc")
  4386. ->withAttr('序号', function () use (&$i) {
  4387. return $i++;
  4388. })->withAttr('采购单状态', function ($val) use ($status) {
  4389. return isset($status[$val]) ? $status[$val] : '';
  4390. })->withAttr('发货方式', function ($val) use ($send_type) {
  4391. return isset($send_type[$val]) ? $send_type[$val] : '';
  4392. })->where("a.is_del", "=", 0)
  4393. ->leftJoin("sale b", "b.orderCode=a.orderCode")
  4394. ->leftJoin("order_addr oa", "oa.id=a.addrid AND oa.is_del=0")
  4395. ->leftJoin('order_send os', 'os.outCode=a.outCode ')
  4396. ->leftJoin("purchease_order po", "po.cgdNo=os.cgdNo AND po.is_del=0")
  4397. ->select()
  4398. ->toArray();
  4399. foreach ($list as &$value) {
  4400. if ($value['order_type'] == 3||$value['order_type'] == 4) {
  4401. $good = Db::name("good_zixun")
  4402. ->where(["spuCode" => $value['产品编号'], "is_del" => 0])
  4403. ->field('id,specinfo,good_unit,supplierNo')
  4404. ->find();
  4405. $specinfo = isset($good['specinfo']) ? json_decode($good['specinfo'], true) : [];
  4406. $speclist = [];
  4407. foreach ($specinfo as $val) {
  4408. $speclist[] = $val['spec_name'] . ':' . $val['spec_value_name'];
  4409. }
  4410. } else {
  4411. $good = Db::name('good_basic')
  4412. ->where(['spuCode' => $value['产品编号']])
  4413. ->field('good_unit,supplierNo')
  4414. ->find();
  4415. $spec = Db::name("good_spec")
  4416. ->field('id,spec_id,spec_value_id')
  4417. ->where(["spuCode" => $value['产品编号'], "is_del" => 0])
  4418. ->select()
  4419. ->toArray();
  4420. $speclist = [];
  4421. if (!empty($spec)) {
  4422. foreach ($spec as $val) {
  4423. $speclist[] = Db::name("specs")->where(["id" => $val['spec_id']])->value('spec_name', '') . ':' . Db::name("spec_value")->where(["id" => $val['spec_value_id']])->value('spec_value', '');
  4424. }
  4425. }
  4426. }
  4427. $value['供应商编号'] = $good['supplierNo']??"";
  4428. $supplier= Db::name("supplier")->where(["code"=>$value['供应商编号']])->field("name,person")->find();
  4429. $value['供应商名称'] = $supplier['name']??"";
  4430. $value['采购员'] = $supplier['person']??"";
  4431. $good_unit = isset($good['good_unit']) ? $good['good_unit'] : 0;
  4432. $value['规格'] = empty($speclist) ? '' : implode(',', $speclist);;
  4433. $value['单位'] = $good_unit ? Db::name('unit')->where(['id' => $good_unit, 'is_del' => 0])->value('unit', '') : '';
  4434. $value['商品分类'] = implode('/', array_column(made($value['商品分类']), 'name'));
  4435. $value['发货申请单物流单号'] = ' ' . $value['发货申请单物流单号'];//添加空格防止将数字转为科学计数法(比如,韵达的快递单号就是纯数字)
  4436. $addinfo =$value['addr_code']!=''?json_decode($value['addr_code'],true)??$value['addr_code']: '' ;
  4437. if(is_string($addinfo)&&$addinfo!=''){
  4438. $addinfo=["provice_code"=>'',"city_code"=>'',"area_code"=>''];
  4439. list($addinfo['provice_code'],$addinfo['city_code'],$addinfo['area_code']) = explode(",",$value['addr_code']);
  4440. }
  4441. $addr_cn =GetAddr(json_encode($addinfo));
  4442. $value['收货地址'] = $addr_cn.$value['收货地址'];
  4443. unset($value['order_type']);
  4444. unset($value['addr_code']);
  4445. }
  4446. if (empty($list)) $list[] = '没有可供导出的数据';
  4447. $headerArr = array_keys($list[0]);
  4448. excelSave('发货申请单导出' . date('YmdHis'), $headerArr, $list);
  4449. }
  4450. //发货申请单 签收(目前只改动状态,后面要实时查询物流信息,以判断是否签收)
  4451. public function saleoutReceipt()
  4452. {
  4453. $outCode = $this->request->post('outCode', '', 'trim');
  4454. if (empty($outCode)) return error_show(1004, '发货申请单编号不能为为空');
  4455. Db::startTrans();
  4456. try {
  4457. $rs = Db::name('order_out')
  4458. ->field('id,orderCode,apply_id')
  4459. ->where(['outCode' => $outCode, 'status' => 2, "is_del" => 0])
  4460. ->find();
  4461. if (empty($rs)) throw new Exception('该出库单不存在或不允许确认收货');
  4462. //发货单收货
  4463. $res_order_out = Db::name('order_out')
  4464. ->where(['id' => $rs['id'], 'status' => 2, "is_del" => 0])
  4465. ->update(['status' => 3, 'updatetime' => date('Y-m-d H:i:s')]);
  4466. //查询该发货单所属的销售单,是否还有未收货的其他发货单
  4467. $other_res_sale = Db::name('order_out')
  4468. ->where(['orderCode' => $rs['orderCode'], 'status' => 2, "is_del" => 0])
  4469. ->where('id', '<>', $rs['id'])
  4470. ->find();
  4471. if (empty($other_res_sale)) {
  4472. //所属销售单也确认收货
  4473. Db::name('sale')
  4474. ->where(['orderCode' => $rs['orderCode'], 'status' => 0])
  4475. ->update(['status' => 2, 'updatetime' => date('Y-m-d H:i:s')]);
  4476. }
  4477. //修改状态,添加待办
  4478. ActionLog::logAdd(['id' => $this->uid, 'nickname' => $this->uname], [
  4479. "order_code" => $outCode,
  4480. "status" => 2,//这里的status是之前的值
  4481. "action_remark" => '',//备注
  4482. "action_type" => "status"//新建create,编辑edit,更改状态status
  4483. ], "CKD", 3, $rs);
  4484. //将待办数据变为已办
  4485. ProcessOrder::AddProcess(['id' => $this->uid, 'nickname' => $this->uname], [
  4486. "order_code" => $outCode,
  4487. "order_id" => $rs['id'],
  4488. "order_status" => 3,
  4489. "order_type" => 'CKD',
  4490. "before_status" => 2,
  4491. 'holder_id' => $rs['apply_id']
  4492. ]);
  4493. if ($res_order_out) {
  4494. Db::commit();
  4495. return app_show(0, '收货完成');
  4496. } else {
  4497. Db::rollback();
  4498. error_show(1005, '收货失败');
  4499. }
  4500. } catch (\Exception $e) {
  4501. Db::rollback();
  4502. return error_show(1005, $e->getMessage());
  4503. }
  4504. }
  4505. //库管批量发货
  4506. public function outSendBatchByImport()
  4507. {
  4508. $param = $this->request->only(['list', 'token'], 'post', 'trim');
  4509. if (empty($param['list'])) return error_show(1005, 'list参数不能为空');
  4510. //只允许处理所属供应商下的采购单关联的发货单
  4511. $suppliers = Db::name('order_out')
  4512. ->alias('a')
  4513. ->leftJoin('order_num b', 'b.orderCode=a.orderCode')
  4514. ->leftJoin('purchease_order c', 'c.cgdNo=b.cgdNo')
  4515. ->where([
  4516. ['a.is_del', '=', 0],
  4517. ['c.order_type', '<>', 1],
  4518. ['a.outCode', 'in', array_column($param['list'], 'outCode')],
  4519. ])->column('c.supplierNo', 'a.outCode');
  4520. //检查这些供应商编码是否开通了账号
  4521. $temp_res = SupplierRelationUser::where(['is_del' => SupplierUser::$is_del_normal, 'status' => SupplierUser::$status_normal])
  4522. ->whereIn('supplierNo', array_values($suppliers))
  4523. ->column('supplierNo');
  4524. $temp = [];
  4525. foreach ($suppliers as $k => $v) {
  4526. if (in_array($v, $temp_res)) $temp[] = $k;
  4527. }
  4528. if (!empty($temp)) return json_show(1003, '不允许处理已开通账号的供应商的单子', $temp);
  4529. $user = GetUserInfo($param['token']);
  4530. $createrid = $user['data']['id']??0;//$this->uid;
  4531. $creater = $user['data']['nickname']??0;//$this->uname;
  4532. $own_roleid = Db::name('user_role')->where(['is_del'=>0,'uid'=>$createrid,'status'=>1])->value('roleid',0);
  4533. //所有发货单信息
  4534. $order_out_infos = Db::name("order_out")
  4535. ->where('status', 1)
  4536. ->where('is_del', 0)
  4537. ->whereIn('outCode', array_column($param['list'], 'outCode'))
  4538. ->column('id,status,send_num,orderCode,wsm_code,apply_id,apply_name', 'outCode');
  4539. //处理数据
  4540. Db::startTrans();
  4541. try {
  4542. $good_data = $temp_out_codes = $yz_data = [];
  4543. foreach ($param['list'] as $value) {
  4544. if (!isset($order_out_infos[$value['outCode']])) throw new Exception($value['outCode'] . '该发货单未找到或状态不允许发货');
  4545. //每次循环都需要重新查询对应数据,为了数据及时更新
  4546. $sale_infos = Db::name("sale")
  4547. ->where('orderCode', $order_out_infos[$value['outCode']]['orderCode'])
  4548. ->where('is_del', 0)
  4549. ->column('id,send_num,wsend_num,status,good_code,order_source,order_type,apply_id,apply_name,is_stock,cgderid,orderCode', 'orderCode');
  4550. if (!isset($sale_infos[$order_out_infos[$value['outCode']]['orderCode']])) throw new Exception($value['outCode'] . '该发货单对应的销售单未找到');
  4551. //判断发货单是否重复
  4552. if (isset($temp_out_codes[$value['outCode']])) {
  4553. Db::rollback();
  4554. return app_show(1005, '下列发货申请单号重复', [$value]);
  4555. } else $temp_out_codes[$value['outCode']] = $value['outCode'];
  4556. if ($sale_infos[$order_out_infos[$value['outCode']]['orderCode']]['is_stock'] == 1) {
  4557. if (!in_array($own_roleid, config('app.wsm_cgder_role'))) {
  4558. Db::rollback();
  4559. return app_show(1003, $value['outCode'] . '发货单只能由库管操作');
  4560. }
  4561. } else {
  4562. if($sale_infos[$order_out_infos[$value['outCode']]['orderCode']]['order_type']==3||$sale_infos[$order_out_infos[$value['outCode']]['orderCode']]['order_type']==4){
  4563. $personid = Db::name('good_zixun')->alias("a")->leftJoin("supplier b","a.supplierNo=b.code")
  4564. ->where(['a.spuCode' => $sale_infos[$order_out_infos[$value['outCode']]['orderCode']]['good_code'], 'a.is_del' => 0])
  4565. ->value('personid');
  4566. }else{
  4567. $personid = Db::name('good')->alias("a")->leftJoin("supplier b","a.supplierNo=b.code")
  4568. ->where(['a.spuCode' =>
  4569. $sale_infos[$order_out_infos[$value['outCode']]['orderCode']]['good_code'],'a.is_del' => 0])
  4570. ->value('personid');
  4571. }
  4572. if ($createrid != $personid) {
  4573. Db::rollback();
  4574. return app_show(1003, $value['outCode'] . '发货单只能由供应商负责人操作');
  4575. }
  4576. }
  4577. //【发货单】
  4578. //查询已有发货单信息及状态
  4579. //更新发货单
  4580. $up = Db::name("order_out")
  4581. ->where(['id' => $order_out_infos[$value['outCode']]['id'], 'outCode' => $value['outCode'], 'status' => 1, "is_del" => 0])
  4582. ->update([
  4583. 'post_name' => isset($value['post_name']) ? $value['post_name'] : '',
  4584. 'post_code' => $value['post_code'],
  4585. 'post_fee' => $value['post_fee'],
  4586. 'sendtime' => date('Y-m-d H:i:s'),
  4587. 'status' => 2,
  4588. 'updatetime' => date('Y-m-d H:i:s'),
  4589. 'remark' => isset($value['remark']) ? $value['remark'] : '',
  4590. ]);
  4591. if ($up) {
  4592. //修改状态,添加待办
  4593. ActionLog::logAdd(['id' => $createrid, 'nickname' => $creater], [
  4594. "order_code" => $value['outCode'],//出库单号
  4595. "status" => $order_out_infos[$value['outCode']]['status'],//这里的status是之前的值
  4596. "action_remark" => '',//备注
  4597. "action_type" => "edit"//新建create,编辑edit,更改状态status
  4598. ], "CKD", 2, $order_out_infos[$value['outCode']]);
  4599. ProcessOrder::AddProcess(['id' => $createrid, 'nickname' => $creater], [
  4600. "order_type" => 'CKD',
  4601. "order_code" => $value['outCode'],//出库单号
  4602. "order_id" => $order_out_infos[$value['outCode']]['id'],
  4603. "order_status" => 2,
  4604. "before_status" => $order_out_infos[$value['outCode']]['status'],
  4605. 'wait_id' => $order_out_infos[$value['outCode']]['apply_id'],
  4606. 'wait_name' => $order_out_infos[$value['outCode']]['apply_name'],
  4607. 'holder_id' => $order_out_infos[$value['outCode']]['apply_id'],
  4608. ]);
  4609. //【销售单】
  4610. $einfo = [];
  4611. $einfo['send_num'] = $sale_infos[$order_out_infos[$value['outCode']]['orderCode']]['send_num'] + $order_out_infos[$value['outCode']]['send_num'];
  4612. $einfo['wsend_num'] = $sale_infos[$order_out_infos[$value['outCode']]['orderCode']]['wsend_num'] - $order_out_infos[$value['outCode']]['send_num'];
  4613. $einfo['status'] = $einfo['wsend_num'] == 0 ? 2 : ($einfo['send_num'] == 0 ? 0 : 1);
  4614. $einfo['send_status'] = $einfo['wsend_num'] == 0 ? 3 : ($einfo['send_num'] == 0 ? 1 : 2);
  4615. $einfo['updatetime'] = date("Y-m-d H:i:s");
  4616. $saleup = Db::name("sale")
  4617. ->where('id', $sale_infos[$order_out_infos[$value['outCode']]['orderCode']]['id'])
  4618. ->update($einfo);
  4619. if ($saleup == false) throw new Exception($value['outCode'] . '销售单状态更新失败');
  4620. //修改状态,添加待办
  4621. ActionLog::logAdd(['id' => $createrid, 'nickname' => $creater], [
  4622. "order_code" => $order_out_infos[$value['outCode']]['orderCode'],//销售单号
  4623. "status" => $sale_infos[$order_out_infos[$value['outCode']]['orderCode']]['status'],//这里的status是之前的值
  4624. "action_remark" => '',//备注
  4625. "action_type" => "edit"//新建create,编辑edit,更改状态status
  4626. ], "XSQRD", $einfo['status'], $einfo);
  4627. ProcessOrder::AddProcess(['id' => $createrid, 'nickname' => $creater], [
  4628. "order_type" => 'XSQRD',
  4629. "order_code" => $order_out_infos[$value['outCode']]['orderCode'],//出库单号
  4630. "order_id" => $sale_infos[$order_out_infos[$value['outCode']]['orderCode']]['id'],
  4631. "order_status" => $einfo['status'],
  4632. "before_status" => $sale_infos[$order_out_infos[$value['outCode']]['orderCode']]['status'],
  4633. 'holder_id' => $sale_infos[$order_out_infos[$value['outCode']]['orderCode']]['apply_id']
  4634. ]);
  4635. if($sale_infos[$order_out_infos[$value['outCode']]['orderCode']]["order_type"]!=1){
  4636. //【库存】
  4637. $stock = Db::name("good_stock")
  4638. ->field('id,wait_out_stock,usable_stock,total_stock,updatetime')
  4639. ->where([
  4640. "is_del" => 0,
  4641. 'spuCode' => $sale_infos[$order_out_infos[$value['outCode']]['orderCode']]['good_code'],
  4642. "wsm_code" => $order_out_infos[$value['outCode']]['wsm_code'],
  4643. ])->find();
  4644. if ($stock == false) throw new Exception($value['outCode'] . '未找到库存数据');
  4645. else {
  4646. if ($order_out_infos[$value['outCode']]['send_num'] > $stock['wait_out_stock']) throw new Exception($value['outCode'] . '超出库存数量');
  4647. $stock['wait_out_stock'] -= $order_out_infos[$value['outCode']]['send_num'];
  4648. $stock['total_stock'] = $stock['wait_out_stock'] + $stock['usable_stock'];
  4649. $stock['updatetime'] = date("Y-m-d H:i:s");
  4650. $stock_rs = Db::name("good_stock")
  4651. ->where('id', $stock['id'])
  4652. ->update($stock);
  4653. if ($stock_rs == false) throw new Exception($value['outCode'] . '库存更新失败');
  4654. $outsend =Db::name("order_send")->where(["outCode"=> $value['outCode']])->findOrEmpty();
  4655. if(empty($outsend)){
  4656. Db::rollback();
  4657. return error_show(1002, "未找到关联采购单");
  4658. }
  4659. $cgdinfo= Db::name("purchease_order")->where(["cgdNo"=>$outsend['cgdNo'],"is_del"=>0])
  4660. ->findOrEmpty();
  4661. $bn_code =makeNo("BN");
  4662. $bnin=GoodStockInfo::AddBn($stock["id"],$bn_code,$order_out_infos[$value['outCode']]['send_num'],$cgdinfo['good_price']??0);
  4663. if($bnin==false){
  4664. Db::rollback();
  4665. return error_show(1004,"库存bn数据新增失败");
  4666. }
  4667. $bnup =GoodStockInfo::OrderBn($order_out_infos[$value['outCode']]['orderCode'],$stock["id"],$order_out_infos[$value['outCode']]['send_num'],0);
  4668. if($bnup==false){
  4669. Db::rollback();
  4670. return error_show(1004,"库存bn库存数更新失败");
  4671. }
  4672. $outsend['bnCode']=$bn_code;
  4673. $outsend['updatetime']=date("Y-m-d H:i:s");
  4674. $ps=Db::name("order_send")->save($outsend);
  4675. if($ps==false){
  4676. Db::rollback();
  4677. return error_show(1004,"库存bn库存数更新失败");
  4678. }
  4679. }
  4680. $good_data[] = [
  4681. 'good_log_code' => $value['outCode'],
  4682. 'stock_id' => $stock['id'],
  4683. 'type' => 2,
  4684. 'stock' => $order_out_infos[$value['outCode']]['send_num'],
  4685. 'stock_name' => 'wait_out_stock'
  4686. ];
  4687. }else{
  4688. // $bnup =SaleInfo::SendStock($order_out_infos[$value['outCode']]['orderCode'],$order_out_infos[$value['outCode']]['send_num']);
  4689. // if($bnup==false){
  4690. // Db::rollback();
  4691. // return error_show(1004,"库存bn库存数更新失败");
  4692. // }
  4693. $saleinfo =Db::name("sale_info")->where(["orderCode"=>$order_out_infos[$value['outCode']]['orderCode']])->select()->toArray();
  4694. if (!empty($saleinfo)){
  4695. $bnup =SaleInfo::SendStock($order_out_infos[$value['outCode']]['orderCode'],$order_out_infos[$value['outCode']]['send_num']);
  4696. if($bnup==false){
  4697. Db::rollback();
  4698. return error_show(1004,"库存bn库存数更新失败");
  4699. }
  4700. }else{
  4701. $stokc = Db::name("good_stock")->where(['spuCode' =>$sale_infos[$order_out_infos[$value['outCode']]['orderCode']]['good_code'], "wsm_code" => $order_out_infos[$value['outCode']]['wsm_code'], "is_del" => 0])->find();
  4702. if ($stokc == false) {
  4703. Db::rollback();
  4704. return error_show(1002, "未找到库存数据");
  4705. } else {
  4706. if ($order_out_infos[$value['outCode']]['send_num'] > $stokc['wait_out_stock']) {
  4707. Db::rollback();
  4708. return error_show(1002, "超出库存数量");
  4709. }
  4710. $stokc['wait_out_stock'] -= $order_out_infos[$value['outCode']]['send_num'];
  4711. $stokc['total_stock'] = $stokc['wait_out_stock'] + $stokc['usable_stock'];
  4712. // $stokc['intra_stock']+=$outinfo['send_num'];
  4713. $stokc['updatetime'] = date("Y-m-d H:i:s");
  4714. }
  4715. $stoc = Db::name("good_stock")->save($stokc);
  4716. if ($stoc == false) {
  4717. Db::rollback();
  4718. return error_show(1002, "库存更新失败");
  4719. }
  4720. }
  4721. }
  4722. } else throw new Exception($value['outCode'] . '发货失败');
  4723. Cache::store("redis")->handler()->lPush("SENDOUT",$value['outCode']);
  4724. //如果是有赞订单的话,将发货信息推到有赞
  4725. if($sale_infos[$order_out_infos[$value['outCode']]['orderCode']]['order_source']==5){
  4726. $yz_data[]=[
  4727. 'orderCode'=>$sale_infos[$order_out_infos[$value['outCode']]['orderCode']],
  4728. 'out_stype'=>isset($value['post_name']) ? $value['post_name'] : '',
  4729. 'post_code'=>$value['post_code'],
  4730. 'uid'=>$createrid,
  4731. 'uname'=>$creater,
  4732. 'order_out'=>$value['outCode'],
  4733. ];
  4734. }
  4735. }
  4736. if (!empty($good_data)) GoodLog::LogAdd(['id' => $createrid, 'nickname' => $creater], $good_data, "CKD");
  4737. Db::commit();
  4738. //如果是有赞订单的话,将发货信息推到有赞
  4739. //有赞信息有可能推送失败(比如超过72小时,不允许多次修改等),所以不应该和这里的事务放到一起
  4740. if ($yz_data) {
  4741. foreach ($yz_data as $yz) {
  4742. // $res = curl_request(config('app.yz_domain') . 'api/yz_out_send', ['orderCode' => $einfo['orderCode'], 'out_stype' => $post_name, 'post_code' => $post_code, 'uid' => $uid, 'uname' => $uname, 'order_out' => $outCode]);
  4743. curl_request(config('app.yz_domain') . 'api/yz_out_send', $yz);
  4744. }
  4745. // $res = json_decode($res, true);
  4746. // if ($res['code'] != 0) return app_show(0, '发货成功,' . $res['message']);
  4747. }
  4748. return app_show(0, '发货成功');
  4749. } catch (Exception $exception) {
  4750. Db::rollback();
  4751. return error_show(1004, $exception->getMessage());
  4752. }
  4753. }
  4754. //获取物流信息
  4755. public function getLogisticsInformation()
  4756. {
  4757. $post_code = $this->request->post('post_code', '', 'trim');
  4758. if (empty($post_code)) return error_show(1004, '快递单号不能为空');
  4759. $postCode = explode(",", $post_code);
  4760. $rs = Db::name('express_data')
  4761. ->where('post_code', $postCode[0])
  4762. ->where('status', ">=", 0)
  4763. ->withAttr('post_data', function ($val) {
  4764. return json_decode($val, true);
  4765. })->findOrEmpty();
  4766. settype($rs, 'object');//格式统一转为对象
  4767. return app_show(0, '请求成功', $rs);
  4768. }
  4769. }