OrderController.php 162 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111
  1. <?php
  2. namespace ghs\controllers;
  3. use biz\common\classes\GhsNotifyClass;
  4. use biz\common\classes\HdNotifyClass;
  5. use biz\shop\classes\ShopExtClass;
  6. use bizGhs\custom\classes\CustomDebtChangeClass;
  7. use bizGhs\express\classes\GhsDeliveryOrderClass;
  8. use bizGhs\express\services\DadaExpressServices;
  9. use bizGhs\ghs\classes\GhsClass;
  10. use bizGhs\order\classes\OrderItemClass;
  11. use bizGhs\order\classes\RefundOrderClass;
  12. use bizHd\purchase\classes\PurchaseClass;
  13. use bizHd\purchase\classes\PurchaseItemClass;
  14. use bizHd\purchase\services\PurchaseService;
  15. use bizHd\wx\classes\WxOpenClass;
  16. use bizGhs\custom\classes\CustomClass;
  17. use bizGhs\order\classes\OrderClass;
  18. use bizGhs\order\services\OrderService;
  19. use bizHd\saas\services\RegionService;
  20. use bizGhs\product\classes\ProductClass;
  21. use common\components\baiduAip;
  22. use common\components\dict;
  23. use common\components\dateUtil;
  24. use common\components\dirUtil;
  25. use common\components\freight;
  26. use common\components\httpUtil;
  27. use common\components\noticeUtil;
  28. use common\components\orderSn;
  29. use common\components\oss;
  30. use common\components\payUtil;
  31. use common\components\qrCodeUtil;
  32. use common\components\stringUtil;
  33. use Yii;
  34. use common\components\util;
  35. use biz\shop\classes\ShopAdminClass;
  36. use biz\shop\classes\ShopClass;
  37. use common\components\lakala\Lakala;
  38. use ghs\models\order\CreateOrderForm;
  39. class OrderController extends BaseController
  40. {
  41. public $guestAccess = ['create-order', 'order-relate', 'fast-pay', 'info'];
  42. //打印物流列表 ssh 20250712
  43. public function actionPrintWlList()
  44. {
  45. $get = Yii::$app->request->get();
  46. $begin = $get['begin'] ?? 1;
  47. $hour = $get['hour'] ?? 0;
  48. if ($hour > 24 || $hour < 0) {
  49. util::fail('必须0到24点');
  50. }
  51. if ($begin == 0) {
  52. $date = date('Y-m-d', strtotime('-1 day'));
  53. } else {
  54. $date = date('Y-m-d');
  55. }
  56. $beginGroup = $date . " {$hour}:00:00";
  57. $newTime = strtotime($beginGroup);
  58. $beginTime = date('Y-m-d H:i:s', $newTime);
  59. $endTime = date("Y-m-d H:i:s");
  60. $shop = $this->shop;
  61. OrderClass::printMyWlList($shop, $beginTime, $endTime);
  62. util::complete('打印成功');
  63. }
  64. //修改平账标识状态 ssh 20240405
  65. public function actionModifyClearSign()
  66. {
  67. $get = Yii::$app->request->get();
  68. $id = $get['id'] ?? '';
  69. $order = OrderClass::getById($id, true);
  70. if (empty($order)) {
  71. util::fail('没有找到订单');
  72. }
  73. if ($order->mainId != $this->mainId) {
  74. util::fail('不是你的订单');
  75. }
  76. if (!in_array($order->status, [3, 4])) {
  77. util::fail('订单没有发货');
  78. }
  79. if ($order->clearSign == 1) {
  80. util::fail('不需要重复操作');
  81. }
  82. $connection = Yii::$app->db;
  83. $transaction = $connection->beginTransaction();
  84. try {
  85. $order->clearSign = 1;
  86. $order->save();
  87. $cgId = $order->purchaseId;
  88. $cg = PurchaseClass::getById($cgId, true);
  89. if (empty($cg)) {
  90. util::fail('没有找到采购信息');
  91. }
  92. $cg->clearSign = 1;
  93. $cg->save();
  94. $transaction->commit();
  95. util::complete();
  96. } catch (\Exception $e) {
  97. $transaction->rollBack();
  98. Yii::error("操作失败原因:" . $e->getMessage());
  99. util::fail('操作失败');
  100. }
  101. }
  102. //下载图片版订单 ssh 20240321
  103. public function actionDown()
  104. {
  105. $get = Yii::$app->request->get();
  106. $id = $get['id'] ?? '';
  107. $all = $get['all'] ?? 0;
  108. $order = OrderClass::getById($id, true);
  109. if (empty($order)) {
  110. util::fail('没有找到订单');
  111. }
  112. if ($order->mainId != $this->mainId) {
  113. util::fail('不是你的订单');
  114. }
  115. $customName = $order->customName ?? '';
  116. $date = date("Ymd", strtotime($order->addTime));
  117. $orderSn = $order->orderSn ?? '';
  118. $name = $customName . '_' . $date . '_' . $orderSn;
  119. $shop = $this->shop;
  120. $staff = $this->shopAdmin;
  121. $respond = OrderClass::createImgOrder($order, $shop, $staff, $all);
  122. $imgUrl = $respond['imgFile'] ?? '';
  123. $file = fopen($imgUrl, "rb");
  124. Header("Content-type: application/octet-stream ");
  125. Header("Accept-Ranges: bytes ");
  126. Header("Content-Disposition: attachment;filename={$name}.png");
  127. $contents = "";
  128. while (!feof($file)) {
  129. $contents .= fread($file, 8192);
  130. }
  131. echo $contents;
  132. fclose($file);
  133. }
  134. //确认送达
  135. public function actionConfirmReach()
  136. {
  137. $get = Yii::$app->request->get();
  138. $id = $get['id'] ?? '';
  139. $order = OrderClass::getById($id, true);
  140. if (empty($order)) {
  141. util::fail('没有找到订单');
  142. }
  143. if ($order->mainId != $this->mainId) {
  144. util::fail('不是你的订单');
  145. }
  146. if ($order->status == 1) {
  147. util::fail('订单待付款');
  148. }
  149. if ($order->status == 4) {
  150. util::fail('订单已完成');
  151. }
  152. if ($order->status == 5) {
  153. util::fail('订单已取消');
  154. }
  155. if (!in_array($order->sendStatus, [-1, -4, -2])) {
  156. util::fail('已经叫跑腿了');
  157. }
  158. $connection = Yii::$app->db;
  159. $transaction = $connection->beginTransaction();
  160. try {
  161. $staff = $this->shopAdmin;
  162. $staffId = $staff->id ?? 0;
  163. $staffName = $staff->name ?? '';
  164. $params = ['staffId' => $staffId, 'staffName' => $staffName];
  165. OrderClass::confirmReach($order, $params);
  166. $transaction->commit();
  167. util::complete('操作成功');
  168. } catch (\Exception $e) {
  169. $transaction->rollBack();
  170. Yii::error("操作失败原因:" . $e->getMessage());
  171. util::fail('确认失败');
  172. }
  173. }
  174. public function actionAllFh()
  175. {
  176. $post = Yii::$app->request->post();
  177. $ids = $post['ids'] ?? '';
  178. if (empty($ids)) {
  179. util::fail('请选择要合并发货的订单');
  180. }
  181. $arr = explode(',', $ids);
  182. if (empty($arr)) {
  183. util::fail('请选择要合并发货的订单哦');
  184. }
  185. $fhWl = $post['fhWl'] ?? '';
  186. $fhWlNo = $post['fhWlNo'] ?? '';
  187. $fhType = 0;
  188. $params = [
  189. 'fhType' => $fhType,
  190. 'fhWl' => $fhWl,
  191. 'fhWlNo' => $fhWlNo,
  192. ];
  193. $connection = Yii::$app->db;
  194. $transaction = $connection->beginTransaction();
  195. try {
  196. $all = OrderClass::getAllByCondition(['id' => ['in', $arr]], null, '*', null, true);
  197. foreach ($all as $order) {
  198. if ($order->book == 1) {
  199. util::fail('有预订单,不能一起发货');
  200. }
  201. if ($order->mainId != $this->mainId) {
  202. util::fail('不是你的订单哦');
  203. }
  204. OrderClass::orderSend($order, $params, true);
  205. }
  206. $transaction->commit();
  207. util::complete();
  208. } catch (\Exception $e) {
  209. $transaction->rollBack();
  210. Yii::error("操作失败原因:" . $e->getMessage());
  211. util::fail('操作失败');
  212. }
  213. }
  214. //发货 ssh 20230613
  215. public function actionFh()
  216. {
  217. $post = Yii::$app->request->post();
  218. $id = $post['id'] ?? '';
  219. $order = OrderClass::getById($id, true);
  220. OrderClass::valid($order, $this->shopId);
  221. $staff = $this->shopAdmin;
  222. $staffId = $staff->id ?? 0;
  223. $staffName = $staff->name ?? '';
  224. $fhWl = $post['fhWl'] ?? '';
  225. $fhWlNo = $post['fhWlNo'] ?? '';
  226. $fhType = $post['fhType'] ?? '';
  227. $params = [
  228. 'fhType' => $fhType,
  229. 'fhWl' => $fhWl,
  230. 'fhWlNo' => $fhWlNo,
  231. 'staffId' => $staffId,
  232. 'staffName' => $staffName,
  233. ];
  234. if ($order->book == 1) {
  235. util::fail('预订单不能直接发货');
  236. }
  237. $connection = Yii::$app->db;
  238. $transaction = $connection->beginTransaction();
  239. try {
  240. //花店会增加路上库存
  241. OrderClass::orderSend($order, $params);
  242. $transaction->commit();
  243. util::complete();
  244. } catch (\Exception $e) {
  245. $transaction->rollBack();
  246. Yii::error("操作失败原因:" . $e->getMessage());
  247. util::fail('操作失败');
  248. }
  249. }
  250. //合并打印 ssh 20230929
  251. public function actionMergePrint()
  252. {
  253. $post = Yii::$app->request->post();
  254. $ids = $post['ids'] ?? '';
  255. if (empty($ids)) {
  256. util::fail('请选择要合并打印的订单');
  257. }
  258. $arr = explode(',', $ids);
  259. if (empty($arr)) {
  260. util::fail('请选择要合并打印的订单哦');
  261. }
  262. if (getenv('YII_ENV') == 'production') {
  263. if ($this->mainId != 10536 && $this->mainId != 50) {
  264. //util::fail('功能开发中');
  265. }
  266. } else {
  267. if ($this->mainId != 11) {
  268. //util::fail('功能开发中');
  269. }
  270. }
  271. OrderClass::mergePrintOrder($arr, $this->mainId);
  272. util::complete('打印成功');
  273. }
  274. //修改分工 ssh 20221129
  275. public function actionChangeWorker()
  276. {
  277. $post = Yii::$app->request->post();
  278. $id = $post['id'] ?? 0;
  279. $shopAdminId = $post['shopAdminId'] ?? 0;
  280. $shopAdminName = $post['shopAdminName'] ?? '';
  281. $order = OrderClass::getById($id, true);
  282. OrderClass::valid($order, $this->shopId);
  283. $preShopAdminId = $order->shopAdminId ?? 0;
  284. if (!empty($preShopAdminId)) {
  285. $shopAdmin = $this->shopAdmin;
  286. if (isset($shopAdmin->super) == false || $shopAdmin->super != 1) {
  287. util::fail('管理员才能操作');
  288. }
  289. }
  290. $order->shopAdminId = $shopAdminId;
  291. $order->shopAdminName = $shopAdminName;
  292. $order->save();
  293. util::complete();
  294. }
  295. //预订单到货 ssh 20220321
  296. public function actionArrival()
  297. {
  298. //避免重复提交
  299. $adminId = $this->adminId;
  300. util::checkRepeatCommit($adminId, 6);
  301. $post = Yii::$app->request->post();
  302. $id = $post['id'] ?? 0;
  303. $todayBill = $post['todayBill'] ?? 1;
  304. $connection = Yii::$app->db;
  305. $transaction = $connection->beginTransaction();
  306. try {
  307. $order = OrderClass::getById($id, true);
  308. OrderClass::valid($order, $this->shopId);
  309. $post['shopAdminId'] = $this->shopAdminId;
  310. $post['shopAdminName'] = $this->shopAdmin ? $this->shopAdmin->name : '';
  311. $shop = $this->shop;
  312. $bookSn = $shop->bookSn ?? 0;
  313. if (!empty($bookSn)) {
  314. if ($order->bookSn == $bookSn) {
  315. util::fail('预订结束了才能确认');
  316. }
  317. }
  318. OrderService::arrival($order, $post);
  319. if ($todayBill == 0) {
  320. $lastTime = time() - 86400;
  321. $payTime = date("Y-m-d H:i:s", $lastTime);
  322. $order->payTime = $payTime;
  323. $order->save();
  324. $purchaseId = $order->purchaseId ?? 0;
  325. $cg = PurchaseClass::getById($purchaseId, true);
  326. if (!empty($cg)) {
  327. $cg->payTime = $payTime;
  328. $cg->save();
  329. }
  330. }
  331. $transaction->commit();
  332. util::success($order);
  333. } catch (\Exception $e) {
  334. $transaction->rollBack();
  335. Yii::error("操作失败原因:" . $e->getMessage());
  336. util::fail('操作失败');
  337. }
  338. }
  339. //到货获取订单详情 ssh 20220323
  340. public function actionArrivalDetail()
  341. {
  342. $get = Yii::$app->request->get();
  343. $id = $get['id'] ?? 0;
  344. $info = OrderClass::getById($id);
  345. OrderClass::valid($info, $this->shopId);
  346. $showItemData = OrderClass::getOriginalShowItem(true, $info);
  347. $itemList = $showItemData['list'] ?? [];
  348. $info['product'] = $itemList;
  349. $kiloFee = $this->shop->kiloFee ?? 0;
  350. $miniKilo = $this->shop->miniKilo ?? 0;
  351. $info['kiloFee'] = $kiloFee;
  352. $info['miniKilo'] = $miniKilo;
  353. util::success($info);
  354. }
  355. //支付宝扫码支付 ssh 20210103
  356. public function actionScanPayCheck()
  357. {
  358. $get = Yii::$app->request->get();
  359. $id = isset($get['id']) ? $get['id'] : 0;
  360. $order = OrderClass::getById($id, true);
  361. if ($order->status != OrderClass::ORDER_STATUS_UN_PAY && $order->status != OrderClass::ORDER_STATUS_CANCEL) {
  362. util::success(['returnStatus' => 'SUCCESS']);
  363. }
  364. $deadline = $order->deadline ?? '';
  365. $deadTime = strtotime($deadline);
  366. $current = time();
  367. $diff = bcsub($deadTime, $current);
  368. if ($diff <= 60) {
  369. util::success(['returnStatus' => 'EXPIRE']);
  370. }
  371. util::success(['returnStatus' => 'FAILURE']);
  372. }
  373. //微信和支付宝扫码支付 ssh 20210103
  374. public function actionScanPay()
  375. {
  376. ini_set('date.timezone', 'Asia/Shanghai');
  377. header("Content-type: text/html; charset=utf-8");
  378. $get = Yii::$app->request->get();
  379. $id = isset($get['id']) ? $get['id'] : 0;
  380. $order = OrderClass::getById($id, true);
  381. if (isset($order->status) == false || $order->status != 1) {
  382. util::success(['returnStatus' => 'FAILURE'], '不是待付款订单');
  383. }
  384. OrderClass::valid($order, $this->shopId);
  385. $cgId = $order->purchaseId ?? 0;
  386. $cg = PurchaseClass::getById($cgId, true);
  387. $orderSn = $cg->orderSn ?? '';
  388. if (empty($orderSn)) {
  389. util::success(['returnStatus' => 'FAILURE'], '没有找到采购单');
  390. }
  391. $deadline = $cg->deadline;
  392. $current = date("Y-m-d H:i:s");
  393. if ((strtotime($deadline) + 20) < strtotime($current)) {
  394. util::success(['returnStatus' => 'FAILURE'], '订单已经失效');
  395. }
  396. $totalFee = $cg->actPrice ?? 0;
  397. $subject = '购买鲜花';
  398. $totalAmount = $totalFee;
  399. $body = "到店订单";
  400. //标记为扫码支付 和 自取订单
  401. $order->codePay = 2;
  402. $order->sendType = OrderClass::SEND_TYPE_NO;
  403. $order->save();
  404. $cg->getType = PurchaseClass::GET_TYPE_SELF_GET;
  405. $cg->codePay = 2;
  406. $cg->save();
  407. $shop = $this->shop;
  408. $currentCapitalType = dict::getDict('capitalType', 'xhPurchase', 'id');
  409. $wxPayWay = dict::getDict('payWay', 'wxPay');
  410. $aliPayWay = dict::getDict('payWay', 'alipay');
  411. $payWay = Yii::$app->request->get('payWay', $wxPayWay);
  412. if ($payWay == $wxPayWay) {
  413. if (isset($order->wxPayUrl) && !empty($order->wxPayUrl)) {
  414. $url = $order->wxPayUrl;
  415. } else {
  416. util::fail('暂不支持');
  417. $merchantExtend = WxOpenClass::getWxInfo();
  418. $merchantPrivateKeyPath = Yii::getAlias("@vendor/lakala") . '/production/api_private_key.pem';
  419. $lklCertificatePath = Yii::getAlias("@vendor/lakala") . '/production/lkl-apigw-v1.cer';
  420. $params = [
  421. 'appid' => 'OP00002119',
  422. 'serial_no' => '018b08cfddbd',
  423. 'merchant_no' => $shop->lklSjNo,
  424. 'term_no' => $shop->lklScanTermNo,
  425. 'merchantPrivateKeyPath' => $merchantPrivateKeyPath,
  426. 'lklCertificatePath' => $lklCertificatePath,
  427. ];
  428. $laResource = new Lakala($params);
  429. $notifyUrl = Yii::$app->params['hdHost'] . "/notice/pay-callback";
  430. $wxParams = [
  431. 'orderSn' => $orderSn,
  432. 'amount' => $totalFee,
  433. 'capitalType' => $currentCapitalType,
  434. 'notifyUrl' => $notifyUrl,
  435. 'subject' => $subject,
  436. 'couponId' => 0,
  437. 'wxAppId' => $merchantExtend['miniAppId'],
  438. ];
  439. $response = $laResource->driveNativeWxPay($wxParams);
  440. if (isset($response['code']) == false || $response['code'] != 'BBS00000') {
  441. $msg = $response['msg'] ?? '';
  442. noticeUtil::push($msg, '15280215347');
  443. util::fail('二维码生成失败');
  444. }
  445. $url = isset($response['resp_data']['acc_resp_fields']['code']) ? $response['resp_data']['acc_resp_fields']['code'] : '';
  446. if (empty($url)) {
  447. util::fail('二维码生成失败..');
  448. }
  449. $order->wxPayUrl = $url;
  450. $order->save();
  451. }
  452. $suffixUrl = qrCodeUtil::generateShortTimeGatheringQrCode($url, $this->sjId, $this->shopId, $payWay);
  453. $payUrl = Yii::$app->params['ghsImgHost'] . $suffixUrl;
  454. util::success(['url' => $payUrl, 'returnStatus' => 'SUCCESS']);
  455. }
  456. if ($payWay == $aliPayWay) {
  457. if (isset($order->aliPayUrl) && !empty($order->aliPayUrl)) {
  458. $url = $order->aliPayUrl;
  459. } else {
  460. $merchantPrivateKeyPath = Yii::getAlias("@vendor/lakala") . '/production/api_private_key.pem';
  461. $lklCertificatePath = Yii::getAlias("@vendor/lakala") . '/production/lkl-apigw-v1.cer';
  462. $params = [
  463. 'appid' => 'OP00002119',
  464. 'serial_no' => '018b08cfddbd',
  465. 'merchant_no' => $shop->lklSjNo,
  466. 'term_no' => $shop->lklScanTermNo,
  467. 'merchantPrivateKeyPath' => $merchantPrivateKeyPath,
  468. 'lklCertificatePath' => $lklCertificatePath,
  469. ];
  470. $laResource = new Lakala($params);
  471. $notifyUrl = Yii::$app->params['hdHost'] . "/notice/pay-callback";
  472. $aliParams = [
  473. 'orderSn' => $orderSn,
  474. 'amount' => $totalFee,
  475. 'capitalType' => $currentCapitalType,
  476. 'notifyUrl' => $notifyUrl,
  477. 'subject' => $subject,
  478. ];
  479. $response = $laResource->driveAliPay($aliParams);
  480. if (isset($response['code']) == false || $response['code'] != 'BBS00000') {
  481. util::fail('二维码生成失败');
  482. }
  483. $url = isset($response['resp_data']['acc_resp_fields']['code']) ? $response['resp_data']['acc_resp_fields']['code'] : '';
  484. if (empty($url)) {
  485. util::fail('二维码生成失败..');
  486. }
  487. $order->aliPayUrl = $url;
  488. $order->save();
  489. }
  490. $suffixUrl = qrCodeUtil::generateShortTimeGatheringQrCode($url, $this->sjId, $this->shopId, $payWay);
  491. $payUrl = Yii::$app->params['ghsImgHost'] . $suffixUrl;
  492. util::success(['url' => $payUrl, 'returnStatus' => 'SUCCESS']);
  493. }
  494. util::success(['returnStatus' => 'FAILURE'], '不支持的收款方式');
  495. }
  496. //微信和支付宝付款码支付复查 ssh 20211231
  497. public function actionCodePayCheck()
  498. {
  499. ini_set('date.timezone', 'Asia/Shanghai');
  500. header("Content-type: text/html; charset=utf-8");
  501. $get = Yii::$app->request->get();
  502. $id = isset($get['id']) ? $get['id'] : 0;
  503. util::checkRepeatCommit($id, 3);
  504. $order = OrderClass::getById($id, true);
  505. if (empty($order)) {
  506. util::success(['returnStatus' => 'SUCCESS']);
  507. }
  508. if ($order->status == OrderClass::ORDER_STATUS_COMPLETE) {
  509. util::complete('订单已付款');
  510. }
  511. if ($order->status == OrderClass::ORDER_STATUS_CANCEL) {
  512. util::complete('订单已取消');
  513. }
  514. if ($order->status != OrderClass::ORDER_STATUS_UN_PAY) {
  515. util::complete('订单不是待付款状态');
  516. }
  517. OrderClass::valid($order, $this->shopId);
  518. $cgId = $order->purchaseId ?? 0;
  519. $cg = PurchaseClass::getById($cgId, true);
  520. $orderSn = $cg->orderSn ?? '';
  521. $totalFee = $cg->actPrice ?? 0;
  522. if (empty($orderSn)) {
  523. util::complete('没有找到采购单');
  524. }
  525. $connection = Yii::$app->db;
  526. $transaction = $connection->beginTransaction();
  527. try {
  528. $capitalType = dict::getDict('capitalType', 'xhPurchase', 'id');
  529. $shop = $this->shop;
  530. $merchantPrivateKeyPath = Yii::getAlias("@vendor/lakala") . '/production/api_private_key.pem';
  531. $lklCertificatePath = Yii::getAlias("@vendor/lakala") . '/production/lkl-apigw-v1.cer';
  532. $params = [
  533. 'appid' => 'OP00002119',
  534. 'serial_no' => '018b08cfddbd',
  535. 'merchant_no' => $shop->lklSjNo,
  536. 'term_no' => $shop->lklScanTermNo,
  537. 'merchantPrivateKeyPath' => $merchantPrivateKeyPath,
  538. 'lklCertificatePath' => $lklCertificatePath,
  539. ];
  540. $laResource = new Lakala($params);
  541. $scanParams = ['orderSn' => $orderSn,];
  542. $response = $laResource->query($scanParams);
  543. if (isset($response['code']) && $response['code'] == 'BBS00000') {
  544. if (isset($response['resp_data']['trade_state']) && $response['resp_data']['trade_state'] == 'SUCCESS') {
  545. //支付成功
  546. $transactionId = $response['resp_data']['trade_no'] ?? '';
  547. $openId = '';
  548. $aliUserId = '';
  549. $cg->onlinePay = dict::getDict('onlinePay', 'yes');
  550. $cg->codePay = 1;
  551. $cg->payOpenId = $openId;
  552. $cg->aliUserId = $aliUserId;
  553. //自取订单
  554. $cg->getType = PurchaseClass::GET_TYPE_SELF_GET;
  555. $cg->save();
  556. $order->onlinePay = dict::getDict('onlinePay', 'yes');
  557. $order->codePay = 1;
  558. //自取订单
  559. $order->sendType = OrderClass::SEND_TYPE_NO;
  560. $order->save();
  561. $payWayType = dict::getDict('payWay', 'wxPay');
  562. $account_type = $response['resp_data']['account_type'] ?? '';
  563. if ($account_type == 'WECHAT') {
  564. $payWayType = dict::getDict('payWay', 'wxPay');
  565. }
  566. if ($account_type == 'ALIPAY') {
  567. $payWayType = dict::getDict('payWay', 'alipay');
  568. }
  569. $order->payWay = $payWayType;
  570. $order->save();
  571. $cg->payWay = $payWayType;
  572. $cg->save();
  573. $attach = '';
  574. payUtil::thirdPay($payWayType, $capitalType, $orderSn, $totalFee, $attach, $transactionId);
  575. $transaction->commit();
  576. $saleId = $order->id ?? 0;
  577. $order = OrderClass::getById($saleId, true);
  578. if (!empty($order)) {
  579. //解决扫码付重复打印问题
  580. $cacheKey = 'scan_pay_print_order_' . $orderSn;
  581. $has = Yii::$app->redis->executeCommand('GET', [$cacheKey]);
  582. if (!empty($has)) {
  583. return false;
  584. }
  585. Yii::$app->redis->executeCommand('SETEX', [$cacheKey, 1, 'has']);
  586. //订单生成时唤起在线打印
  587. if (isset($order->needPrint) && $order->needPrint == dict::getDict('needPrint', 'need')) {
  588. if ($order->status != 1 && $order->status != 5) {
  589. OrderClass::onlinePrint($order);
  590. $ext = $this->shopExt;
  591. if (isset($ext->printSn) && !empty($ext->printSn)) {
  592. $order->printNum += 1;
  593. $order->save();
  594. }
  595. }
  596. }
  597. ShopExtClass::ghsGatheringReport($order);
  598. }
  599. util::success(['returnStatus' => 'SUCCESS']);
  600. } else {
  601. util::complete('未知状态..');
  602. }
  603. } else {
  604. util::complete('未知状态....');
  605. }
  606. } catch (\Exception $e) {
  607. $transaction->rollBack();
  608. noticeUtil::push('查询订单状态失败:' . $e->getMessage(), '15280215347');
  609. util::fail('支付失败');
  610. }
  611. }
  612. //微信和支付宝付款码支付 ssh 2021.4.11
  613. public function actionCodePay()
  614. {
  615. ini_set('date.timezone', 'Asia/Shanghai');
  616. header("Content-type: text/html; charset=utf-8");
  617. $get = Yii::$app->request->get();
  618. $id = isset($get['id']) ? $get['id'] : 0;
  619. util::checkRepeatCommit($id, 3);
  620. $order = OrderClass::getById($id, true);
  621. if (empty($order)) {
  622. $msg = '没有找到订单';
  623. util::success(['returnStatus' => 'FAILURE'], $msg);
  624. }
  625. if ($order->status == 5) {
  626. $msg = '订单已取消';
  627. util::success(['returnStatus' => 'FAILURE'], $msg);
  628. }
  629. if ($order->status != 1) {
  630. $msg = '不是待付款订单';
  631. util::success(['returnStatus' => 'FAILURE'], $msg);
  632. }
  633. OrderClass::valid($order, $this->shopId);
  634. $cgId = $order->purchaseId ?? 0;
  635. $cg = PurchaseClass::getById($cgId, true);
  636. $orderSn = $cg->orderSn ?? '';
  637. if (empty($orderSn)) {
  638. $msg = '没有找到采购单';
  639. util::success(['returnStatus' => 'FAILURE'], $msg);
  640. }
  641. $codePayErrorKey = 'code_pay_error_' . $id;
  642. $hasFailPay = Yii::$app->redis->executeCommand('GET', [$codePayErrorKey]);
  643. //前面有付失败过,要重新生成单号
  644. if (!empty($hasFailPay)) {
  645. $oldOrderSn = $orderSn;
  646. $shopId = $cg->shopId ?? 0;
  647. $mainId = $cg->mainId ?? 0;
  648. $ghsId = $cg->ghsId ?? 0;
  649. $customId = $cg->customId ?? 0;
  650. $snData = ['shopId' => $shopId, 'mainId' => $mainId, 'ghsId' => $ghsId, 'customId' => $customId];
  651. $orderSn = orderSn::getPurchaseSn($snData);
  652. $cg->orderSn = $orderSn;
  653. $cg->save();
  654. //noticeUtil::push("重新扫码,成功更换单号 {$oldOrderSn} {$orderSn}", '15280215347');
  655. PurchaseItemClass::updateByCondition(['orderSn' => $oldOrderSn], ['orderSn' => $orderSn]);
  656. }
  657. $shop = $this->shop;
  658. $sj = $shop->merchantName;
  659. $shopName = $shop->shopName;
  660. $name = $shopName == '首店' ? $sj : $sj . '-' . $shopName;
  661. //付款码
  662. $authCode = (string)$get['authCode'] ?? '';
  663. $authCode = trim($authCode);
  664. if (empty($authCode)) {
  665. $msg = '没有扫到付款码';
  666. $remind = $msg . "(付款码:{$authCode})" . '(' . $name . ')';
  667. noticeUtil::push($remind . ' 编号001', '15280215347');
  668. util::success(['returnStatus' => 'FAILURE'], $msg);
  669. }
  670. //微信文档说明 https://pay.weixin.qq.com/doc/v2/merchant/4011936234
  671. $wxPattern = '/^(10|11|12|13|14|15)\d{16}$/';
  672. //支付宝文档说明 https://opendocs.alipay.com/open/194/106039/
  673. $aliPattern = '/^(25|26|27|28|29|30)\d{14,22}$/';
  674. if (!preg_match($wxPattern, $authCode) && !preg_match($aliPattern, $authCode)) {
  675. $msg = '付款码错误,请使用微信或支付宝付款码';
  676. $remind = $msg . "(付款码:{$authCode})" . '(' . $name . ')';
  677. //noticeUtil::push($remind . ' 编号002', '15280215347');
  678. util::success(['returnStatus' => 'FAILURE'], $msg);
  679. }
  680. $deadline = $cg->deadline;
  681. $current = date("Y-m-d H:i:s");
  682. if ((strtotime($deadline) + 20) < strtotime($current)) {
  683. $msg = '订单已经失效';
  684. util::success(['returnStatus' => 'FAILURE'], $msg);
  685. }
  686. $totalFee = $cg->actPrice ?? 0;
  687. $connection = Yii::$app->db;
  688. $transaction = $connection->beginTransaction();
  689. try {
  690. $subject = '购买花材 ' . $orderSn;
  691. $capitalType = dict::getDict('capitalType', 'xhPurchase', 'id');
  692. $merchantPrivateKeyPath = Yii::getAlias("@vendor/lakala") . '/production/api_private_key.pem';
  693. $lklCertificatePath = Yii::getAlias("@vendor/lakala") . '/production/lkl-apigw-v1.cer';
  694. $params = [
  695. 'appid' => 'OP00002119',
  696. 'serial_no' => '018b08cfddbd',
  697. 'merchant_no' => $shop->lklSjNo,
  698. 'term_no' => $shop->lklScanTermNo,
  699. 'merchantPrivateKeyPath' => $merchantPrivateKeyPath,
  700. 'lklCertificatePath' => $lklCertificatePath,
  701. ];
  702. $laResource = new Lakala($params);
  703. $notifyUrl = Yii::$app->params['hdHost'] . "/notice/pay-callback";
  704. $scanParams = [
  705. 'orderSn' => $orderSn,
  706. 'amount' => $totalFee,
  707. 'capitalType' => $capitalType,
  708. 'notifyUrl' => $notifyUrl,
  709. 'subject' => $subject,
  710. 'authCode' => $authCode,
  711. ];
  712. $response = $laResource->scanPay($scanParams);
  713. if (isset($response['code']) && $response['code'] == 'BBS00000') {
  714. $account_type = $response['resp_data']['account_type'] ?? '';
  715. $payWayType = dict::getDict('payWay', 'wxPay');
  716. if ($account_type == 'WECHAT') {
  717. $payWayType = dict::getDict('payWay', 'wxPay');
  718. }
  719. if ($account_type == 'ALIPAY') {
  720. $payWayType = dict::getDict('payWay', 'alipay');
  721. }
  722. $order->payWay = $payWayType;
  723. $order->save();
  724. $cg->payWay = $payWayType;
  725. $cg->save();
  726. $transactionId = $response['resp_data']['trade_no'] ?? '';
  727. $openId = '';
  728. $aliUserId = '';
  729. $cg->onlinePay = dict::getDict('onlinePay', 'yes');
  730. $cg->codePay = 1;
  731. $cg->payOpenId = $openId;
  732. $cg->aliUserId = $aliUserId;
  733. $cg->save();
  734. $order->onlinePay = dict::getDict('onlinePay', 'yes');
  735. $order->codePay = 1;
  736. $order->save();
  737. $attach = '';
  738. payUtil::thirdPay($payWayType, $capitalType, $orderSn, $totalFee, $attach, $transactionId);
  739. $transaction->commit();
  740. $saleId = $order->id ?? 0;
  741. $order = OrderClass::getById($saleId, true);
  742. if (!empty($order)) {
  743. //解决扫码付重复打印问题
  744. $cacheKey = 'scan_pay_print_order_' . $orderSn;
  745. $has = Yii::$app->redis->executeCommand('GET', [$cacheKey]);
  746. if (!empty($has)) {
  747. return false;
  748. }
  749. Yii::$app->redis->executeCommand('SETEX', [$cacheKey, 1, 'has']);
  750. //订单生成时唤起在线打印
  751. if (isset($order->needPrint) && $order->needPrint == dict::getDict('needPrint', 'need')) {
  752. if ($order->status != 1 && $order->status != 5) {
  753. OrderClass::onlinePrint($order);
  754. $ext = $this->shopExt;
  755. if (isset($ext->printSn) && !empty($ext->printSn)) {
  756. $order->printNum += 1;
  757. $order->save();
  758. }
  759. }
  760. }
  761. ShopExtClass::ghsGatheringReport($order);
  762. }
  763. util::success(['returnStatus' => 'SUCCESS']);
  764. } else {
  765. //标记有没付成功的次数,原因有可能是余额不足等
  766. Yii::$app->redis->executeCommand('SETEX', [$codePayErrorKey, 1200, 'hasFail']);
  767. $msg = $response['msg'] ?? '';
  768. $retCode = $response['code'] ?? '';
  769. if ($retCode == 'BBS10000' || $retCode == 'BBS11105') {
  770. $shopId = $order->shopId;
  771. ShopExtClass::remindInputPassword($shopId);
  772. }
  773. $fullMsg = $msg . "(付款码:{$authCode})" . '(' . $name . ')';
  774. //noticeUtil::push($fullMsg . ' ' . $retCode . ' 编号007', '15280215347');
  775. util::success(['returnStatus' => 'FAILURE', 'returnCode' => $retCode], $msg);
  776. }
  777. } catch (\Exception $e) {
  778. $transaction->rollBack();
  779. Yii::error("支付失败原因:" . $e->getMessage());
  780. util::fail('支付失败');
  781. }
  782. }
  783. //订单列表 ssh 2021.1.20
  784. public function actionList()
  785. {
  786. $get = Yii::$app->request->get();
  787. $export = $get['export'] ?? 0;
  788. $onlySend = $get['onlySend'] ?? 0;
  789. ini_set('memory_limit', '5045M');
  790. set_time_limit(0);
  791. $staff = $this->shopAdmin;
  792. if (isset($staff->identity) && $staff->identity == 2) {
  793. //如果用于确认发货时要显出订单
  794. if ($onlySend == 0) {
  795. util::success(['list' => []]);
  796. }
  797. }
  798. $where['mainId'] = $this->mainId;
  799. $status = $get['status'] ?? 0;
  800. if (!empty($status)) {
  801. $where['status'] = $status;
  802. }
  803. $clearSign = $get['clearSign'] ?? -1;
  804. if ($clearSign > -1) {
  805. $where['clearSign'] = $clearSign;
  806. }
  807. $book = $get['book'] ?? -1;
  808. if ($book > -1) {
  809. $where['book'] = $book;
  810. }
  811. $searchTime = $get['searchTime'] ?? '';
  812. if (!empty($searchTime)) {
  813. $startTime = $get['startTime'] ?? '';
  814. $endTime = $get['endTime'] ?? '';
  815. $period = dateUtil::formatTime($searchTime, $startTime, $endTime);
  816. $where['payTime'] = ['between', [$period['startTime'], $period['endTime']]];
  817. }
  818. if ($export == 1) {
  819. ini_set('memory_limit', '2045M');
  820. set_time_limit(0);
  821. if (isset($where['payTime']) == false) {
  822. util::fail('请选时间段');
  823. }
  824. $start = $where['payTime'][1][0];
  825. $end = $where['payTime'][1][1];
  826. $monthTime = bcmul(31, 86400);
  827. $startArea = strtotime($start);
  828. $endArea = strtotime($end);
  829. $diff = bcsub($endArea, $startArea);
  830. if ($diff > $monthTime) {
  831. util::fail('最长可导出一个月');
  832. }
  833. }
  834. $name = $get['name'] ?? '';
  835. if (!empty($name)) {
  836. $searchType = $get['searchType'] ?? 0;
  837. if (empty($searchType)) {
  838. //订单编号
  839. if (strpos($name, 'XSD') === 0) {
  840. $where['orderSn'] = $name;
  841. } elseif (preg_match("/^[a-zA-Z\s]+$/", $name)) {
  842. $where['customNamePy'] = ['like', $name];
  843. } else {
  844. $where['customName'] = ['like', $name];
  845. }
  846. } elseif ($searchType == 1) {
  847. $where['sendNum'] = $name;
  848. } else {
  849. }
  850. }
  851. if (isset($get['customId']) && !empty($get['customId'])) {
  852. $where['customId'] = $get['customId'];
  853. }
  854. if (isset($get['ids']) && !empty($get['ids'])) {
  855. $stringIds = $get['ids'];
  856. $newIds = explode(',', $stringIds);
  857. $where['id'] = ['in', $newIds];
  858. }
  859. //选择开单人
  860. $shopAdminId = $get['shopAdminId'] ?? 0;
  861. if (!empty($shopAdminId)) {
  862. $where['shopAdminId'] = $shopAdminId;
  863. }
  864. $respond = OrderClass::getOrderList($where);
  865. if ($export == 1) {
  866. OrderClass::exportOrderData($respond, $this->mainId);
  867. }
  868. $respond['shop'] = $this->shop;
  869. $respond['shopExt'] = $this->shopExt;
  870. util::success($respond);
  871. }
  872. // 新订单列表详情 -- 可能与 actionList 很相似,但为不影响 actionList,重新创建个方法 shizhongqi 2022.06.23
  873. public function actionNewOrderList()
  874. {
  875. $get = Yii::$app->request->get();
  876. $where['shopId'] = $this->shopId;
  877. /*$status = $get['status'] ?? 0;
  878. if (!empty($status)) {
  879. $where['status'] = $status;
  880. }*/
  881. // 按类别生成查询条件:1.今日实收 2.今日欠款 3.总欠款(所有历史欠款)
  882. if (isset($get['type'])) {
  883. $type = $get['type'];
  884. if ($type == 1) { // 今日实收
  885. $get['searchTime'] = 'today';
  886. $where['debt'] = 0;
  887. $where['debtPrice'] = '0.00';
  888. $where['status'] = ['in', [OrderClass::ORDER_STATUS_UN_SEND, OrderClass::ORDER_STATUS_SENDING, OrderClass::ORDER_STATUS_COMPLETE]];
  889. } elseif ($type == 2) { // 今日欠款
  890. $get['searchTime'] = 'today';
  891. $where['debt'] = 1;
  892. } elseif ($type == 3) { // 总欠款
  893. $where['debt'] = 1;
  894. } else {
  895. util::fail('查询的订单类别不存在');
  896. }
  897. }
  898. $searchTime = $get['searchTime'] ?? '';
  899. if (!empty($searchTime)) {
  900. $startTime = '';
  901. $endTime = '';
  902. $period = dateUtil::formatTime($searchTime, $startTime, $endTime);
  903. $where['addTime'] = ['between', [$period['startTime'], $period['endTime']]];
  904. }
  905. $name = $get['name'] ?? '';
  906. if (!empty($name)) {
  907. $searchType = $get['searchType'] ?? 0;
  908. if (empty($searchType)) {
  909. //订单编号
  910. if (strpos($name, 'XSD') === 0) {
  911. $where['orderSn'] = $name;
  912. } elseif (preg_match("/^[a-zA-Z\s]+$/", $name)) {
  913. $where['customNamePy'] = ['like', $name];
  914. } else {
  915. $where['customName'] = ['like', $name];
  916. }
  917. } elseif ($searchType == 1) {
  918. $where['sendNum'] = $name;
  919. } else {
  920. util::fail('搜索的订单类别不存在');
  921. }
  922. }
  923. $respond = OrderClass::getOrderList($where);
  924. $respond['shop'] = $this->shop;
  925. $respond['shopExt'] = $this->shopExt;
  926. $respond['type'] = $type; //把查询类别返回
  927. util::success($respond);
  928. }
  929. //商城下单操作 ssh 2021.1.14
  930. public function actionCreateOrder()
  931. {
  932. $post = Yii::$app->request->post();
  933. $shopId = $this->shopId;
  934. $customId = $post['customId'] ?? 0;
  935. $post['customId'] = $customId;
  936. //开单必须选客户
  937. if (empty($customId)) {
  938. util::fail('请选择客户');
  939. }
  940. $modifyPrice = $post['modifyPrice'] ?? 0;
  941. $pattern = '/^\d+(\.\d{1,2})?$/';
  942. if ($modifyPrice > 0) {
  943. if (!preg_match($pattern, $modifyPrice)) {
  944. //容错前端
  945. util::fail('金额不能超2位小数');
  946. }
  947. }
  948. $custom = CustomClass::getCustom($customId);
  949. if (empty($custom)) {
  950. util::fail('请选客户哦');
  951. }
  952. $shopAdmin = $this->shopAdmin;
  953. $shopAdminId = $this->shopAdminId;
  954. $shopAdminName = $shopAdmin->name ?? '';
  955. //解决开单提交订单时,别人修改价格,造成提交价格不是真实卖价问题!!
  956. $dealPrice = $post['dealPrice'] ?? 0;
  957. //解决重复提交问题
  958. util::checkRepeatCommit($this->adminId . '_' . $dealPrice, 3);
  959. CustomClass::valid($custom, $this->shopId);
  960. if (!empty($custom['mainId']) && $custom['mainId'] == $custom['ownMainId']) {
  961. util::fail('不能给自己开单');
  962. }
  963. $post['ghsId'] = $custom['ghsId'] ?? 0;
  964. $post['customMobile'] = $custom['mobile'] ?? '';
  965. $customName = $custom['name'] ?? '';
  966. $post['customName'] = $customName;
  967. $post['customNamePy'] = $custom['py'] ?? '';
  968. $post['customAvatar'] = $custom['shortSmallAvatar'] ?? '';
  969. $post['province'] = $custom['province'] ?? '';
  970. $post['city'] = $custom['city'] ?? '';
  971. $post['dist'] = $custom['dist'] ?? '';
  972. $post['address'] = $custom['address'] ?? '';
  973. $post['floor'] = $custom['floor'] ?? '';
  974. $post['fullAddress'] = $custom['fullAddress'] ?? '';
  975. $post['showAddress'] = $custom['showAddress'] ?? '';
  976. $post['long'] = $custom['long'] ?? '';
  977. $post['lat'] = $custom['lat'] ?? '';
  978. if (!empty($post['getStaffId'])) {
  979. if (getenv('YII_ENV') == 'production') {
  980. $tbMainId = 44171;
  981. } else {
  982. $tbMainId = 0;
  983. }
  984. if ($this->mainId == $tbMainId) {
  985. //平潭花天下,就算选了收款人,也不要给改变开单人,临时解决方案 ssh 2250314
  986. if (!empty($post['shopAdminId'])) {
  987. $getStaffName = $post['shopAdminName'] ?? '';
  988. $shopAdminId = $post['shopAdminId'];
  989. $shopAdminName = $getStaffName;
  990. }
  991. } else {
  992. $getStaffName = $post['getStaffName'] ?? '';
  993. $shopAdminId = $post['getStaffId'];
  994. $shopAdminName = $getStaffName;
  995. }
  996. } else {
  997. if (getenv('YII_ENV') == 'production') {
  998. //鹏诚需要选择开单人
  999. if (in_array($this->mainId, [19606])) {
  1000. util::fail('请选择开单人');
  1001. }
  1002. } else {
  1003. if (in_array($this->mainId, [])) {
  1004. util::fail('请选择开单人');
  1005. }
  1006. }
  1007. }
  1008. if (getenv('YII_ENV') == 'production') {
  1009. //小向花卉开单权限
  1010. if ($this->mainId == 23390) {
  1011. if (!in_array($this->adminId, [24043, 24585, 24586, 24654, 24115, 23960, 28456, 31105, 28456, 31105, 52528, 25011, 61449, 77951, 24655])) {
  1012. util::fail('你不能开单哦');
  1013. }
  1014. }
  1015. }
  1016. //开单人和收款人必定是同个人
  1017. $post['shopAdminId'] = $shopAdminId;
  1018. $post['shopAdminName'] = $shopAdminName;
  1019. $post['getStaffId'] = $shopAdminId;
  1020. $post['getStaffName'] = $shopAdminName;
  1021. $post['sjId'] = $this->sjId;
  1022. $post['shopId'] = $shopId;
  1023. $post['mainId'] = $this->mainId;
  1024. $post['fromType'] = 1;
  1025. $post['expressId'] = $post['expressId'] ?? 0;
  1026. $book = $post['book'] ?? 0;
  1027. $post['book'] = $book;
  1028. $sendType = $post['sendType'] ?? 0;
  1029. $transType = $post['transType'] ?? 0;
  1030. $shop = $this->shop;
  1031. //过期不支持开单
  1032. $deadline = $shop->deadline;
  1033. $deadTime = strtotime($deadline);
  1034. $myCurrentTime = time();
  1035. $myCurrentDeadline = $deadTime;
  1036. if ($myCurrentTime > $myCurrentDeadline) {
  1037. util::fail('系统已到期,请续费哦');
  1038. }
  1039. if (isset($shop->pfLevel) && $shop->pfLevel == 1) {
  1040. //昆明发往全国
  1041. $sendCost = isset($post['sendCost']) && $post['sendCost'] > 0 ? $post['sendCost'] : 0;
  1042. $post['sendCost'] = $sendCost;
  1043. $packCost = isset($post['packCost']) && $post['packCost'] > 0 ? $post['packCost'] : 0;
  1044. $post['packCost'] = $packCost;
  1045. $post['transType'] = $transType;
  1046. $post['localOrder'] = 1;
  1047. } else {
  1048. //同步配送
  1049. $sendCost = isset($post['sendCost']) && $post['sendCost'] > 0 ? $post['sendCost'] : 0;
  1050. if ($sendType != dict::getDict('sendType', 'thirdSend') && $sendCost > 0) {
  1051. util::fail('填了运费,请选择跑腿');
  1052. }
  1053. $post['sendCost'] = $sendCost;
  1054. $post['packCost'] = isset($post['packCost']) && $post['packCost'] > 0 ? $post['packCost'] : 0;
  1055. }
  1056. if ($book == 1) {
  1057. $bookSn = $shop->bookSn ?? 0;
  1058. if (empty($bookSn)) {
  1059. util::fail('请开启预订');
  1060. }
  1061. $post['bookSn'] = $bookSn;
  1062. }
  1063. $hasPay = $post['hasPay'] ?? dict::getDict('hasPay', 'unPay');
  1064. $post['debt'] = OrderClass::DEBT_NO;
  1065. if ($hasPay == dict::getDict('hasPay', 'debt')) {
  1066. $post['debt'] = OrderClass::DEBT_YES;
  1067. }
  1068. if (!isset($shopAdmin->super) || $shopAdmin->super != 1) {
  1069. if ($hasPay == dict::getDict('hasPay', 'payed')) {
  1070. //util::fail('没有权限');
  1071. }
  1072. }
  1073. if (getenv('YII_ENV') == 'production') {
  1074. if ($this->mainId == 1082) {
  1075. //泉城鲜花批发的出车,只能开收现金方式,多处要修改,关键词qc_cash
  1076. if ($hasPay != 0) {
  1077. util::fail('只能使用扫码付款,编号193');
  1078. }
  1079. }
  1080. //小齐鲜花出车,源花汇,不能使用线下收款
  1081. if ($this->mainId == 42680 || $this->mainId == 10536) {
  1082. if ($hasPay == 1) {
  1083. util::fail('线下收款暂时无法使用');
  1084. }
  1085. }
  1086. } else {
  1087. if ($this->mainId == 644) {
  1088. if ($hasPay == 1) {
  1089. util::fail('线下收款暂时无法使用');
  1090. }
  1091. }
  1092. }
  1093. //多颜色数据整理
  1094. $colorItem = $post['xj'] ?? [];
  1095. $newXj = [];
  1096. if (!empty($colorItem)) {
  1097. $colorData = json_decode($colorItem, true);
  1098. if (!empty($colorData) && is_array($colorData)) {
  1099. foreach ($colorData as $colorInfo) {
  1100. $ptItemId = $colorInfo['ptItemId'] ?? 0;
  1101. $colorList = $colorInfo['list'] ?? [];
  1102. if (!empty($colorList)) {
  1103. foreach ($colorList as $colorItemKey => $colorItem) {
  1104. $newXj[$ptItemId][] = $colorItem;
  1105. }
  1106. }
  1107. }
  1108. }
  1109. }
  1110. $post['xj'] = $newXj;
  1111. $productJson = $post['product'] ?? '';
  1112. if (empty($productJson)) {
  1113. util::fail('请选择花材');
  1114. }
  1115. $productList = json_decode($productJson, true);
  1116. if (empty($productList)) {
  1117. util::fail('请选择花材');
  1118. }
  1119. $ids = array_unique(array_filter(array_column($productList, 'productId')));
  1120. $itemInfo = ProductClass::getByIds($ids, null, 'id');
  1121. if (empty($itemInfo)) {
  1122. util::fail('请选择花材哦');
  1123. }
  1124. //判断花材有效性
  1125. foreach ($itemInfo as $itemData) {
  1126. if (!isset($itemData['mainId']) || $itemData['mainId'] != $this->mainId) {
  1127. util::fail('只能选择同一家的商品哈');
  1128. }
  1129. }
  1130. $diff = [];
  1131. $priceMap = CustomClass::$levelPriceKeyMap;
  1132. //这个参数应该是要作废的,但下面加的参数是有用的,多处要同步修改,关键词 abandon_add_price_map ,ssh 20260116
  1133. $addPriceMap = CustomClass::$levelAddPriceKeyMap;
  1134. //但这边加的参数是有用的,给指定客户涨价的
  1135. $addPriceMap['risePercent'] = $custom['risePercent'] ?? 0;
  1136. $level = $custom['level'] ?? 1;
  1137. foreach ($productList as $currentProduct) {
  1138. $currentPrice = $currentProduct['price'] ?? 0;
  1139. $currentId = $currentProduct['productId'] ?? 0;
  1140. $systemInfo = $itemInfo[$currentId] ?? [];
  1141. $name = $systemInfo['name'] ?? '';
  1142. $systemPrice = ProductClass::getFinalPrice($systemInfo, $level, $priceMap, $addPriceMap);
  1143. if (getenv('YII_ENV') == 'production') {
  1144. //苏州小蔡鲜花,几个出车,不能低于原价卖,但可以高于原价卖的
  1145. if (in_array($shopId, [38231, 38143, 29163, 29161])) {
  1146. if ($currentPrice < $systemPrice) {
  1147. util::fail('不能低于原价卖');
  1148. }
  1149. }
  1150. } else {
  1151. if (in_array($shopId, [36544])) {
  1152. if ($currentPrice < $systemPrice) {
  1153. util::fail('不能低于原价卖');
  1154. }
  1155. }
  1156. }
  1157. if (floatval($currentPrice) != floatval($systemPrice)) {
  1158. $diff[] = [
  1159. 'name' => $name,
  1160. 'price' => $systemPrice,
  1161. 'kdPrice' => $currentPrice,
  1162. ];
  1163. }
  1164. }
  1165. //解决开单提交订单时,别人修改价格,造成提交价格不是真实卖价问题!!
  1166. if ($dealPrice == 0) {
  1167. if (!empty($diff)) {
  1168. util::success(['diff' => $diff, 'respondType' => 'priceError']);
  1169. }
  1170. } else {
  1171. if (!empty($diff)) {
  1172. $mainId = $this->mainId;
  1173. //花样年华,除了老板,只能按原价开单,不能改价格
  1174. if (getenv('YII_ENV') == 'production') {
  1175. if (in_array($mainId, [1553, 1563])) {
  1176. if ($this->adminId != 2876) {
  1177. util::fail('请按花材原价格开单');
  1178. }
  1179. }
  1180. } else {
  1181. if (in_array($mainId, [0, 1])) {
  1182. util::fail('请按花材原价格开单');
  1183. }
  1184. }
  1185. }
  1186. }
  1187. if ($book == 1) {
  1188. $post['hasPay'] = 2;
  1189. $post['payWay'] = 0;
  1190. }
  1191. $historyDate = $post['historyDate'] ?? '';
  1192. if (!empty($historyDate)) {
  1193. if ($book == 1) {
  1194. util::fail('预订单不能选订单日期');
  1195. }
  1196. if ($hasPay == 0) {
  1197. util::fail('扫码付不能选订单日期');
  1198. }
  1199. if (strtotime($historyDate) > strtotime(date("Y-m-d"))) {
  1200. util::fail('订单日期只能选历史时间');
  1201. }
  1202. }
  1203. $connection = Yii::$app->db;
  1204. $transaction = $connection->beginTransaction();
  1205. try {
  1206. $post['product'] = $productList;
  1207. //商家开单到时间会自动标记为欠款,所以360天内不过期,以保证足够时间标记欠款,具体参数查看dict local_gys_kd_auto_set_debt_time
  1208. $time = time();
  1209. $hasTime = dict::getDict('order_pay_has_time');
  1210. $totalTime = bcadd($time, $hasTime);
  1211. $post['deadline'] = date("Y-m-d H:i:s", $totalTime);
  1212. //多处有用到此方法,需要同步修改,搜索关键词create_new_order
  1213. $return = OrderService::createNewOrder($post, $custom, $hasPay);
  1214. $transaction->commit();
  1215. $saleId = $return->id ?? 0;
  1216. $order = OrderClass::getById($saleId, true);
  1217. if (!empty($order)) {
  1218. //订单发跑腿流程
  1219. GhsDeliveryOrderClass::prepareAskData($post, $order);
  1220. $shopId = $order->shopId ?? 0;
  1221. $customId = $order->customId ?? 0;
  1222. $ghsId = $order->ghsId ?? 0;
  1223. $custom = CustomClass::getById($customId, true);
  1224. $date = date("Y-m-d H:i:s");
  1225. if (!empty($custom)) {
  1226. $custom->recentExpend = $date;
  1227. $custom->save();
  1228. }
  1229. $ghs = GhsClass::getById($ghsId, true);
  1230. if (!empty($ghs)) {
  1231. $ghs->recentExpend = $date;
  1232. $ghs->save();
  1233. }
  1234. $shop = ShopClass::getById($shopId, true);
  1235. if (isset($order->payStatus) && $order->payStatus == 1) {
  1236. if (!empty($shop)) {
  1237. GhsNotifyClass::newOrderNotify($saleId);
  1238. HdNotifyClass::newCgNotify($order->purchaseId);
  1239. }
  1240. }
  1241. //订单生成时唤起在线打印
  1242. if (isset($order->needPrint) && $order->needPrint == dict::getDict('needPrint', 'need')) {
  1243. //预订单开单不打小票,小向花卉不需要打小票
  1244. $mainId = $order->mainId ?? 0;
  1245. if ($order->book == 0 && !in_array($mainId, [23390])) {
  1246. if ($order->status != 1 && $order->status != 5) {
  1247. OrderClass::onlinePrint($order);
  1248. $ext = $this->shopExt;
  1249. if (isset($ext->printSn) && !empty($ext->printSn)) {
  1250. $order->printNum += 1;
  1251. $order->save();
  1252. }
  1253. //花镜 自己开单要打二次,有多处要修改搜索关键词 tow_print
  1254. if (in_array($mainId, [76796])) {
  1255. OrderClass::onlinePrint($order);
  1256. $ext = $this->shopExt;
  1257. if (isset($ext->printSn) && !empty($ext->printSn)) {
  1258. $order->printNum += 1;
  1259. $order->save();
  1260. }
  1261. }
  1262. }
  1263. }
  1264. }
  1265. //前台提醒出示付款码
  1266. if (isset($order->status) && $order->status == 1) {
  1267. if (isset($post['isCashier']) && $post['isCashier'] == 1) {
  1268. ShopExtClass::ghsPleasePayReport($order);
  1269. }
  1270. }
  1271. }
  1272. util::success($return);
  1273. } catch (\Exception $e) {
  1274. $transaction->rollBack();
  1275. Yii::error("下单失败原因:" . $e->getMessage());
  1276. noticeUtil::push("批发线下开单失败,原因:" . $e->getMessage(), '15280215347');
  1277. util::fail('下单失败');
  1278. }
  1279. }
  1280. //修改订单 ssh 20210810
  1281. public function actionUpdateOrder()
  1282. {
  1283. $post = Yii::$app->request->post();
  1284. util::fail('订单不可修改');
  1285. //PC端开单
  1286. if (isset($post['clearType'])) {
  1287. $clearType = $post['clearType'];
  1288. if ($clearType == OrderClass::CLEAR_DEBT) {
  1289. $post['debt'] = OrderClass::DEBT_YES;
  1290. $post['payWay'] = dict::getDict('payWay', 'debtPay');
  1291. } else {
  1292. $post['debt'] = OrderClass::DEBT_NO;
  1293. }
  1294. }
  1295. //员工不能开已收款订单
  1296. $debt = $post['debt'] ?? OrderClass::DEBT_YES;
  1297. if ($debt == OrderClass::DEBT_NO) {
  1298. $shopAdmin = $this->shopAdmin;
  1299. if (isset($shopAdmin->super) == false || $shopAdmin->super != 1) {
  1300. util::fail('不能开已收款订单');
  1301. }
  1302. }
  1303. //PC端开单
  1304. if (isset($post['getType'])) {
  1305. util::fail('暂不支持PC端修改订单');
  1306. $getType = $post['getType'];
  1307. //自取
  1308. if ($getType == 1) {
  1309. $post['sendType'] = OrderClass::SEND_TYPE_NO;
  1310. } else {
  1311. //选择配送时,在发货时让商家自己再确认一下用什么方式
  1312. $post['sendType'] = OrderClass::SEND_TYPE_UNKNOWN;
  1313. }
  1314. }
  1315. //商家开非自取订单,默认订单是待收款的,debt字段为非欠款
  1316. if (isset($post['sendType']) && $post['sendType'] != OrderClass::SEND_TYPE_NO) {
  1317. $post['debt'] = OrderClass::DEBT_NO;
  1318. }
  1319. $id = $post['id'] ?? 0;
  1320. $order = OrderClass::getLockById($id);
  1321. if (empty($order)) {
  1322. util::fail('没有找到订单');
  1323. }
  1324. OrderClass::valid($order, $this->shopId);
  1325. unset($post['id']);
  1326. $shopAdmin = $this->shopAdmin;
  1327. $post['shopAdminId'] = $this->shopAdminId;
  1328. $post['shopAdminName'] = $shopAdmin->name ?? '';
  1329. $post['fromType'] = 1;
  1330. $post['sendCost'] = $post['sendCost'] ?? '0.00';
  1331. $productJson = $post['product'] ?? '';
  1332. if (empty($productJson)) {
  1333. util::fail('请选择花材');
  1334. }
  1335. $productList = json_decode($productJson, true);
  1336. if (empty($productList)) {
  1337. util::fail('请选择花材');
  1338. }
  1339. $connection = Yii::$app->db;
  1340. $transaction = $connection->beginTransaction();
  1341. try {
  1342. //判断花材有效性
  1343. ProductClass::valid($productList, $this->mainId);
  1344. $post['product'] = $productList;
  1345. //商家开单订单有效期,到期记欠款
  1346. $validTime = dict::getDict('order_pay_has_time');
  1347. $current = time() + $validTime;
  1348. $post['deadline'] = date("Y-m-d H:i:s", $current);
  1349. $upData = [
  1350. 'payWay' => $post['payWay'],
  1351. 'sendType' => $post['sendType'],
  1352. 'debt' => $post['debt'],
  1353. 'needPrint' => $post['needPrint'],
  1354. 'modifyPrice' => $post['modifyPrice'],
  1355. 'shopAdminId' => $post['shopAdminId'],
  1356. 'shopAdminName' => $post['shopAdminName'],
  1357. 'fromType' => 1,
  1358. 'sendCost' => $post['sendCost'],
  1359. 'product' => $post['product'],
  1360. 'deadline' => $post['deadline'],
  1361. 'debt' => $post['debt'],
  1362. ];
  1363. $return = OrderService::updateOrder($order, $upData);
  1364. $transaction->commit();
  1365. util::success($return);
  1366. } catch (\Exception $e) {
  1367. $transaction->rollBack();
  1368. Yii::error("下单失败原因:" . $e->getMessage());
  1369. util::fail('下单失败');
  1370. }
  1371. }
  1372. //取消预订单 ssh 20240503
  1373. public function actionCancelBookOrder()
  1374. {
  1375. $get = Yii::$app->request->get();
  1376. $id = $get['id'] ?? 0;
  1377. if (empty($id)) {
  1378. util::fail('请选择订单');
  1379. }
  1380. $order = OrderClass::getById($id, true);
  1381. if (empty($order)) {
  1382. util::fail('没有找到订单');
  1383. }
  1384. OrderClass::valid($order, $this->shopId);
  1385. if ($order->book == 0) {
  1386. util::fail('不是预订单');
  1387. }
  1388. if ($order->status != 2) {
  1389. util::fail('当前订单状态不能取消');
  1390. }
  1391. $purchaseId = $order->purchaseId ?? 0;
  1392. $purchase = PurchaseClass::getById($purchaseId, true);
  1393. if (empty($purchase)) {
  1394. util::fail('没有找到采购单');
  1395. }
  1396. $connection = Yii::$app->db;
  1397. $transaction = $connection->beginTransaction();
  1398. try {
  1399. $order->status = 5;
  1400. $order->save();
  1401. $purchase->status = 5;
  1402. $purchase->save();
  1403. $transaction->commit();
  1404. util::complete('取消成功');
  1405. } catch (\Exception $e) {
  1406. $transaction->rollBack();
  1407. $msg = $e->getMessage();
  1408. $orderSn = $order->orderSn ?? '';
  1409. noticeUtil::push("预订单{$orderSn}取消失败:{$msg}", '15280215347');
  1410. }
  1411. }
  1412. //取消订单 shizhongqi 20220619
  1413. public function actionCancelOrder()
  1414. {
  1415. $post = Yii::$app->request->post();
  1416. $id = $post['orderId'] ?? 0;
  1417. if (empty($id)) {
  1418. util::fail('请选择订单');
  1419. }
  1420. $order = OrderClass::getById($id, true);
  1421. if (empty($order)) {
  1422. util::fail('请选择订单...');
  1423. }
  1424. OrderClass::valid($order, $this->shopId);
  1425. if (isset($order->status) == false || $order->status != 1) {
  1426. util::fail('不是待付款状态,无法取消');
  1427. }
  1428. $purchaseId = $order->purchaseId ?? 0;
  1429. $purchase = PurchaseClass::getById($purchaseId);
  1430. if (empty($purchase)) {
  1431. util::fail('没有找到采购单');
  1432. }
  1433. $deadLineTime = strtotime($purchase['deadline']);
  1434. $diff = $deadLineTime - time();
  1435. if ($diff <= 60) {
  1436. util::fail('1分钟后订单将自动取消');
  1437. }
  1438. $connection = Yii::$app->db;
  1439. $transaction = $connection->beginTransaction();
  1440. $orderSn = $purchase['orderSn'];
  1441. try {
  1442. $current = PurchaseClass::getById($purchaseId, true);
  1443. PurchaseService::expire($current);
  1444. $transaction->commit();
  1445. //noticeUtil::push("采购单过期未付款,库存已回滚,单号:{$orderSn}");
  1446. } catch (\Exception $e) {
  1447. $transaction->rollBack();
  1448. $msg = $e->getMessage();
  1449. noticeUtil::push("采购单过期处理报错了!订单号:{$orderSn},错误信息:{$msg}", '15280215347');
  1450. }
  1451. util::complete();
  1452. }
  1453. //延期支付 ssh 2021.1.19
  1454. public function actionDebt()
  1455. {
  1456. $id = Yii::$app->request->get('id');
  1457. //4秒内不允许重复提交
  1458. $cacheKey = 'ghs_set_order_debt_' . $id;
  1459. $has = Yii::$app->redis->executeCommand('GET', [$cacheKey]);
  1460. if (!empty($has)) {
  1461. util::fail('请稍等');
  1462. }
  1463. Yii::$app->redis->executeCommand('SETEX', [$cacheKey, 4, 'has']);
  1464. if (getenv('YII_ENV') == 'production') {
  1465. if ($this->mainId == 1082) {
  1466. //泉城鲜花批发的出车,只能开收现金方式,多处要修改,关键词qc_cash
  1467. util::fail('只能使用扫码付款,编号293');
  1468. }
  1469. } else {
  1470. }
  1471. $order = OrderClass::getById($id, true);
  1472. OrderClass::valid($order, $this->shopId);
  1473. $payWay = dict::getDict('payWay', 'debtPay');
  1474. $cgId = $order->purchaseId ?? 0;
  1475. $cg = PurchaseClass::getById($cgId, true);
  1476. if (empty($cg)) {
  1477. util::fail('没有找到采购单');
  1478. }
  1479. if ($order->book == 1) {
  1480. util::fail('预订单不能记欠款');
  1481. }
  1482. $connection = Yii::$app->db;
  1483. $transaction = $connection->beginTransaction();
  1484. try {
  1485. PurchaseService::payAfter($cg, $payWay);
  1486. OrderService::payAfter($order, $payWay);
  1487. $transaction->commit();
  1488. } catch (\Exception $exception) {
  1489. $transaction->rollBack();
  1490. Yii::info("延期支付报错:" . $exception->getMessage());
  1491. util::fail('操作失败');
  1492. }
  1493. $order = OrderClass::getById($id, true);
  1494. if (!empty($order)) {
  1495. $shopId = $order->shopId ?? 0;
  1496. $shop = ShopClass::getById($shopId, true);
  1497. if (!empty($shop)) {
  1498. //花店采购供货商端微信收到通知
  1499. //WxMessageClass::ghsHasNewOrderInform($shop, $order);
  1500. $noticeText = json_encode(['orderId' => $id]);
  1501. $noticeKey = "hdCgNoticeGhs";
  1502. Yii::$app->redis->executeCommand('LPUSH', [$noticeKey, $noticeText]);
  1503. }
  1504. //订单生成时唤起在线打印
  1505. if (isset($order->needPrint) && $order->needPrint == dict::getDict('needPrint', 'need')) {
  1506. if ($order->status != 1 && $order->status != 5) {
  1507. OrderClass::onlinePrint($order);
  1508. $ext = $this->shopExt;
  1509. if (isset($ext->printSn) && !empty($ext->printSn)) {
  1510. $order->printNum += 1;
  1511. $order->save();
  1512. }
  1513. }
  1514. }
  1515. if ($order->status != 1 && $order->status != 5) {
  1516. //花店采购供货商端APP收到通知
  1517. //NoticeClass::ghsNewOrderNotice($order);
  1518. //向供货商APP发通知
  1519. // $cgShop = ShopClass::getById($cg->shopId, true, 'shopName, merchantName');
  1520. // $push = new push('ghs', push::MSG_TYPE_ORDER);
  1521. // $push->ghsOrderMessage($shop, $cgShop, $order);
  1522. }
  1523. }
  1524. util::complete();
  1525. }
  1526. //获取商城下单要用的微信支付和小程序支付参数 ssh 2019.21.3
  1527. public function actionWxPay()
  1528. {
  1529. ini_set('date.timezone', 'Asia/Shanghai');
  1530. $post = Yii::$app->request->post();
  1531. $couponId = $post['couponId'] ?? 0;
  1532. $orderSn = isset($post['orderSn']) ? $post['orderSn'] : 0;
  1533. $order = OrderClass::getByOrderSn($orderSn);
  1534. if (empty($order)) {
  1535. util::fail('订单号无效');
  1536. }
  1537. $id = $order['id'];
  1538. //支付前验证订单有效性
  1539. if (isset($order['adminId']) == false || $order['adminId'] != $this->adminId) {
  1540. util::fail('无法操作');
  1541. }
  1542. $name = $order['orderName'] ?? '购买商品';
  1543. $totalFee = $order['actPrice'];
  1544. //强制使用小程序的miniOpenId
  1545. $openId = isset($this->admin) && !empty($this->admin) ? $this->admin->miniOpenId : '';
  1546. if (empty($openId)) {
  1547. util::fail('没有找到openId');
  1548. }
  1549. $capitalType = dict::getDict('capitalType', 'xhGhsOrder', 'id');
  1550. //流水类型、优惠卷、微信支付(h5还是小程序支付)类型 带到回调
  1551. $wxPayType = 0;
  1552. if (httpUtil::isMiniProgram()) {
  1553. $wxPayType = 1;
  1554. }
  1555. $attach = "couponId=" . $couponId . "&capitalType=" . $capitalType . '&wxPayType=' . $wxPayType;
  1556. //订单30分钟后过期
  1557. $now = time();
  1558. $expireTime = $now + 1800;
  1559. $wx = Yii::getAlias("@vendor/weixin");
  1560. require_once($wx . '/lib/WxPay.Api.php');
  1561. require_once($wx . '/example/WxPay.JsApiPay.php');
  1562. $input = new \WxPayUnifiedOrder();
  1563. $input->SetBody($name);
  1564. $input->SetOut_trade_no($orderSn);
  1565. $input->SetTotal_fee($totalFee * 100);
  1566. $input->SetTime_start(date("YmdHis", $now));
  1567. $input->SetAttach($attach);//将流水类型、代金劵等传给微信再回传
  1568. $input->SetTime_expire(date("YmdHis", $expireTime));
  1569. $input->SetNotify_url(Yii::$app->params['ghsHost'] . '/notice/wx-callback/');
  1570. $input->SetTrade_type("JSAPI");
  1571. //花卉宝代为申请的微信支付
  1572. //$sjExtend = $this->sjExtend->attributes;
  1573. $sjExtend = WxOpenClass::getGhsWxInfo();
  1574. if (isset($sjExtend['wxPayApply']) && $sjExtend['wxPayApply'] == 1) {
  1575. $input->SetSub_openid($openId);
  1576. } else {
  1577. $input->SetOpenid($openId);
  1578. }
  1579. //强制使用小程序的miniAppId
  1580. $sjExtend['wxAppId'] = $sjExtend['miniAppId'];
  1581. $wxOrder = \WxPayApi::unifiedOrder($input, 6, $sjExtend);
  1582. $tools = new \JsApiPay();
  1583. $jsApiParameters = $tools->GetJsApiParameters($wxOrder, $sjExtend);
  1584. $newParams = json_decode($jsApiParameters, true);
  1585. //微信不能修改价格
  1586. $current = date("Y-m-d H:i:s");
  1587. $updateData = ['deadline' => $current, 'modPrice' => 0];
  1588. OrderClass::updateById($id, $updateData);
  1589. util::success($newParams);
  1590. }
  1591. //获取订单详情 ssh 2021.1.21
  1592. public function actionDetail()
  1593. {
  1594. $get = Yii::$app->request->get();
  1595. $id = $get['id'] ?? 0;
  1596. $info = OrderService::getOrderInfo($id, true, true, true, false);
  1597. OrderClass::valid($info, $this->shopId);
  1598. //A4打印需要用到的数据
  1599. $customId = $info['customId'] ?? 0;
  1600. $remark = $info['remark'] ?? '';
  1601. $sendCost = $info['sendCost'] ?? 0;
  1602. $sendNum = $info['sendNum'] ?? '';
  1603. $packCost = $info['packCost'] ?? 0;
  1604. $staffName = $info['shopAdminName'] ?? '';
  1605. $ysName = '';
  1606. if (isset($info['localOrder']) && $info['localOrder'] == 1) {
  1607. if ($info['transType'] == 0) {
  1608. $ysName = '德邦空运';
  1609. }
  1610. if ($info['transType'] == 1) {
  1611. $ysName = '顺丰空运';
  1612. }
  1613. if ($info['transType'] == 2) {
  1614. $ysName = '冷链物流';
  1615. }
  1616. if ($info['transType'] == 3) {
  1617. $ysName = '航空物流';
  1618. }
  1619. if ($info['transType'] == 4) {
  1620. $ysName = '同城配送';
  1621. }
  1622. if ($info['transType'] == 5) {
  1623. $ysName = '到店自取';
  1624. }
  1625. } else {
  1626. $sendType = $info['sendType'] ?? 0;
  1627. $ysName = '送货上门';
  1628. if ($sendType == 1) {
  1629. $ysName = '到店自取';
  1630. }
  1631. if ($sendType == 2) {
  1632. $ysName = '发跑腿';
  1633. }
  1634. if ($sendType == 3) {
  1635. $wlName = $info['wlName'] ?? '';
  1636. $ysName = '发物流';
  1637. if (!empty($wlName)) {
  1638. $ysName = $ysName . '-' . $wlName;
  1639. }
  1640. }
  1641. }
  1642. $fullAddress = '';
  1643. if (getenv('YII_ENV') == 'production') {
  1644. //老油的要显示地址
  1645. if ($this->mainId == 20528) {
  1646. $fullAddress = $info['fullAddress'] ?? '';
  1647. }
  1648. } else {
  1649. if ($this->mainId == 644) {
  1650. $fullAddress = $info['fullAddress'] ?? '';
  1651. }
  1652. }
  1653. $custom = CustomClass::getById($customId, true);
  1654. if (empty($custom)) {
  1655. util::fail('没有找到客户');
  1656. }
  1657. $customName = $custom->name ?? '';
  1658. $customMobile = $custom->customMobile ?? '';
  1659. if (empty($customMobile)) {
  1660. $customShopId = $custom->shopId ?? 0;
  1661. $customShop = ShopClass::getById($customShopId, true);
  1662. if (!empty($customShop)) {
  1663. $customMobile = $customShop->mobile ?? '';
  1664. }
  1665. }
  1666. if (!empty($customMobile)) {
  1667. $customMobile = substr_replace($customMobile, '****', 3, 4);
  1668. }
  1669. $fullCustom = $customName . ' ' . $customMobile;
  1670. if ($this->mainId == 8164) {
  1671. //花大苪不显示客户名称
  1672. $fullCustom = '';
  1673. }
  1674. $seatSn = isset($custom->seatSn) && !empty($custom->seatSn) ? $custom->seatSn : '无';
  1675. $sendTimeWant = $info['sendTimeWant'] ?? '';
  1676. $shortSendTimeWant = !empty($sendTimeWant) ? substr($sendTimeWant, 5, 5) : '';
  1677. $totalItemNum = 0;
  1678. $totalSmallItemNum = 0;
  1679. $table = [];
  1680. if (isset($info['product']) && !empty($info['product'])) {
  1681. foreach ($info['product'] as $key => $val) {
  1682. $currentName = $val['name'] ?? '';
  1683. $num = $val['xhNum'] ?? 0;
  1684. $refundNum = $val['refundNum'] ?? 0;
  1685. $num = bcsub($num, $refundNum);
  1686. $totalItemNum = bcadd($totalItemNum, $num);
  1687. $ratio = $val['ratio'] ?? 0;
  1688. $currentSmallNum = bcmul($num, $ratio);
  1689. $totalSmallItemNum = bcadd($totalSmallItemNum, $currentSmallNum);
  1690. $itemRemark = $val['remark'] ?? '';
  1691. $unitPrice = $val['xhUnitPrice'] ?? 0;
  1692. $unitPrice = floatval($unitPrice);
  1693. $price = bcmul($unitPrice, $num, 2);
  1694. $price = floatval($price);
  1695. $table[] = [
  1696. 'name' => $currentName,
  1697. 'num' => $num,
  1698. 'confirmNum' => '',
  1699. 'remark' => $itemRemark,
  1700. 'wxNumber' => 'shish3508',
  1701. 'unitPrice' => $unitPrice,
  1702. 'price' => $price,
  1703. ];
  1704. }
  1705. }
  1706. $shop = $this->shop;
  1707. $sjName = $shop->merchantName ?? '';
  1708. $shopName = $shop->shopName ?? '';
  1709. $sjShopName = $shopName == '首店' ? $sjName : $sjName . ' ' . $shopName;
  1710. $a4Print = [
  1711. 'customName' => $fullCustom,
  1712. 'staffName' => $staffName,
  1713. 'seatSn' => $seatSn,
  1714. 'shortSendTimeWant' => $shortSendTimeWant,
  1715. 'table' => $table,
  1716. 'remark' => $remark,
  1717. 'fullAddress' => $fullAddress,
  1718. 'sendNum' => $sendNum,
  1719. 'sendCost' => $sendCost,
  1720. 'ysName' => $ysName,
  1721. 'packCost' => $packCost,
  1722. 'totalItemNum' => $totalItemNum,
  1723. 'totalSmallItemNum' => $totalSmallItemNum,
  1724. 'shopName' => $sjShopName . ' 销售单',
  1725. ];
  1726. $info['printData'] = $a4Print;
  1727. //常规模板
  1728. //有用的历史备份
  1729. $template = '{"panels":[{"index":0,"name":1,"height":297,"width":210,"paperHeader":49.5,"paperFooter":780,"printElements":[{"options":{"left":30,"top":53,"height":52,"width":538,"field":"table","coordinateSync":false,"widthHeightSync":false,"tableBorder":"border","tableHeaderBorder":"border","tableHeaderCellBorder":"border","tableHeaderFontWeight":"bold","right":567.25,"bottom":110.24609375,"vCenter":298.25,"hCenter":82.24609375,"textAlign":"center","columns":[[{"width":134.33608169277167,"title":"名称","field":"name","checked":true,"columnId":"name","fixed":false,"rowspan":1,"colspan":1,"align":"center","halign":"center","vAlign":"middle","tableQRCodeLevel":0,"tableSummaryTitle":true,"tableSummary":""},{"width":74.77209598393634,"title":"预订数","field":"num","checked":true,"columnId":"num","fixed":false,"rowspan":1,"colspan":1,"align":"center","tableQRCodeLevel":0,"tableSummaryTitle":true,"tableSummary":""},{"width":73.30462681205907,"title":"确认数","field":"confirmNum","checked":true,"columnId":"confirmNum","fixed":false,"rowspan":1,"colspan":1,"align":"center","tableQRCodeLevel":0,"tableSummaryTitle":true,"tableSummary":""},{"width":71.10877448138285,"title":"单价","field":"unitPrice","checked":true,"columnId":"unitPrice","fixed":false,"rowspan":1,"colspan":1},{"width":84.32601880877743,"title":"金额","field":"price","checked":true,"columnId":"price","fixed":false,"rowspan":1,"colspan":1},{"width":100.15240222107263,"title":"备注","field":"remark","checked":true,"columnId":"remark","fixed":false,"rowspan":1,"colspan":1,"align":"center","tableQRCodeLevel":0,"tableSummaryTitle":true,"tableSummary":""}]]},"printElementType":{"title":"空白表格","type":"table","editable":true,"columnDisplayEditable":true,"columnDisplayIndexEditable":true,"columnTitleEditable":true,"columnResizable":true,"columnAlignEditable":true,"isEnableEditField":true,"isEnableContextMenu":true,"isEnableInsertRow":true,"isEnableDeleteRow":true,"isEnableInsertColumn":true,"isEnableDeleteColumn":true,"isEnableMergeCell":true}},{"options":{"left":12,"top":786,"height":49,"width":49},"printElementType":{"title":"html","type":"html"}},{"options":{"left":382.5,"top":785,"height":13,"width":136,"title":"销花宝提供技术支持","textAlign":"center","coordinateSync":false,"widthHeightSync":false,"qrCodeLevel":0,"right":518.74609375,"bottom":801.49609375,"vCenter":450.74609375,"hCenter":794.99609375},"printElementType":{"title":"自定义文本","type":"text"}},{"options":{"left":332.5,"top":35,"height":19,"width":233,"title":"货号","field":"seatSn","testData":"60","coordinateSync":false,"widthHeightSync":false,"fontSize":12,"fontWeight":"bold","textAlign":"right","textContentVerticalAlign":"middle","qrCodeLevel":0,"right":567.9921875,"bottom":51.2421875,"vCenter":451.4921875,"hCenter":29.2421875},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":30,"top":32.5,"height":19,"width":128,"title":"12-16","right":147.75,"bottom":49.49609375,"vCenter":87.75,"hCenter":28.99609375,"field":"shortSendTimeWant","testData":"12-16","coordinateSync":false,"widthHeightSync":false,"hideTitle":true,"fontSize":12,"fontWeight":"bold","textContentVerticalAlign":"middle","qrCodeLevel":0},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":92.5,"top":32.5,"height":19,"width":411,"title":"文本","right":469,"bottom":52.49609375,"vCenter":282.5,"hCenter":34.99609375,"field":"customName","testData":"纯彩 15280215347","coordinateSync":false,"widthHeightSync":false,"hideTitle":true,"fontSize":11,"fontWeight":"bold","textAlign":"center","textContentVerticalAlign":"middle","qrCodeLevel":0},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":30,"top":150,"height":45,"width":535,"title":"备注","right":565.75,"bottom":195,"vCenter":298.25,"hCenter":172.5,"field":"remark","testData":"箱子上要写上姓名和电话,到货时要拆箱,检查里面的花材","coordinateSync":false,"widthHeightSync":false,"fontSize":11,"fontWeight":"bold","lineHeight":30,"qrCodeLevel":0},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":30,"top":107.5,"height":25,"width":536,"title":"地址","field":"fullAddress","testData":"福建省厦门市集美区前山路147号中华人民共和国福建省厦门市集美区前山路147号中华人民共和国","coordinateSync":false,"widthHeightSync":false,"qrCodeLevel":0,"right":561.2421875,"bottom":616.75,"vCenter":293.2421875,"hCenter":581.75,"lineHeight":32.25,"textContentVerticalAlign":"middle"},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":30,"top":135,"height":15,"width":52,"title":"编号","field":"sendNum","testData":"39","coordinateSync":false,"widthHeightSync":false,"qrCodeLevel":0,"right":241.99609375,"bottom":182.49609375,"vCenter":215.99609375,"hCenter":174.99609375,"textContentVerticalAlign":"middle"},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":90,"top":135,"height":15,"width":79,"title":"德邦物流","right":173.9921875,"bottom":150,"vCenter":134.4921875,"hCenter":142.5,"field":"ysName","testData":"德邦物流","coordinateSync":false,"widthHeightSync":false,"hideTitle":true,"qrCodeLevel":0,"textContentVerticalAlign":"middle"},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":174,"top":135,"height":15,"width":120,"title":"开单人","field":"staffName","testData":"石头","coordinateSync":false,"widthHeightSync":false,"qrCodeLevel":0,"right":298.9921875,"bottom":154.74609375,"vCenter":238.9921875,"hCenter":149.87109375,"textContentVerticalAlign":"middle"},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":297.5,"top":135,"height":15,"width":120,"title":"打包人","field":"packName","testData":"小林","coordinateSync":false,"widthHeightSync":false,"qrCodeLevel":0,"right":417.4921875,"bottom":147.24609375,"vCenter":357.4921875,"hCenter":142.37109375,"textContentVerticalAlign":"middle"},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":92.5,"top":7.5,"height":25,"width":411,"title":"文本","right":509.74609375,"bottom":35.99609375,"vCenter":309.74609375,"hCenter":24.49609375,"field":"shopName","testData":"小向花卉 销售单","coordinateSync":false,"widthHeightSync":false,"hideTitle":true,"fontSize":16,"fontWeight":"bold","textAlign":"center","textContentVerticalAlign":"middle","qrCodeLevel":0},"printElementType":{"title":"文本","type":"text"}}],"paperNumberLeft":552.5,"paperNumberTop":785,"paperNumberContinue":true,"fontFamily":"Microsoft YaHei","watermarkOptions":{"content":"","rotate":25,"timestamp":false,"format":"YYYY-MM-DD HH:mm","fillStyle":"rgba(184, 184, 184, 0.3)","fontSize":"14px","width":200,"height":200},"panelLayoutOptions":{"layoutType":"column","layoutRowGap":0,"layoutColumnGap":0}}]}';
  1730. //$template = '{"panels":[{"index":0,"name":1,"height":297,"width":210,"paperHeader":49.5,"paperFooter":780,"printElements":[{"options":{"left":30,"top":53,"height":52,"width":538,"field":"table","coordinateSync":false,"widthHeightSync":false,"tableBorder":"border","tableHeaderBorder":"border","tableHeaderCellBorder":"border","tableHeaderFontWeight":"bold","right":567.25,"bottom":110.24609375,"vCenter":298.25,"hCenter":82.24609375,"textAlign":"center","columns":[[{"width":134.33608169277167,"title":"名称","field":"name","checked":true,"columnId":"name","fixed":false,"rowspan":1,"colspan":1,"align":"center","halign":"center","vAlign":"middle","tableQRCodeLevel":0,"tableSummaryTitle":true,"tableSummary":""},{"width":74.77209598393634,"title":"预订数","field":"num","checked":true,"columnId":"num","fixed":false,"rowspan":1,"colspan":1,"align":"center","tableQRCodeLevel":0,"tableSummaryTitle":true,"tableSummary":""},{"width":73.30462681205907,"title":"确认数","field":"confirmNum","checked":true,"columnId":"confirmNum","fixed":false,"rowspan":1,"colspan":1,"align":"center","tableQRCodeLevel":0,"tableSummaryTitle":true,"tableSummary":""},{"width":71.10877448138285,"title":"单价","field":"unitPrice","checked":true,"columnId":"unitPrice","fixed":false,"rowspan":1,"colspan":1},{"width":84.32601880877743,"title":"金额","field":"price","checked":true,"columnId":"price","fixed":false,"rowspan":1,"colspan":1},{"width":100.15240222107263,"title":"备注","field":"remark","checked":true,"columnId":"remark","fixed":false,"rowspan":1,"colspan":1,"align":"center","tableQRCodeLevel":0,"tableSummaryTitle":true,"tableSummary":""}]]},"printElementType":{"title":"空白表格","type":"table","editable":true,"columnDisplayEditable":true,"columnDisplayIndexEditable":true,"columnTitleEditable":true,"columnResizable":true,"columnAlignEditable":true,"isEnableEditField":true,"isEnableContextMenu":true,"isEnableInsertRow":true,"isEnableDeleteRow":true,"isEnableInsertColumn":true,"isEnableDeleteColumn":true,"isEnableMergeCell":true}},{"options":{"left":12,"top":786,"height":49,"width":49},"printElementType":{"title":"html","type":"html"}},{"options":{"left":382.5,"top":785,"height":13,"width":136,"title":"销花宝提供技术支持","textAlign":"center","coordinateSync":false,"widthHeightSync":false,"qrCodeLevel":0,"right":518.74609375,"bottom":801.49609375,"vCenter":450.74609375,"hCenter":794.99609375},"printElementType":{"title":"自定义文本","type":"text"}},{"options":{"left":332.5,"top":35,"height":19,"width":233,"title":"货号","field":"seatSn","testData":"60","coordinateSync":false,"widthHeightSync":false,"fontSize":12,"fontWeight":"bold","textAlign":"right","textContentVerticalAlign":"middle","qrCodeLevel":0,"right":567.9921875,"bottom":51.2421875,"vCenter":451.4921875,"hCenter":29.2421875},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":30,"top":32.5,"height":19,"width":128,"title":"12-16","right":147.75,"bottom":49.49609375,"vCenter":87.75,"hCenter":28.99609375,"field":"shortSendTimeWant","testData":"12-16","coordinateSync":false,"widthHeightSync":false,"hideTitle":true,"fontSize":12,"fontWeight":"bold","textContentVerticalAlign":"middle","qrCodeLevel":0},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":92.5,"top":32.5,"height":19,"width":411,"title":"文本","right":469,"bottom":52.49609375,"vCenter":282.5,"hCenter":34.99609375,"field":"customName","testData":"纯彩 15280215347","coordinateSync":false,"widthHeightSync":false,"hideTitle":true,"fontSize":11,"fontWeight":"bold","textAlign":"center","textContentVerticalAlign":"middle","qrCodeLevel":0},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":30,"top":145,"height":45,"width":535,"title":"备注","right":559.24609375,"bottom":207.99609375,"vCenter":291.74609375,"hCenter":185.49609375,"field":"remark","testData":"箱子上要写上姓名和电话,到货时要拆箱,检查里面的花材","coordinateSync":false,"widthHeightSync":false,"fontSize":11,"fontWeight":"bold","lineHeight":30,"qrCodeLevel":0},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":30,"top":107.5,"height":30,"width":536,"title":"地址","field":"fullAddress","testData":"福建省厦门市集美区前山路147号中华人民共和国福建省厦门市集美区前山路147号中华人民共和国","coordinateSync":false,"widthHeightSync":false,"qrCodeLevel":0,"right":561.2421875,"bottom":616.75,"vCenter":293.2421875,"hCenter":581.75,"lineHeight":32.25},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":30,"top":135,"height":15,"width":52,"title":"编号","field":"sendNum","testData":"39","coordinateSync":false,"widthHeightSync":false,"qrCodeLevel":0,"right":241.99609375,"bottom":182.49609375,"vCenter":215.99609375,"hCenter":174.99609375},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":95,"top":135,"height":15,"width":79,"title":"德邦物流","right":174.25,"bottom":159.24609375,"vCenter":134.75,"hCenter":151.74609375,"field":"ysName","testData":"德邦物流","coordinateSync":false,"widthHeightSync":false,"hideTitle":true,"qrCodeLevel":0},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":177.5,"top":137.5,"height":9.75,"width":120,"title":"开单人","field":"staffName","testData":"石头","coordinateSync":false,"widthHeightSync":false,"qrCodeLevel":0,"right":298.9921875,"bottom":154.74609375,"vCenter":238.9921875,"hCenter":149.87109375},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":297.5,"top":137.5,"height":9.75,"width":120,"title":"打包人","field":"packName","testData":"小林","coordinateSync":false,"widthHeightSync":false,"qrCodeLevel":0,"right":417.4921875,"bottom":147.24609375,"vCenter":357.4921875,"hCenter":142.37109375},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":92.5,"top":7.5,"height":25,"width":411,"title":"文本","right":509.74609375,"bottom":35.99609375,"vCenter":309.74609375,"hCenter":24.49609375,"field":"shopName","testData":"小向花卉 销售单","coordinateSync":false,"widthHeightSync":false,"hideTitle":true,"fontSize":16,"fontWeight":"bold","textAlign":"center","textContentVerticalAlign":"middle","qrCodeLevel":0},"printElementType":{"title":"文本","type":"text"}}],"paperNumberLeft":552.5,"paperNumberTop":785,"paperNumberContinue":true,"fontFamily":"Microsoft YaHei","watermarkOptions":{"content":"","rotate":25,"timestamp":false,"format":"YYYY-MM-DD HH:mm","fillStyle":"rgba(184, 184, 184, 0.3)","fontSize":"14px","width":200,"height":200},"panelLayoutOptions":{"layoutType":"column","layoutRowGap":0,"layoutColumnGap":0}}]}';
  1731. if (getenv('YII_ENV') == 'production') {
  1732. //花大苪模板
  1733. if (in_array($this->mainId, [8164])) {
  1734. $template = '{"panels":[{"index":0,"name":1,"height":297,"width":210,"paperHeader":49.5,"paperFooter":780,"printElements":[{"options":{"left":30,"top":53,"height":52,"width":538,"field":"table","coordinateSync":false,"widthHeightSync":false,"fontSize":16,"lineHeight":30,"tableBorder":"border","tableHeaderBorder":"border","tableHeaderCellBorder":"border","tableHeaderFontWeight":"bold","right":567.25,"bottom":110.24609375,"vCenter":298.25,"hCenter":82.24609375,"textAlign":"center","columns":[[{"width":188.91632245461145,"title":"名称","field":"name","checked":true,"columnId":"name","fixed":false,"rowspan":1,"colspan":1,"align":"center","halign":"center","vAlign":"middle","tableQRCodeLevel":0,"tableSummaryTitle":true,"tableSummary":""},{"width":105.15171514242958,"title":"预订数","field":"num","checked":true,"columnId":"num","fixed":false,"rowspan":1,"colspan":1,"align":"center","tableQRCodeLevel":0,"tableSummaryTitle":true,"tableSummary":""},{"width":103.08801880877742,"title":"确认数","field":"confirmNum","checked":true,"columnId":"confirmNum","fixed":false,"rowspan":1,"colspan":1,"align":"center","tableQRCodeLevel":0,"tableSummaryTitle":true,"tableSummary":""},{"width":140.84394359418155,"title":"备注","field":"remark","checked":true,"columnId":"remark","fixed":false,"rowspan":1,"colspan":1,"align":"center","tableQRCodeLevel":0,"tableSummaryTitle":true,"tableSummary":""},{"width":93.32065807548679,"title":"日期","field":"shortTime","checked":false,"columnId":"shortTime","fixed":false,"rowspan":1,"colspan":1,"align":"center","tableQRCodeLevel":0,"tableSummaryTitle":true,"tableSummary":""},{"width":74.09275968851016,"title":"库存","field":"stock","checked":false,"columnId":"stock","fixed":false,"rowspan":1,"colspan":1,"align":"center","tableQRCodeLevel":0,"tableSummaryTitle":true,"tableSummary":""},{"width":276,"title":"金额\n","field":"amount","checked":false,"columnId":"amount","fixed":false,"rowspan":1,"colspan":1,"tableQRCodeLevel":0,"tableSummaryTitle":true,"tableSummary":""},{"width":100,"title":"","field":"","checked":false,"columnId":"","fixed":false,"rowspan":1,"colspan":1},{"width":100,"title":"","field":"","checked":false,"columnId":"","fixed":false,"rowspan":1,"colspan":1}]]},"printElementType":{"title":"空白表格","type":"table","editable":true,"columnDisplayEditable":true,"columnDisplayIndexEditable":true,"columnTitleEditable":true,"columnResizable":true,"columnAlignEditable":true,"isEnableEditField":true,"isEnableContextMenu":true,"isEnableInsertRow":true,"isEnableDeleteRow":true,"isEnableInsertColumn":true,"isEnableDeleteColumn":true,"isEnableMergeCell":true}},{"options":{"left":12,"top":786,"height":49,"width":49},"printElementType":{"title":"html","type":"html"}},{"options":{"left":392.5,"top":785,"height":13,"width":199,"title":"销花宝提供技术支持","textAlign":"center","coordinateSync":false,"widthHeightSync":false,"qrCodeLevel":0,"right":590.74609375,"bottom":801.25,"vCenter":491.24609375,"hCenter":794.75},"printElementType":{"title":"自定义文本","type":"text"}},{"options":{"left":335,"top":12.5,"height":44,"width":233,"title":"货号","field":"seatSn","testData":"60","coordinateSync":false,"widthHeightSync":false,"fontSize":20,"fontWeight":"bold","textAlign":"right","textContentVerticalAlign":"middle","qrCodeLevel":0,"right":567.9921875,"bottom":51.2421875,"vCenter":451.4921875,"hCenter":29.2421875},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":30,"top":12.5,"height":46,"width":128,"title":"12-16","right":147.75,"bottom":49.49609375,"vCenter":87.75,"hCenter":28.99609375,"field":"shortSendTimeWant","testData":"12-16","coordinateSync":false,"widthHeightSync":false,"hideTitle":true,"fontSize":20,"fontWeight":"bold","textContentVerticalAlign":"middle","qrCodeLevel":0},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":95,"top":17.5,"height":35,"width":373,"title":"文本","right":469,"bottom":52.49609375,"vCenter":282.5,"hCenter":34.99609375,"field":"customName","testData":"纯彩 15280215347","coordinateSync":false,"widthHeightSync":false,"hideTitle":true,"fontSize":14,"fontWeight":"bold","textAlign":"center","textContentVerticalAlign":"middle","qrCodeLevel":0},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":32.5,"top":377.5,"height":200,"width":535,"title":"备注","right":571.4921875,"bottom":550.25,"vCenter":303.9921875,"hCenter":450.25,"field":"remark","testData":"箱子上要写上姓名和电话,到货时要拆箱,检查里面的花材","coordinateSync":false,"widthHeightSync":false,"fontSize":20,"fontWeight":"bold","lineHeight":30,"qrCodeLevel":0},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":32.5,"top":302.5,"height":70,"width":536,"title":"地址","field":"fullAddress","testData":"福建省厦门市集美区前山路147号中华人民共和国福建省厦门市集美区前山路147号中华人民共和国","coordinateSync":false,"widthHeightSync":false,"fontSize":18,"fontWeight":"bold","qrCodeLevel":0,"right":561.2421875,"bottom":616.75,"vCenter":293.2421875,"hCenter":581.75,"lineHeight":32.25},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":30,"top":200,"height":50,"width":400,"title":"编号","field":"sendNum","testData":"39","coordinateSync":false,"widthHeightSync":false,"fontSize":20,"lineHeight":36,"qrCodeLevel":0,"right":430,"bottom":284.99609375,"vCenter":230,"hCenter":259.99609375},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":32.5,"top":257.5,"height":39,"width":240,"title":"运费","field":"sendCost","testData":"0","coordinateSync":false,"widthHeightSync":false,"fontSize":20,"lineHeight":28.5,"qrCodeLevel":0,"right":526.7421875,"bottom":415.74609375,"vCenter":276.7421875,"hCenter":400.74609375},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":295,"top":202.5,"height":43,"width":270,"title":"德邦物流","right":565.74609375,"bottom":280.99609375,"vCenter":430.74609375,"hCenter":259.49609375,"field":"ysName","testData":"德邦物流","coordinateSync":false,"widthHeightSync":false,"hideTitle":true,"fontSize":20,"lineHeight":36,"qrCodeLevel":0},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":297.5,"top":260,"height":41,"width":260,"title":"打包费","field":"packCost","testData":"30","coordinateSync":false,"widthHeightSync":false,"fontSize":20,"lineHeight":24,"qrCodeLevel":0,"right":555.74609375,"bottom":332.99609375,"vCenter":425.74609375,"hCenter":312.49609375},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":30,"top":160,"height":36,"width":189,"title":"花材数量","field":"totalItemNum","testData":"20","coordinateSync":false,"widthHeightSync":false,"fontFamily":"cursive","fontSize":24,"fontWeight":"bold","lineHeight":32.25,"qrCodeLevel":0,"right":219,"bottom":158.49609375,"vCenter":124.5,"hCenter":140.49609375},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":295,"top":160,"height":36,"width":189,"title":"支数","field":"totalSmallItemNum","testData":"600","coordinateSync":false,"widthHeightSync":false,"fontFamily":"cursive","fontSize":24,"fontWeight":"bold","lineHeight":32.25,"qrCodeLevel":0,"right":482.25,"bottom":195.24609375,"vCenter":387.75,"hCenter":177.24609375},"printElementType":{"title":"文本","type":"text"}}],"paperNumberLeft":565.5,"paperNumberTop":819,"paperNumberContinue":true,"watermarkOptions":{"content":"vue-plugin-hiprint","rotate":25,"timestamp":true,"format":"YYYY-MM-DD HH:mm"},"panelLayoutOptions":{}}]}';
  1735. }
  1736. if (in_array($this->mainId, [44282])) {
  1737. //$template = '{"panels":[{"index":0,"name":1,"height":297,"width":210,"paperHeader":73.5,"paperFooter":780,"printElements":[{"options":{"left":30,"top":77,"height":52,"width":538,"field":"table","coordinateSync":false,"widthHeightSync":false,"tableBorder":"border","tableHeaderBorder":"border","tableHeaderCellBorder":"border","tableHeaderFontWeight":"bold","right":567.25,"bottom":110.24609375,"vCenter":298.25,"hCenter":82.24609375,"textAlign":"center","columns":[[{"width":134.33608169277167,"title":"名称","field":"name","checked":true,"columnId":"name","fixed":false,"rowspan":1,"colspan":1,"align":"center","halign":"center","vAlign":"middle","tableQRCodeLevel":0,"tableSummaryTitle":true,"tableSummary":""},{"width":74.77209598393634,"title":"预订数","field":"num","checked":true,"columnId":"num","fixed":false,"rowspan":1,"colspan":1,"align":"center","tableQRCodeLevel":0,"tableSummaryTitle":true,"tableSummary":""},{"width":73.30462681205907,"title":"确认数","field":"confirmNum","checked":true,"columnId":"confirmNum","fixed":false,"rowspan":1,"colspan":1,"align":"center","tableQRCodeLevel":0,"tableSummaryTitle":true,"tableSummary":""},{"width":71.10877448138285,"title":"单价","field":"unitPrice","checked":true,"columnId":"unitPrice","fixed":false,"rowspan":1,"colspan":1},{"width":84.32601880877743,"title":"金额","field":"price","checked":true,"columnId":"price","fixed":false,"rowspan":1,"colspan":1},{"width":100.15240222107263,"title":"备注","field":"remark","checked":true,"columnId":"remark","fixed":false,"rowspan":1,"colspan":1,"align":"center","tableQRCodeLevel":0,"tableSummaryTitle":true,"tableSummary":""}]]},"printElementType":{"title":"空白表格","type":"table","editable":true,"columnDisplayEditable":true,"columnDisplayIndexEditable":true,"columnTitleEditable":true,"columnResizable":true,"columnAlignEditable":true,"isEnableEditField":true,"isEnableContextMenu":true,"isEnableInsertRow":true,"isEnableDeleteRow":true,"isEnableInsertColumn":true,"isEnableDeleteColumn":true,"isEnableMergeCell":true}},{"options":{"left":12,"top":786,"height":49,"width":49},"printElementType":{"title":"html","type":"html"}},{"options":{"left":382.5,"top":785,"height":13,"width":136,"title":"销花宝提供技术支持","textAlign":"center","coordinateSync":false,"widthHeightSync":false,"qrCodeLevel":0,"right":518.74609375,"bottom":801.49609375,"vCenter":450.74609375,"hCenter":794.99609375},"printElementType":{"title":"自定义文本","type":"text"}},{"options":{"left":332.5,"top":53,"height":19,"width":233,"title":"货号","field":"seatSn","testData":"60","coordinateSync":false,"widthHeightSync":false,"fontSize":12,"fontWeight":"bold","textAlign":"right","textContentVerticalAlign":"middle","qrCodeLevel":0,"right":567.9921875,"bottom":51.2421875,"vCenter":451.4921875,"hCenter":29.2421875},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":30,"top":50.5,"height":19,"width":128,"title":"12-16","right":147.75,"bottom":49.49609375,"vCenter":87.75,"hCenter":28.99609375,"field":"shortSendTimeWant","testData":"12-16","coordinateSync":false,"widthHeightSync":false,"hideTitle":true,"fontSize":12,"fontWeight":"bold","textContentVerticalAlign":"middle","qrCodeLevel":0},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":92.5,"top":50.5,"height":19,"width":411,"title":"文本","right":469,"bottom":52.49609375,"vCenter":282.5,"hCenter":34.99609375,"field":"customName","testData":"纯彩 15280215347","coordinateSync":false,"widthHeightSync":false,"hideTitle":true,"fontSize":11,"fontWeight":"bold","textAlign":"center","textContentVerticalAlign":"middle","qrCodeLevel":0},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":30,"top":181.5,"height":45,"width":535,"title":"备注","right":565.75,"bottom":195,"vCenter":298.25,"hCenter":172.5,"field":"remark","testData":"箱子上要写上姓名和电话,到货时要拆箱,检查里面的花材","coordinateSync":false,"widthHeightSync":false,"fontSize":11,"fontWeight":"bold","lineHeight":30,"qrCodeLevel":0},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":30,"top":137.5,"height":25,"width":536,"title":"地址","field":"fullAddress","testData":"福建省厦门市集美区前山路147号中华人民共和国福建省厦门市集美区前山路147号中华人民共和国","coordinateSync":false,"widthHeightSync":false,"qrCodeLevel":0,"right":561.2421875,"bottom":616.75,"vCenter":293.2421875,"hCenter":581.75,"lineHeight":32.25,"textContentVerticalAlign":"middle"},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":30,"top":165,"height":15,"width":52,"title":"编号","field":"sendNum","testData":"39","coordinateSync":false,"widthHeightSync":false,"qrCodeLevel":0,"right":241.99609375,"bottom":182.49609375,"vCenter":215.99609375,"hCenter":174.99609375,"textContentVerticalAlign":"middle"},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":90,"top":165,"height":15,"width":79,"title":"德邦物流","right":173.9921875,"bottom":150,"vCenter":134.4921875,"hCenter":142.5,"field":"ysName","testData":"德邦物流","coordinateSync":false,"widthHeightSync":false,"hideTitle":true,"qrCodeLevel":0,"textContentVerticalAlign":"middle"},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":174,"top":165,"height":15,"width":120,"title":"开单人","field":"staffName","testData":"石头","coordinateSync":false,"widthHeightSync":false,"qrCodeLevel":0,"right":298.9921875,"bottom":154.74609375,"vCenter":238.9921875,"hCenter":149.87109375,"textContentVerticalAlign":"middle"},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":297.5,"top":165,"height":15,"width":120,"title":"打包人","field":"packName","testData":"小林","coordinateSync":false,"widthHeightSync":false,"qrCodeLevel":0,"right":417.4921875,"bottom":147.24609375,"vCenter":357.4921875,"hCenter":142.37109375,"textContentVerticalAlign":"middle"},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":92.5,"top":25.5,"height":25,"width":411,"title":"文本","right":509.74609375,"bottom":35.99609375,"vCenter":309.74609375,"hCenter":24.49609375,"field":"shopName","testData":"小向花卉 销售单","coordinateSync":false,"widthHeightSync":false,"hideTitle":true,"fontSize":16,"fontWeight":"bold","textAlign":"center","textContentVerticalAlign":"middle","qrCodeLevel":0},"printElementType":{"title":"文本","type":"text"}}],"paperNumberLeft":552.5,"paperNumberTop":785,"paperNumberContinue":true,"fontFamily":"Microsoft YaHei","watermarkOptions":{"content":"","rotate":25,"timestamp":false,"format":"YYYY-MM-DD HH:mm","fillStyle":"rgba(184, 184, 184, 0.3)","fontSize":"14px","width":200,"height":200},"panelLayoutOptions":{"layoutType":"column","layoutRowGap":0,"layoutColumnGap":0}}]}';
  1738. $template = '{"panels":[{"index":0,"name":1,"height":297,"width":210,"paperHeader":73.5,"paperFooter":780,"printElements":[{"options":{"left":30,"top":77,"height":52,"width":538,"field":"table","coordinateSync":false,"widthHeightSync":false,"tableBorder":"border","tableHeaderBorder":"border","tableHeaderCellBorder":"border","tableHeaderFontWeight":"bold","right":567.25,"bottom":110.24609375,"vCenter":298.25,"hCenter":82.24609375,"textAlign":"center","fontSize":11.25,"columns":[[{"width":134.33608169277167,"title":"名称","field":"name","checked":true,"columnId":"name","fixed":false,"rowspan":1,"colspan":1,"align":"center","halign":"center","vAlign":"middle","tableQRCodeLevel":0,"tableSummaryTitle":true,"tableSummary":""},{"width":74.77209598393634,"title":"预订数","field":"num","checked":true,"columnId":"num","fixed":false,"rowspan":1,"colspan":1,"align":"center","tableQRCodeLevel":0,"tableSummaryTitle":true,"tableSummary":""},{"width":73.30462681205907,"title":"确认数","field":"confirmNum","checked":true,"columnId":"confirmNum","fixed":false,"rowspan":1,"colspan":1,"align":"center","tableQRCodeLevel":0,"tableSummaryTitle":true,"tableSummary":""},{"width":71.10877448138285,"title":"单价","field":"unitPrice","checked":true,"columnId":"unitPrice","fixed":false,"rowspan":1,"colspan":1},{"width":84.32601880877743,"title":"金额","field":"price","checked":true,"columnId":"price","fixed":false,"rowspan":1,"colspan":1},{"width":100.15240222107263,"title":"备注","field":"remark","checked":true,"columnId":"remark","fixed":false,"rowspan":1,"colspan":1,"align":"center","tableQRCodeLevel":0,"tableSummaryTitle":true,"tableSummary":""}]]},"printElementType":{"title":"空白表格","type":"table","editable":true,"columnDisplayEditable":true,"columnDisplayIndexEditable":true,"columnTitleEditable":true,"columnResizable":true,"columnAlignEditable":true,"isEnableEditField":true,"isEnableContextMenu":true,"isEnableInsertRow":true,"isEnableDeleteRow":true,"isEnableInsertColumn":true,"isEnableDeleteColumn":true,"isEnableMergeCell":true}},{"options":{"left":12,"top":786,"height":49,"width":49},"printElementType":{"title":"html","type":"html"}},{"options":{"left":382.5,"top":785,"height":13,"width":136,"title":"销花宝提供技术支持","textAlign":"center","coordinateSync":false,"widthHeightSync":false,"qrCodeLevel":0,"right":518.74609375,"bottom":801.49609375,"vCenter":450.74609375,"hCenter":794.99609375},"printElementType":{"title":"自定义文本","type":"text"}},{"options":{"left":332.5,"top":53,"height":19,"width":233,"title":"货号","field":"seatSn","testData":"60","coordinateSync":false,"widthHeightSync":false,"fontSize":12,"fontWeight":"bold","textAlign":"right","textContentVerticalAlign":"middle","qrCodeLevel":0,"right":567.9921875,"bottom":51.2421875,"vCenter":451.4921875,"hCenter":29.2421875},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":30,"top":50.5,"height":19,"width":128,"title":"12-16","right":147.75,"bottom":49.49609375,"vCenter":87.75,"hCenter":28.99609375,"field":"shortSendTimeWant","testData":"12-16","coordinateSync":false,"widthHeightSync":false,"hideTitle":true,"fontSize":12,"fontWeight":"bold","textContentVerticalAlign":"middle","qrCodeLevel":0},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":93,"top":51,"height":19,"width":411,"title":"文本","right":503.49609375,"bottom":69.49609375,"vCenter":297.99609375,"hCenter":59.99609375,"field":"customName","testData":"纯彩 15280215347","coordinateSync":false,"widthHeightSync":false,"hideTitle":true,"fontSize":11,"fontWeight":"bold","textAlign":"center","textContentVerticalAlign":"middle","qrCodeLevel":0},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":30,"top":181.5,"height":45,"width":535,"title":"备注","right":565.75,"bottom":195,"vCenter":298.25,"hCenter":172.5,"field":"remark","testData":"箱子上要写上姓名和电话,到货时要拆箱,检查里面的花材","coordinateSync":false,"widthHeightSync":false,"fontSize":11,"fontWeight":"bold","lineHeight":30,"qrCodeLevel":0},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":30,"top":137.5,"height":25,"width":536,"title":"地址","field":"fullAddress","testData":"福建省厦门市集美区前山路147号中华人民共和国福建省厦门市集美区前山路147号中华人民共和国","coordinateSync":false,"widthHeightSync":false,"qrCodeLevel":0,"right":561.2421875,"bottom":616.75,"vCenter":293.2421875,"hCenter":581.75,"lineHeight":32.25,"textContentVerticalAlign":"middle"},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":30,"top":165,"height":15,"width":52,"title":"编号","field":"sendNum","testData":"39","coordinateSync":false,"widthHeightSync":false,"qrCodeLevel":0,"right":241.99609375,"bottom":182.49609375,"vCenter":215.99609375,"hCenter":174.99609375,"textContentVerticalAlign":"middle"},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":90,"top":165,"height":15,"width":79,"title":"德邦物流","right":173.9921875,"bottom":150,"vCenter":134.4921875,"hCenter":142.5,"field":"ysName","testData":"德邦物流","coordinateSync":false,"widthHeightSync":false,"hideTitle":true,"qrCodeLevel":0,"textContentVerticalAlign":"middle"},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":174,"top":165,"height":15,"width":120,"title":"开单人","field":"staffName","testData":"石头","coordinateSync":false,"widthHeightSync":false,"qrCodeLevel":0,"right":298.9921875,"bottom":154.74609375,"vCenter":238.9921875,"hCenter":149.87109375,"textContentVerticalAlign":"middle"},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":297.5,"top":165,"height":15,"width":120,"title":"打包人","field":"packName","testData":"小林","coordinateSync":false,"widthHeightSync":false,"qrCodeLevel":0,"right":417.4921875,"bottom":147.24609375,"vCenter":357.4921875,"hCenter":142.37109375,"textContentVerticalAlign":"middle"},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":92.5,"top":25.5,"height":25,"width":411,"title":"文本","right":509.74609375,"bottom":35.99609375,"vCenter":309.74609375,"hCenter":24.49609375,"field":"shopName","testData":"小向花卉 销售单","coordinateSync":false,"widthHeightSync":false,"hideTitle":true,"fontSize":16,"fontWeight":"bold","textAlign":"center","textContentVerticalAlign":"middle","qrCodeLevel":0},"printElementType":{"title":"文本","type":"text"}}],"paperNumberLeft":552.5,"paperNumberTop":785,"paperNumberContinue":true,"fontFamily":"Microsoft YaHei","watermarkOptions":{"content":"","rotate":25,"timestamp":false,"format":"YYYY-MM-DD HH:mm","fillStyle":"rgba(184, 184, 184, 0.3)","fontSize":"14px","width":200,"height":200},"panelLayoutOptions":{"layoutType":"column","layoutRowGap":0,"layoutColumnGap":0}}]}';
  1739. }
  1740. }
  1741. $info['template'] = $template;
  1742. $printType = $get['printType'] ?? 0;
  1743. if ($printType == 1) {
  1744. //打多联的模板
  1745. $table = [];
  1746. if (isset($info['product']) && !empty($info['product'])) {
  1747. foreach ($info['product'] as $key => $val) {
  1748. $currentName = $val['name'] ?? '';
  1749. $num = $val['xhNum'] ?? 0;
  1750. $refundNum = $val['refundNum'] ?? 0;
  1751. $num = bcsub($num, $refundNum);
  1752. $totalItemNum = bcadd($totalItemNum, $num);
  1753. $ratio = $val['ratio'] ?? 0;
  1754. $currentSmallNum = bcmul($num, $ratio);
  1755. $totalSmallItemNum = bcadd($totalSmallItemNum, $currentSmallNum);
  1756. $itemRemark = $val['remark'] ?? '';
  1757. $unitPrice = $val['xhUnitPrice'] ?? 0;
  1758. $unitPrice = floatval($unitPrice);
  1759. $price = bcmul($unitPrice, $num, 2);
  1760. $price = floatval($price);
  1761. $table[] = [
  1762. 'name' => $currentName,
  1763. 'num' => $num,
  1764. 'orderNum' => '',
  1765. 'remark' => $itemRemark,
  1766. 'wxNumber' => 'shish3508',
  1767. 'unitPrice' => '¥' . $unitPrice,
  1768. 'price' => '¥' . $price,
  1769. 'refundNum' => $refundNum == 0 ? '' : 0,
  1770. ];
  1771. }
  1772. }
  1773. $orderSn = $info['orderSn'] ?? '';
  1774. $kind = $info['productStat'] && $info['productStat']['kind'] ?? 0;
  1775. $totalItemNum = $info['productStat'] && $info['productStat']['bigNum'] ?? 0;
  1776. $addTime = $info['addTime'] ?? '';
  1777. $actPrice = $info['actPrice'] ?? 0;
  1778. $tkPrice = $info['tkPrice'] ?? 0;
  1779. $prePrice = $info['prePrice'] ?? 0;
  1780. $customMobile = $info['customMobile'] ?? '';
  1781. $address = '';
  1782. if (isset($info['address']) && !empty($info['address'])) {
  1783. $address .= $info['fullAddress'];
  1784. if (isset($info['showAddress']) && !empty($info['showAddress']) && $info['showAddress'] != $info['fullAddress']) {
  1785. $address .= '(' . $info['showAddress'] . ')<BR>';
  1786. }
  1787. }
  1788. $printData = [
  1789. 'table' => $table,
  1790. 'addTime' => '',
  1791. 'entryTime' => $addTime,
  1792. 'ghsName' => $customName,
  1793. 'clearCode' => '',
  1794. 'staffName' => '',
  1795. 'telephone' => $customMobile,
  1796. 'kind' => $kind,
  1797. 'orderSn' => $orderSn,
  1798. 'sjShopName' => $sjShopName . ' 销售单',
  1799. 'prePrice' => '¥' . $prePrice,
  1800. 'tkPrice' => '¥' . $tkPrice,
  1801. 'realPrice' => '¥' . $actPrice,
  1802. 'totalItemNum' => $totalItemNum,
  1803. 'numKind' => "共" . $kind . "种,数量:" . $totalItemNum,
  1804. 'address' => $address,
  1805. ];
  1806. $info['printData'] = $printData;
  1807. $template = '{"panels":[{"index":0,"name":1,"height":140,"width":210,"paperHeader":49.5,"paperFooter":383.4343434343434,"printElements":[{"options":{"left":115,"top":20,"height":25,"width":374,"title":"文本","right":488.99609375,"bottom":44.9921875,"vCenter":301.99609375,"hCenter":32.4921875,"field":"sjShopName","testData":"小向花卉 采购单","coordinateSync":false,"widthHeightSync":false,"hideTitle":true,"fontSize":14,"fontWeight":"bold","textAlign":"center","textContentVerticalAlign":"middle","qrCodeLevel":0,"fontFamily":"SimSun"},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":27.5,"top":22.5,"height":21,"width":145,"title":"单号","field":"orderSn","testData":"PC563961","coordinateSync":false,"widthHeightSync":false,"fontSize":12,"textContentVerticalAlign":"middle","qrCodeLevel":0,"right":148.9921875,"bottom":43.9921875,"vCenter":85.9921875,"hCenter":33.4921875,"fontFamily":"SimSun"},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":445,"top":25,"height":22,"width":122,"title":"核销码","field":"clearCode","testData":"3961","coordinateSync":false,"widthHeightSync":false,"fontSize":12,"textAlign":"right","textContentVerticalAlign":"middle","qrCodeLevel":0,"right":571.25,"bottom":46.75,"vCenter":510.25,"hCenter":35.75,"fontFamily":"SimSun"},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":22.5,"top":55,"height":36,"width":550,"field":"table","coordinateSync":false,"widthHeightSync":false,"fontSize":11,"textAlign":"center","tableHeaderFontWeight":"bold","right":572.5,"bottom":90.99609375,"vCenter":297.5,"hCenter":72.99609375,"fontFamily":"SimSun","columns":[[{"width":54.223705213537556,"title":"序号","field":"orderNum","checked":true,"columnId":"orderNum","fixed":false,"rowspan":1,"colspan":1},{"width":175.72632876030514,"title":"花材名称","field":"name","checked":true,"columnId":"name","fixed":false,"rowspan":1,"colspan":1},{"width":69.07232544378695,"title":"单价","field":"unitPrice","checked":true,"columnId":"unitPrice","fixed":false,"rowspan":1,"colspan":1},{"width":72.10486265361865,"title":"数量","field":"num","checked":true,"columnId":"num","fixed":false,"rowspan":1,"colspan":1},{"width":67.11113461538461,"title":"金额","field":"price","checked":true,"columnId":"price","fixed":false,"rowspan":1,"colspan":1},{"width":57.08931639029012,"title":"已退","field":"refundNum","checked":true,"columnId":"refundNum","fixed":false,"rowspan":1,"colspan":1},{"width":54.67232692307692,"title":"备注","field":"remark","checked":true,"columnId":"remark","fixed":false,"rowspan":1,"colspan":1},{"width":100,"title":"","field":"","checked":false,"columnId":"","fixed":false,"rowspan":1,"colspan":1},{"width":100,"title":"","field":"","checked":false,"columnId":"","fixed":false,"rowspan":1,"colspan":1}]]},"printElementType":{"title":"空白表格","type":"table","editable":true,"columnDisplayEditable":true,"columnDisplayIndexEditable":true,"columnTitleEditable":true,"columnResizable":true,"columnAlignEditable":true,"isEnableEditField":true,"isEnableContextMenu":true,"isEnableInsertRow":true,"isEnableDeleteRow":true,"isEnableInsertColumn":true,"isEnableDeleteColumn":true,"isEnableMergeCell":true}},{"options":{"left":200,"top":120,"height":16,"width":178,"title":"账单日期","field":"addTime","testData":"2024-12-28 11:00","coordinateSync":false,"widthHeightSync":false,"fontSize":11,"textContentVerticalAlign":"middle","qrCodeLevel":0,"right":359.49609375,"bottom":146.9921875,"vCenter":276.99609375,"hCenter":138.9921875,"fontFamily":"SimSun"},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":372,"top":120,"height":16,"width":178,"title":"客户","field":"ghsName","testData":"石头花艺","coordinateSync":false,"widthHeightSync":false,"fontSize":11,"textContentVerticalAlign":"middle","qrCodeLevel":0,"right":573.49609375,"bottom":145.99609375,"vCenter":484.49609375,"hCenter":137.99609375,"fontFamily":"SimSun"},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":27.5,"top":120,"height":16,"width":175,"title":"创建时间","right":141.75,"bottom":139.5,"vCenter":81.75,"hCenter":134.625,"field":"entryTime","testData":"2024-12-29 12:10","coordinateSync":false,"widthHeightSync":false,"fontSize":11,"textContentVerticalAlign":"middle","qrCodeLevel":0,"fontFamily":"SimSun"},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":132.5,"top":145,"height":16,"width":90,"title":"售后","right":262.74609375,"bottom":161.2421875,"vCenter":202.74609375,"hCenter":153.2421875,"field":"tkPrice","testData":"63","coordinateSync":false,"widthHeightSync":false,"fontSize":11,"textContentVerticalAlign":"middle","qrCodeLevel":0,"fontFamily":"SimSun"},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":222.5,"top":145,"height":16,"width":114,"title":"实际金额","field":"realPrice","testData":"23","coordinateSync":false,"widthHeightSync":false,"fontSize":11,"textContentVerticalAlign":"middle","qrCodeLevel":0,"right":358.9921875,"bottom":160.99609375,"vCenter":301.9921875,"hCenter":152.99609375,"fontFamily":"SimSun"},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":347.5,"top":145,"height":16,"width":120,"title":"电话","field":"telephone","testData":"15280215347","coordinateSync":false,"widthHeightSync":false,"fontSize":11,"textContentVerticalAlign":"middle","qrCodeLevel":0,"right":467.7421875,"bottom":161.2421875,"vCenter":407.7421875,"hCenter":153.2421875,"fontFamily":"SimSun"},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":425,"top":145,"height":16,"width":148,"title":"录单人","field":"staffName","testData":"小石","coordinateSync":false,"widthHeightSync":false,"fontSize":11,"textAlign":"right","textContentVerticalAlign":"middle","qrCodeLevel":0,"right":574.4921875,"bottom":161.2421875,"vCenter":500.4921875,"hCenter":153.2421875,"fontFamily":"SimSun"},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":27.5,"top":145,"height":16,"width":105,"title":"合计","field":"prePrice","testData":"693","coordinateSync":false,"widthHeightSync":false,"fontSize":11,"textContentVerticalAlign":"middle","qrCodeLevel":0,"right":144,"bottom":160.24609375,"vCenter":85.5,"hCenter":152.24609375,"fontFamily":"SimSun"},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":30,"top":169.5,"height":16,"width":120,"field":"numKind","testData":"共3种,数量:9","coordinateSync":false,"widthHeightSync":false,"hideTitle":true,"fontSize":11,"textContentVerticalAlign":"middle","qrCodeLevel":0,"title":"文本","fontFamily":"SimSun"},"printElementType":{"title":"文本","type":"text"}},{"options":{"left":169.5,"top":169.5,"height":16,"width":400,"title":"地址","field":"address","testData":"厦门前山路147号","coordinateSync":false,"widthHeightSync":false,"fontSize":10.5,"textContentVerticalAlign":"middle","qrCodeLevel":0,"right":569.5,"bottom":185.5,"vCenter":369.5,"hCenter":177.5},"printElementType":{"title":"文本","type":"text"}}],"paperNumberLeft":565.5,"paperNumberTop":389,"paperNumberDisabled":true,"paperNumberContinue":true,"orient":1,"watermarkOptions":{"content":"","rotate":25,"timestamp":false,"format":"YYYY-MM-DD HH:mm","fillStyle":"rgba(184, 184, 184, 0.3)","fontSize":"14px","width":200,"height":200},"panelLayoutOptions":{"layoutType":"column","layoutRowGap":0,"layoutColumnGap":0}}]}';
  1808. $info['template'] = $template;
  1809. }
  1810. //是否有云打印判断
  1811. $hasCloudPrint = 0;
  1812. $shopExt = $this->shopExt;
  1813. if (isset($shopExt->printSn) && !empty($shopExt->printSn) && isset($shopExt->printKey) && !empty($shopExt->printKey)) {
  1814. $hasCloudPrint = 1;
  1815. }
  1816. $info['hasCloudPrint'] = $hasCloudPrint;
  1817. $purchaseId = $info['purchaseId'] ?? 0;
  1818. $cg = PurchaseClass::getById($purchaseId);
  1819. $info['cgInfo'] = $cg;
  1820. //店长信息
  1821. $mainId = $cg['mainId'] ?? 0;
  1822. $superInfo = ShopAdminClass::getManager($mainId);
  1823. $info['customSuper'] = $superInfo;
  1824. //员工是否有财务权限 ssh 20251117
  1825. $staff = $this->shopAdmin;
  1826. $staffFinance = $staff->finance ?? 0;
  1827. $info['staffFinance'] = $staffFinance;
  1828. util::success($info);
  1829. }
  1830. //获取订单信息 ssh 20240102
  1831. public function actionGetInfoByOrderSn()
  1832. {
  1833. $get = Yii::$app->request->get();
  1834. $orderSn = $get['orderSn'] ?? '';
  1835. $info = OrderService::getByCondition(['orderSn' => $orderSn], true);
  1836. if (empty($info)) {
  1837. util::fail('没有找到订单');
  1838. }
  1839. if ($info->mainId != $this->mainId) {
  1840. util::fail('不是你的订单哦');
  1841. }
  1842. util::success(['info' => $info]);
  1843. }
  1844. //获取订单详情,不需要登录可以访问,后面要删除此方法 ssh 20220819
  1845. public function actionInfo()
  1846. {
  1847. $get = Yii::$app->request->get();
  1848. $id = $get['id'] ?? 0;
  1849. $info = OrderService::getOrderInfo($id, true, true, true, false);
  1850. if (empty($info)) {
  1851. util::fail('没有找到订单');
  1852. }
  1853. //是否有云打印判断
  1854. $hasCloudPrint = 0;
  1855. $shopExt = $this->shopExt;
  1856. if (isset($shopExt->printSn) && !empty($shopExt->printSn) && isset($shopExt->printKey) && !empty($shopExt->printKey)) {
  1857. $hasCloudPrint = 1;
  1858. }
  1859. $info['hasCloudPrint'] = $hasCloudPrint;
  1860. $purchaseId = $info['purchaseId'] ?? 0;
  1861. $cg = PurchaseClass::getById($purchaseId);
  1862. $info['cgInfo'] = $cg;
  1863. //店长信息
  1864. $mainId = $cg['mainId'] ?? 0;
  1865. $superInfo = ShopAdminClass::getManager($mainId);
  1866. $info['customSuper'] = $superInfo;
  1867. util::success($info);
  1868. }
  1869. //自取免发货流程处理 ssh 2021.1.22
  1870. public function actionWithoutSend()
  1871. {
  1872. util::complete();
  1873. }
  1874. //本店送 ssh 2021.1.24
  1875. public function actionSelfSend()
  1876. {
  1877. $get = Yii::$app->request->get();
  1878. $id = isset($get['id']) ? $get['id'] : 0;
  1879. $info = OrderClass::getById($id, true);
  1880. OrderClass::valid($info->attributes, $this->shopId);
  1881. $connection = Yii::$app->db;
  1882. $transaction = $connection->beginTransaction();
  1883. try {
  1884. OrderClass::selfSend($info);
  1885. $transaction->commit();
  1886. } catch (\Exception $exception) {
  1887. $transaction->rollBack();
  1888. Yii::info("本店送操作报错:" . $exception->getMessage());
  1889. util::fail('操作失败');
  1890. }
  1891. util::complete();
  1892. }
  1893. //运费计算 ssh 2021.1.24
  1894. public function actionFreight()
  1895. {
  1896. //2021.3.28 接入达达
  1897. $get = Yii::$app->request->get();
  1898. $post = Yii::$app->request->post();
  1899. if (empty($get)) {
  1900. $get = $post;
  1901. }
  1902. $orderId = $get['id'] ?? 0; //订单ID
  1903. $customId = $get['customId'] ?? 0;
  1904. if (empty($orderId)) {
  1905. //自定义运费
  1906. //freight::getCost();
  1907. if (empty($customId)) {
  1908. util::fail("请选择客户");
  1909. }
  1910. $customInfo = CustomClass::getById($customId);
  1911. if (empty($customInfo)) {
  1912. util::fail('没有找到客户');
  1913. }
  1914. $shop = $this->shop;
  1915. //花材信息
  1916. $productJson = $get['product'] ?? '';
  1917. // $productJson = '[{"productId":31993,"bigNum":1,"smallNum":0}]';
  1918. if (empty($productJson)) {
  1919. util::fail('请选择花材');
  1920. }
  1921. $productList = json_decode($productJson, true);
  1922. if (empty($productList)) {
  1923. util::fail('请选择花材');
  1924. }
  1925. $productList = ProductClass::mergeItemInfo($productList);
  1926. $weight = 0;
  1927. $price = 0;
  1928. $productData = ProductClass::getProductMapData($productList);
  1929. $bigNum = 0;
  1930. foreach ($productList as $key => $val) {
  1931. $productId = $val['productId'];
  1932. $w = ProductClass::getWeight($val['productId'], $val['bigNum'], $val['smallNum']);
  1933. $bigNum += $val['bigNum'];
  1934. $weight = bcadd($w, $weight, 2);
  1935. $ratio = $productData[$productId]['ratio'] ?? 0;
  1936. //大小数量合并多少扎
  1937. $itemNum = ProductClass::mergeItemNum($val['bigNum'], $val['smallNum'], $ratio);
  1938. //售卖价格
  1939. $itemPrice = $productData[$productId]['price'] ?? 0;
  1940. //合计价格
  1941. $price = bcadd($price, bcmul($itemNum, $itemPrice, 2), 2);
  1942. }
  1943. //没有经纬度的客户运费直接返回空 ssh 20210612
  1944. if (empty($customInfo['lat']) || empty($customInfo['long'])) {
  1945. util::success(['sedCost' => '']);
  1946. }
  1947. $cost = freight::getCost($shop->lat, $shop->long, $customInfo['lat'], $customInfo['long'], $weight);
  1948. util::success(['sedCost' => $cost]);
  1949. }
  1950. $province = $get['province'] ?? '';
  1951. $city = $get['city'] ?? '';
  1952. $address = $get['address'] ?? '';
  1953. $floor = $get['floor'] ?? '';
  1954. $customName = $get['customName'] ?? '';
  1955. $customMobile = $get['customMobile'] ?? '';
  1956. $fullAddress = $province . $city . $address . $floor;
  1957. $sendTime = $get['sendTime'] ?? '';
  1958. $lat = $get['lat'] ?? '';
  1959. $lng = $get['long'] ?? '';
  1960. if (empty($lat) || empty($lng) || empty($fullAddress)) {
  1961. util::fail('请填写客户地址');
  1962. }
  1963. ini_set('date.timezone', 'Asia/Shanghai');
  1964. if (!empty($sendTime)) {
  1965. //配送时间不为空
  1966. // 预约发单时间(预约时间unix时间戳(10位),精确到分;整分钟为间隔,并且需要至少提前5分钟预约
  1967. $sendTimeInt = strtotime($sendTime);
  1968. $now = time();
  1969. $diff = $sendTimeInt - $now;
  1970. //因服务器写入时间,改为至少提前6分钟
  1971. if ($diff <= 360) {
  1972. util::fail('配送时间至少提前6分钟');
  1973. }
  1974. } else {
  1975. //默认立即发送
  1976. $sendTime = 0;
  1977. }
  1978. //更新订单表
  1979. $info = OrderService::getOrderInfo($orderId);
  1980. OrderClass::valid($info, $this->shopId);
  1981. if ($sendTime) {
  1982. $sendTime = date('Y-m-d H:i', strtotime($sendTime));
  1983. } else {
  1984. $sendTime = '0000-00-00 00:00:00';
  1985. }
  1986. $expressAddInfo = [
  1987. 'customName' => $customName,
  1988. 'customMobile' => $customMobile,
  1989. 'province' => $province,
  1990. 'city' => $city,
  1991. 'address' => $address,
  1992. 'floor' => $floor,
  1993. 'lat' => $lat,
  1994. 'long' => $lng,
  1995. 'sendTime' => $sendTime,
  1996. ];
  1997. OrderClass::updateCustomExpressInfo($orderId, $expressAddInfo);
  1998. //计算运费
  1999. $info['province'] = $province;
  2000. $info['city'] = $city;
  2001. $info['address'] = $address;
  2002. $info['floor'] = $floor;
  2003. $info['fullAddress'] = $fullAddress;
  2004. $info['lat'] = $lat;
  2005. $info['long'] = $lng;
  2006. $info['sendTime'] = $expressAddInfo['sendTime'];
  2007. $res = DadaExpressServices::queryDeliverFee($info);
  2008. util::success(['sedCost' => $res['fee']]);
  2009. }
  2010. //发快递和第三方配送 ssh 2021.1.24
  2011. public function actionThirdSend()
  2012. {
  2013. $get = Yii::$app->request->get();
  2014. $id = isset($get['id']) ? $get['id'] : 0;
  2015. $info = OrderService::getById($id, true);
  2016. OrderClass::valid($info->attributes, $this->shopId);
  2017. if (empty($info->lat) || empty($info->long) || empty($info->fullAddress)) {
  2018. util::fail('请填写客户地址');
  2019. }
  2020. $connection = Yii::$app->db;
  2021. $transaction = $connection->beginTransaction();
  2022. try {
  2023. $respond = OrderClass::thirdSend($info, $get);
  2024. $transaction->commit();
  2025. util::success($respond);
  2026. } catch (\Exception $exception) {
  2027. $transaction->rollBack();
  2028. Yii::info("发快递操作报错:" . $exception->getMessage());
  2029. util::fail('操作失败' . $exception->getMessage());
  2030. }
  2031. }
  2032. //确认送达 ssh 2021.1.24
  2033. public function actionReach()
  2034. {
  2035. $get = Yii::$app->request->get();
  2036. $id = isset($get['id']) ? $get['id'] : 0;
  2037. $info = OrderClass::getById($id, true);
  2038. OrderClass::valid($info->attributes, $this->shopId);
  2039. $connection = Yii::$app->db;
  2040. $transaction = $connection->beginTransaction();
  2041. try {
  2042. OrderService::reach($info);
  2043. $transaction->commit();
  2044. } catch (\Exception $exception) {
  2045. $transaction->rollBack();
  2046. Yii::info("送达操作报错:" . $exception->getMessage());
  2047. util::fail('操作失败');
  2048. }
  2049. util::complete();
  2050. }
  2051. //下单要用到的相关信息 ssh 2019.12.6
  2052. public function actionOrderRelate()
  2053. {
  2054. $regionTree = RegionService::tree();
  2055. $shop = $this->shop->attributes;
  2056. $freight = ['first' => 5, 'add' => 2];
  2057. $mapKey = 'OFWBZ-2NTHP-EHNDD-LKWQY-GANM7-PXBJH';
  2058. $out = ['freight' => $freight, 'shop' => $shop, 'region' => $regionTree, 'thirdMapKey' => $mapKey, 'merchant' => $shop];
  2059. util::success($out);
  2060. }
  2061. //客户欠款的订单 ssh 2021.2.4
  2062. public function actionDebtList()
  2063. {
  2064. $get = Yii::$app->request->get();
  2065. $id = $get['id'] ?? 0;
  2066. $info = CustomClass::getCustom($id);
  2067. CustomClass::valid($info, $this->shopId);
  2068. $mainId = $this->mainId;
  2069. $where = ['mainId' => $mainId, 'customId' => $id, 'debt' => 1];
  2070. $searchTime = $get['searchTime'] ?? '';
  2071. if (!empty($searchTime)) {
  2072. $startTime = $get['startTime'] ?? '';
  2073. $endTime = $get['endTime'] ?? '';
  2074. $period = dateUtil::formatTime($searchTime, $startTime, $endTime);
  2075. $where['payTime'] = ['between', [$period['startTime'], $period['endTime']]];
  2076. } else {
  2077. if ($mainId == 33447 && $id == 51031) {
  2078. util::fail('请选时间');
  2079. }
  2080. }
  2081. $list = OrderClass::getAllByCondition($where, 'addTime DESC', ['id', 'orderSn', 'actPrice', 'addTime', 'remainDebtPrice', 'payTime']);
  2082. $result = ['customInfo' => $info, 'list' => $list];
  2083. util::success($result);
  2084. }
  2085. //更新打印次数
  2086. public function actionAddPrintNum()
  2087. {
  2088. $id = Yii::$app->request->get('id', 0);
  2089. $order = OrderClass::getById($id, true);
  2090. OrderClass::valid($order, $this->shopId);
  2091. $order->printNum += 1;
  2092. $order->save();
  2093. util::complete();
  2094. }
  2095. //打印订单 ssh 20210714
  2096. public function actionCloudPrintOrder()
  2097. {
  2098. $get = Yii::$app->request->get();
  2099. $id = $get['id'] ?? 0;
  2100. $showPrice = $get['showPrice'] ?? 1;
  2101. $order = OrderClass::getById($id, true);
  2102. OrderClass::valid($order, $this->shopId);
  2103. if ($order->status == OrderClass::ORDER_STATUS_UN_PAY) {
  2104. util::fail('订单还没有付款');
  2105. }
  2106. if ($order->status == OrderClass::ORDER_STATUS_CANCEL) {
  2107. util::fail('订单已取消');
  2108. }
  2109. $ext = $this->shopExt;
  2110. if (isset($ext->printSn) == false || isset($ext->printKey) == false || empty($ext->printSn) || empty($ext->printKey)) {
  2111. util::success(['hasNoPrint' => 1]);
  2112. }
  2113. OrderClass::onlinePrint($order, $showPrice);
  2114. $order->printNum += 1;
  2115. $order->save();
  2116. util::complete();
  2117. }
  2118. //订单确认完成 ssh 20210809
  2119. public function actionConfirmFinish()
  2120. {
  2121. $payWay = Yii::$app->request->get('payWay', -1);
  2122. $id = Yii::$app->request->get('id', 0);
  2123. $clearType = Yii::$app->request->get('clearType', 0);
  2124. $connection = Yii::$app->db;
  2125. $transaction = $connection->beginTransaction();
  2126. try {
  2127. $order = OrderClass::getById($id, true);
  2128. OrderClass::valid($order, $this->shopId);
  2129. $purchaseId = $order->purchaseId ?? 0;
  2130. $purchase = PurchaseClass::getById($purchaseId, true);
  2131. if (empty($purchase)) {
  2132. util::fail('没有采购信息');
  2133. }
  2134. if ($clearType == 1) {
  2135. //欠款
  2136. $payWay = dict::getDict('payWay', 'debtPay');
  2137. } elseif ($clearType == 2) {
  2138. //已收款
  2139. if ($payWay == -1) {
  2140. util::fail('请选择收款方式');
  2141. }
  2142. $shopAdmin = $this->shopAdmin;
  2143. if (isset($shopAdmin->super) == false || $shopAdmin->super != 1) {
  2144. util::fail('超管才能发起已收款');
  2145. }
  2146. } else {
  2147. util::fail('请选择结算方式');
  2148. }
  2149. //不需要打印
  2150. $order->needPrint = dict::getDict('needPrint', 'noNeed');
  2151. $order->save();
  2152. //支付
  2153. PurchaseService::payAfter($purchase, $payWay);
  2154. OrderService::payAfter($order, $payWay);
  2155. //自己送
  2156. $info = OrderClass::getById($id, true);
  2157. OrderClass::selfSend($info);
  2158. //确认送达,并且不需要微信通知
  2159. Yii::$app->params['noNeedWxNotice'] = 1;
  2160. $info = OrderClass::getById($id, true);
  2161. OrderService::reach($info);
  2162. $transaction->commit();
  2163. util::complete('操作成功');
  2164. } catch (\Exception $exception) {
  2165. $transaction->rollBack();
  2166. Yii::info("确认完成订单报错:" . $exception->getMessage());
  2167. util::fail('操作失败');
  2168. }
  2169. }
  2170. //取消订单 ssh 20220110
  2171. public function actionCancel()
  2172. {
  2173. $shopAdmin = $this->shopAdmin;
  2174. if (isset($shopAdmin->super) == false || $shopAdmin->super != 1) {
  2175. util::fail('超管才能取消订单');
  2176. }
  2177. $id = Yii::$app->request->get('id');
  2178. $order = OrderClass::getById($id, true);
  2179. if ($order->orderType == 2) {
  2180. util::fail('客户下单,不能主动取消');
  2181. }
  2182. OrderClass::valid($order, $this->shopId);
  2183. OrderService::expire($order, true);
  2184. util::complete('已取消');
  2185. }
  2186. //获取收款语音播报地址 ssh 20211231
  2187. public function actionGetPayVoice()
  2188. {
  2189. $id = Yii::$app->request->get('id');
  2190. $order = OrderClass::getById($id, true);
  2191. $payWay = $order->payWay ?? 0;
  2192. $money = floatval($order->actPrice);
  2193. $payment = $payWay == dict::getDict('payWay', 'alipay') ? '支付宝' : '微信';
  2194. $msg = $payment . '收款' . $money . '元';
  2195. $audio = baiduAip::transfer($msg, 4, 0);
  2196. //上传到oss
  2197. $file = time() . rand(10000, 999999) . '.mp3';
  2198. $filePath = 'tmp/arrival/money/' . $file;
  2199. oss::uploadTmpAudio($filePath, $audio);
  2200. $url = Yii::$app->params['ghsImgHost'] . $filePath;
  2201. util::success(['url' => $url]);
  2202. }
  2203. //修改备注
  2204. public function actionModifyRemark()
  2205. {
  2206. $post = Yii::$app->request->post();
  2207. $id = $post['id'] ?? 0;
  2208. $remark = $post['remark'] ?? '';
  2209. $order = OrderClass::getById($id, true);
  2210. if (empty($order)) {
  2211. util::fail('没有找到订单');
  2212. }
  2213. if ($order->mainId != $this->mainId) {
  2214. util::fail('不是你的订单');
  2215. }
  2216. $cgId = $order->purchaseId ?? 0;
  2217. $cg = PurchaseClass::getById($cgId, true);
  2218. if (empty($cg)) {
  2219. util::fail('采购单没有找到');
  2220. }
  2221. $order->remark = $remark;
  2222. $order->save();
  2223. $cg->remark = $remark;
  2224. $cg->save();
  2225. util::complete('修改成功');
  2226. }
  2227. //修改订单的确认时间 ssh 20240511
  2228. public function actionModifyOrderConfirmTime()
  2229. {
  2230. $get = Yii::$app->request->get();
  2231. $id = $get['id'] ?? 0;
  2232. $date = $get['date'] ?? '';
  2233. if (empty($date)) {
  2234. util::fail('请选择日期');
  2235. }
  2236. $connection = Yii::$app->db;
  2237. $transaction = $connection->beginTransaction();//开启事务
  2238. try {
  2239. $order = OrderClass::getById($id, true);
  2240. if (empty($order)) {
  2241. util::fail('没有找到订单');
  2242. }
  2243. if ($order->mainId != $this->mainId) {
  2244. util::fail('不是你的订单');
  2245. }
  2246. if ($order->payStatus == 0) {
  2247. util::fail('没有确认的订单');
  2248. }
  2249. $mainId = $this->mainId;
  2250. //超管或者约定的人可以修改日期
  2251. if (getenv('YII_ENV') == 'production') {
  2252. if (in_array($mainId, [23390])) {
  2253. if (!in_array($this->adminId, [24586, 23960, 24043])) {
  2254. util::fail('你不能修改哦');
  2255. }
  2256. }
  2257. }
  2258. $payTime = $order->payTime;
  2259. $timeArr = explode(' ', $payTime);
  2260. $dateStr = $timeArr[0];
  2261. if ($dateStr == $date) {
  2262. util::fail('日期没变');
  2263. }
  2264. $after = $timeArr[1];
  2265. $new = $date . ' ' . $after;
  2266. $cgId = $order->purchaseId ?? 0;
  2267. $cg = PurchaseClass::getById($cgId, true);
  2268. if (empty($cg)) {
  2269. util::fail('没有找到订单信息');
  2270. }
  2271. if (strtotime($new) > time()) {
  2272. util::fail('不能修改成未来时间');
  2273. }
  2274. $order->payTime = $new;
  2275. $order->save();
  2276. $cg->payTime = $new;
  2277. $cg->save();
  2278. //有修改账单日期需要更新到欠款变动明细,财务好对账,多个地方要同步修改,关键词to_change_custom_debt_pay_time
  2279. CustomDebtChangeClass::updateByCondition(['capitalType' => 10, 'relateId' => $id], ['payTime' => $new]);
  2280. //找到当前订单客户的账单日期为 $date 的所有订单,然后更新同天内的所有订单的 sameTimeIds(加此次要改变的订单的订单号$id)
  2281. $customId = $order->customId;
  2282. $startTime = $date . ' 00:00:00';
  2283. $endTime = $date . ' 23:59:59';
  2284. $dayOrders = OrderClass::getAllByCondition([
  2285. 'customId' => $customId,
  2286. 'payTime' => ['between', [$startTime, $endTime]]
  2287. ], 'id ASC', 'id, sameTimeIds');
  2288. $ids = [];
  2289. if (!empty($dayOrders)) {
  2290. $ids = array_column($dayOrders, 'id');
  2291. }
  2292. // 确保当前订单ID在列表中
  2293. if (!in_array($id, $ids)) {
  2294. $ids[] = $id;
  2295. }
  2296. // 排序并去重
  2297. sort($ids);
  2298. $ids = array_unique($ids);
  2299. $sameTimeIdsStr = implode(',', $ids);
  2300. // 更新所有相关订单
  2301. if (!empty($ids)) {
  2302. OrderClass::updateByIds($ids, ['sameTimeIds' => $sameTimeIdsStr]);
  2303. }
  2304. //从原先同天内的订单中删除此次要改变的订单的订单号$id
  2305. $oldSameTimeIds = $order->sameTimeIds;
  2306. $oldSameTimeIdsArr = explode(',', $oldSameTimeIds);
  2307. if (in_array($id, $oldSameTimeIdsArr)) {
  2308. $oldSameTimeIdsArr = array_diff($oldSameTimeIdsArr, [$id]);
  2309. $oldSameTimeIdsStr = implode(',', $oldSameTimeIdsArr);
  2310. if (!empty($oldSameTimeIdsArr)) {
  2311. OrderClass::updateByIds($oldSameTimeIdsArr, ['sameTimeIds' => $oldSameTimeIdsStr]);
  2312. }
  2313. }
  2314. $transaction->commit();
  2315. util::complete('修改成功');
  2316. } catch (\Exception $e) {
  2317. $transaction->rollBack();
  2318. util::fail('修改失败');
  2319. }
  2320. }
  2321. //应收款统计 ssh 20240528
  2322. public function actionAccountList()
  2323. {
  2324. $get = Yii::$app->request->get();
  2325. $mainId = $this->mainId;
  2326. $export = $get['export'] ?? 0;
  2327. $debt = isset($get['debt']) && is_numeric($get['debt']) ? $get['debt'] : -1;
  2328. $searchTime = isset($get['searchTime']) && !empty($get['searchTime']) ? $get['searchTime'] : 'today';
  2329. $startTime = $get['startTime'] ?? '';
  2330. $endTime = $get['endTime'] ?? '';
  2331. $period = dateUtil::formatTime($searchTime, $startTime, $endTime, true);
  2332. $start = $period['startTime'];
  2333. $end = $period['endTime'];
  2334. $customList = CustomClass::getAllByCondition(['ownMainId' => $this->mainId], null, 'id,name', 'id');
  2335. $currentStartDate = date('Y-m-d', strtotime($start));
  2336. $currentEndDate = date('Y-m-d', strtotime($end));
  2337. $currentStartTime = $currentStartDate . ' 00:00:00';
  2338. $currentEndTime = $currentEndDate . ' 23:59:59';
  2339. $where = ['mainId' => $mainId];
  2340. if ($debt > -1) {
  2341. $where['debt'] = $debt;
  2342. }
  2343. $where['payTime'] = ['between', [$currentStartTime, $currentEndTime]];
  2344. $orderList = OrderClass::getAllByCondition($where, null, '*');
  2345. $list = [];
  2346. $totalAmount = 0;
  2347. if (!empty($orderList)) {
  2348. foreach ($orderList as $orderInfo) {
  2349. $actPrice = $orderInfo['actPrice'] ?? 0;
  2350. $customId = $orderInfo['customId'] ?? 0;
  2351. $status = $orderInfo['status'] ?? 0;
  2352. $book = $orderInfo['book'] ?? 0;
  2353. if ($status == 1 || $status == 5) {
  2354. continue;
  2355. }
  2356. if ($book == 1 && $status == 2) {
  2357. continue;
  2358. }
  2359. if (isset($list[$customId])) {
  2360. $list[$customId]['amount'] = bcadd($list[$customId]['amount'], $actPrice, 2);
  2361. $list[$customId]['num'] = bcadd($list[$customId]['num'], 1);
  2362. } else {
  2363. $name = $customList[$customId] && $customList[$customId]['name'] ? $customList[$customId]['name'] : '未命名';
  2364. $list[$customId] = ['id' => $customId, 'name' => $name, 'amount' => $actPrice, 'num' => 1];
  2365. }
  2366. $totalAmount = bcadd($totalAmount, $actPrice, 2);
  2367. }
  2368. $list = array_values($list);
  2369. }
  2370. if ($export == 1) {
  2371. if (empty($list)) {
  2372. util::fail('没有数据需要导出');
  2373. }
  2374. ini_set('memory_limit', '2045M');
  2375. set_time_limit(0);
  2376. OrderClass::exportAccountList($list, $mainId);
  2377. util::stop();
  2378. }
  2379. util::success(['list' => $list, 'totalAmount' => $totalAmount]);
  2380. }
  2381. //应收款统计 ssh 20240528
  2382. public function actionPastList()
  2383. {
  2384. $get = Yii::$app->request->get();
  2385. $export = $get['export'] ?? 0;
  2386. $searchTime = isset($get['searchTime']) && !empty($get['searchTime']) ? $get['searchTime'] : 'today';
  2387. $startTime = $get['startTime'] ?? '';
  2388. $endTime = $get['endTime'] ?? '';
  2389. $period = dateUtil::formatTime($searchTime, $startTime, $endTime, true);
  2390. $end = $period['endTime'];
  2391. $customList = CustomClass::getAllByCondition(['ownMainId' => $this->mainId], null, 'id,name,mobile', 'id');
  2392. $currentDate = date('Y-m-d 00:00:00', bcadd(strtotime($end), 86400));
  2393. $totalAmount = 0;
  2394. if (!empty($customList)) {
  2395. foreach ($customList as $key => $custom) {
  2396. $customId = $custom['id'] ?? 0;
  2397. $change = CustomDebtChangeClass::getByCondition(['customId' => $customId, 'addTime<' => $currentDate], true, 'addTime DESC');
  2398. $amount = $change->balance ?? 0;
  2399. $totalAmount = bcadd($totalAmount, $amount, 2);
  2400. $customList[$key]['currentDebAmount'] = $amount;
  2401. }
  2402. $customList = array_values($customList);
  2403. }
  2404. if ($export == 1) {
  2405. $mainId = $this->mainId;
  2406. if (empty($customList)) {
  2407. util::fail('没有数据需要导出');
  2408. }
  2409. ini_set('memory_limit', '2045M');
  2410. set_time_limit(0);
  2411. OrderClass::exportPastList($customList, $mainId);
  2412. util::stop();
  2413. }
  2414. util::success(['list' => $customList, 'totalAmount' => $totalAmount]);
  2415. }
  2416. //客户业绩,有多个地方,需要同步,搜索关键词 customYj ssh 20240628
  2417. public function actionYj()
  2418. {
  2419. $get = Yii::$app->request->get();
  2420. $mainId = $this->mainId;
  2421. $export = $get['export'] ?? 0;
  2422. $debt = isset($get['debt']) && is_numeric($get['debt']) ? $get['debt'] : -1;
  2423. $searchTime = isset($get['searchTime']) && !empty($get['searchTime']) ? $get['searchTime'] : 'today';
  2424. $startTime = $get['startTime'] ?? '';
  2425. $endTime = $get['endTime'] ?? '';
  2426. $period = dateUtil::formatTime($searchTime, $startTime, $endTime, true);
  2427. $start = $period['startTime'];
  2428. $end = $period['endTime'];
  2429. $customList = CustomClass::getAllByCondition(['ownMainId' => $mainId], null, '*', 'id');
  2430. $currentStartDate = date('Y-m-d', strtotime($start));
  2431. $currentEndDate = date('Y-m-d', strtotime($end));
  2432. $currentStartTime = $currentStartDate . ' 00:00:00';
  2433. $currentEndTime = $currentEndDate . ' 23:59:59';
  2434. $where = ['mainId' => $mainId];
  2435. if ($debt > -1) {
  2436. $where['debt'] = $debt;
  2437. }
  2438. $where['payTime'] = ['between', [$currentStartTime, $currentEndTime]];
  2439. $orderList = OrderClass::getAllByCondition($where, null, '*');
  2440. $list = [];
  2441. $totalActPrice = 0;
  2442. $totalOrderPrice = 0;
  2443. $totalCarton = 0;
  2444. $totalCartonNum = 0;
  2445. $totalPack = 0;
  2446. $totalFreight = 0;
  2447. $totalTkPrice = 0;
  2448. //增加项
  2449. $totalOnlyTkPrice = 0;
  2450. $totalNum = 0;
  2451. if (!empty($orderList)) {
  2452. foreach ($orderList as $orderInfo) {
  2453. $actPrice = $orderInfo['actPrice'] ?? 0;
  2454. $orderPrice = $orderInfo['orderPrice'] ?? 0;
  2455. $customId = $orderInfo['customId'] ?? 0;
  2456. $status = $orderInfo['status'] ?? 0;
  2457. $book = $orderInfo['book'] ?? 0;
  2458. $orderSn = $orderInfo['orderSn'] ?? '';
  2459. $tkPrice = $orderInfo['tkPrice'] ?? 0;
  2460. if ($status == 1 || $status == 5) {
  2461. continue;
  2462. }
  2463. if ($book == 1 && $status == 2) {
  2464. continue;
  2465. }
  2466. $carton = 0;
  2467. $cartonNum = 0;
  2468. $pack = 0;
  2469. $freight = 0;
  2470. $orderItemList = OrderItemClass::getAllByCondition(['orderSn' => $orderSn], null, '*');
  2471. if ($actPrice > 0) {
  2472. if (!empty($orderItemList)) {
  2473. foreach ($orderItemList as $orderItem) {
  2474. $num = $orderItem['xhNum'] ?? 0;
  2475. $unitPrice = $orderItem['xhUnitPrice'] ?? 0;
  2476. $refundNum = $orderItem['refundNum'] ?? 0;
  2477. $classId = $orderItem['classId'] ?? 0;
  2478. if (getenv('YII_ENV') == 'production') {
  2479. //小向算打包纸箱费用
  2480. if ($mainId == 23390) {
  2481. $remainNum = bcsub($num, $refundNum);
  2482. $amount = bcmul($remainNum, $unitPrice, 2);
  2483. if ($classId == 72106) {
  2484. $carton = bcadd($carton, $amount, 2);
  2485. $cartonNum = bcadd($cartonNum, $remainNum);
  2486. }
  2487. if ($classId == 72108) {
  2488. $pack = bcadd($pack, $amount, 2);
  2489. }
  2490. if ($classId == 73118) {
  2491. $freight = bcadd($freight, $amount, 2);
  2492. }
  2493. }
  2494. //花大苪
  2495. if ($mainId == 8164) {
  2496. $remainNum = bcsub($num, $refundNum);
  2497. $amount = bcmul($remainNum, $unitPrice, 2);
  2498. if ($classId == 90497) {
  2499. $carton = bcadd($carton, $amount, 2);
  2500. $cartonNum = bcadd($cartonNum, $remainNum);
  2501. }
  2502. if ($classId == 90501) {
  2503. $freight = bcadd($freight, $amount, 2);
  2504. }
  2505. }
  2506. //石头花艺
  2507. if ($mainId == 50) {
  2508. $remainNum = bcsub($num, $refundNum);
  2509. $amount = bcmul($remainNum, $unitPrice, 2);
  2510. if ($classId == 71495) {
  2511. $carton = bcadd($carton, $amount, 2);
  2512. $cartonNum = bcadd($cartonNum, $remainNum);
  2513. }
  2514. if ($classId == 91009) {
  2515. $freight = bcadd($freight, $amount, 2);
  2516. }
  2517. }
  2518. }
  2519. }
  2520. }
  2521. }
  2522. //增加项
  2523. if ($tkPrice > 0) {
  2524. $refundList = RefundOrderClass::getAllByCondition(['relateOrderSn' => $orderSn], null, '*', null, true);
  2525. if (!empty($refundList)) {
  2526. foreach ($refundList as $refundInfo) {
  2527. if ($refundInfo->status == 1) {
  2528. if ($refundInfo->refundType == 2) {
  2529. $refundPrice = $refundInfo->refundPrice ?? 0;
  2530. $totalOnlyTkPrice = bcadd($totalOnlyTkPrice, $refundPrice, 2);
  2531. }
  2532. }
  2533. }
  2534. }
  2535. }
  2536. $totalCarton = bcadd($totalCarton, $carton, 2);
  2537. $totalCartonNum = bcadd($totalCartonNum, $cartonNum);
  2538. $totalPack = bcadd($totalPack, $pack, 2);
  2539. $totalFreight = bcadd($totalFreight, $freight, 2);
  2540. $totalTkPrice = bcadd($totalTkPrice, $tkPrice, 2);
  2541. $totalActPrice = bcadd($totalActPrice, $actPrice, 2);
  2542. $totalOrderPrice = bcadd($totalOrderPrice, $orderPrice, 2);
  2543. $totalNum++;
  2544. if (isset($list[$customId])) {
  2545. $list[$customId]['actPrice'] = bcadd($list[$customId]['actPrice'], $actPrice, 2);
  2546. $list[$customId]['orderPrice'] = bcadd($list[$customId]['orderPrice'], $orderPrice, 2);
  2547. $list[$customId]['num'] = bcadd($list[$customId]['num'], 1);
  2548. $list[$customId]['carton'] = bcadd($list[$customId]['carton'], $carton, 2);
  2549. $list[$customId]['cartonNum'] = bcadd($list[$customId]['cartonNum'], $cartonNum);
  2550. $list[$customId]['pack'] = bcadd($list[$customId]['pack'], $pack, 2);
  2551. $list[$customId]['freight'] = bcadd($list[$customId]['freight'], $freight, 2);
  2552. $list[$customId]['tkPrice'] = bcadd($list[$customId]['tkPrice'], $tkPrice, 2);
  2553. } else {
  2554. $name = $customList[$customId] && $customList[$customId]['name'] ? $customList[$customId]['name'] : '未命名';
  2555. $mobile = $customList[$customId] && $customList[$customId]['mobile'] ? $customList[$customId]['mobile'] : '0';
  2556. $list[$customId] = [
  2557. 'id' => $customId,
  2558. 'name' => $name,
  2559. 'mobile' => $mobile,
  2560. 'orderPrice' => $orderPrice,
  2561. 'actPrice' => $actPrice,
  2562. 'num' => 1,
  2563. 'carton' => $carton,
  2564. 'cartonNum' => $cartonNum,
  2565. 'pack' => $pack,
  2566. 'freight' => $freight,
  2567. 'tkPrice' => $tkPrice,
  2568. ];
  2569. }
  2570. }
  2571. foreach ($customList as $key => $custom) {
  2572. $customId = $custom['id'] ?? 0;
  2573. if (isset($list[$customId]) == false) {
  2574. $list[$customId] = [
  2575. 'id' => $customId,
  2576. 'name' => $custom['name'],
  2577. 'mobile' => $custom['mobile'],
  2578. 'actPrice' => 0,
  2579. 'num' => 0,
  2580. 'carton' => 0,
  2581. 'pack' => 0,
  2582. 'freight' => 0,
  2583. 'tkPrice' => 0,
  2584. 'orderPrice' => 0,
  2585. ];
  2586. }
  2587. }
  2588. $list = array_values($list);
  2589. }
  2590. if ($export == 1) {
  2591. if (empty($list)) {
  2592. util::fail('没有数据需要导出');
  2593. }
  2594. ini_set('memory_limit', '2045M');
  2595. set_time_limit(0);
  2596. OrderClass::exportYj($list, $mainId);
  2597. util::stop();
  2598. }
  2599. util::success([
  2600. 'list' => $list,
  2601. 'totalActPrice' => $totalActPrice,
  2602. 'totalOrderPrice' => $totalOrderPrice,
  2603. 'totalCarton' => $totalCarton,
  2604. 'totalCartonNum' => $totalCartonNum,
  2605. 'totalNum' => $totalNum,
  2606. 'totalPack' => $totalPack,
  2607. 'totalFreight' => $totalFreight,
  2608. 'totalTkPrice' => $totalTkPrice,
  2609. //增加项
  2610. 'totalOnlyTkPrice' => $totalOnlyTkPrice,
  2611. ]);
  2612. }
  2613. //修改配送人 ssh 20240824
  2614. public function actionChangeSendStaff()
  2615. {
  2616. $staff = $this->shopAdmin;
  2617. if (isset($staff->finance) == false || $staff->finance == 0) {
  2618. util::fail('请有财务权限的人修改');
  2619. }
  2620. $get = Yii::$app->request->get();
  2621. $staffId = $get['staffId'] ?? 0;
  2622. $orderId = $get['orderId'] ?? 0;
  2623. $order = OrderClass::getById($orderId, true);
  2624. if (empty($order)) {
  2625. util::fail('没有找到订单');
  2626. }
  2627. if ($order->mainId != $this->mainId) {
  2628. util::fail('不是你的');
  2629. }
  2630. $staff = ShopAdminClass::getById($staffId, true);
  2631. if (empty($staff)) {
  2632. util::fail('没有找到员工');
  2633. }
  2634. if ($staff->mainId != $this->mainId) {
  2635. util::fail('不是你的员工');
  2636. }
  2637. $staffName = $staff->name ?? '';
  2638. $order->sendStaffId = $staffId;
  2639. $order->sendStaffName = $staffName;
  2640. $order->save();
  2641. util::complete('修改成功');
  2642. }
  2643. //导入开单 ssh 20241126
  2644. public function actionImportCreate()
  2645. {
  2646. ini_set('memory_limit', '2045M');
  2647. set_time_limit(0);
  2648. $connection = Yii::$app->db;
  2649. $transaction = $connection->beginTransaction();
  2650. try {
  2651. $get = Yii::$app->request->get();
  2652. $customId = $get['id'] ?? '';
  2653. $customRes = CustomClass::getById($customId, true);
  2654. if (empty($customRes)) {
  2655. util::fail('没有找到客户');
  2656. }
  2657. if ($customRes->ownMainId != $this->mainId) {
  2658. util::fail('不是你的客户');
  2659. }
  2660. if (isset($customRes->mainId) && !empty($customRes->mainId) && $customRes->mainId == $customRes->ownMainId) {
  2661. util::fail('不能给自己开单');
  2662. }
  2663. $file = $_FILES['file'];
  2664. if (!is_uploaded_file($file['tmp_name'])) {
  2665. util::fail('please upload img');
  2666. }
  2667. $mainId = $this->mainId;
  2668. $sjId = $this->sjId;
  2669. $shopId = $this->shopId;
  2670. $month = date("Ym");
  2671. $date = date("d");
  2672. $path = dirUtil::getImgUploadDir() . "/{$mainId}/kd/{$shopId}/{$month}/{$date}/";
  2673. if (!file_exists($path)) {
  2674. //检查是否有该文件夹,如果没有就创建,并给予最高权限
  2675. mkdir($path, 0700, true);
  2676. }
  2677. $preFileName = stringUtil::uniqueFileName();
  2678. $newFile = $preFileName . ".xls";
  2679. $fullPathFile = $path . $newFile;
  2680. if (move_uploaded_file($file['tmp_name'], $fullPathFile)) {
  2681. $arr = [];
  2682. $phpExcelFile = Yii::getAlias("@vendor/phpoffice/phpexcel/");
  2683. require_once($phpExcelFile . 'Classes/PHPExcel/IOFactory.php');
  2684. $spreadsheet = \PHPExcel_IOFactory::load($fullPathFile);
  2685. // 获取活动工作表
  2686. $worksheet = $spreadsheet->getActiveSheet();
  2687. // 遍历每一行
  2688. foreach ($worksheet->getRowIterator() as $key => $row) {
  2689. $cellIterator = $row->getCellIterator();
  2690. // 这里设置为迭代所有单元格,包括空单元格
  2691. $cellIterator->setIterateOnlyExistingCells(FALSE);
  2692. // 遍历每列
  2693. $rowData = [];
  2694. foreach ($cellIterator as $cell) {
  2695. $option = $cell->getValue();
  2696. $rowData[] = trim($option);
  2697. }
  2698. $arr[] = $rowData;
  2699. }
  2700. array_shift($arr);
  2701. $productIds = [];
  2702. foreach ($arr as $k => $v) {
  2703. $productId = $v[0] ?? 0;
  2704. $productId = trim($productId);
  2705. if (is_numeric($productId) && $productId > 0) {
  2706. $productIds[] = $productId;
  2707. }
  2708. }
  2709. if (empty($productIds)) {
  2710. util::fail('没有识别出花材');
  2711. }
  2712. $productInfo = ProductClass::getByIds($productIds, null, 'id');
  2713. if (empty($productInfo)) {
  2714. util::fail('没有找到有效花材');
  2715. }
  2716. $mat = [];
  2717. foreach ($arr as $k => $v) {
  2718. $productId = $v[0] ?? 0;
  2719. $productId = trim($productId);
  2720. $num = $v[2] ?? 0;
  2721. $num = trim($num);
  2722. $unitPrice = $v[3] ?? 0;
  2723. $unitPrice = trim($unitPrice);
  2724. $remark = $v['5'] ?? '';
  2725. $remark = trim($remark);
  2726. if (is_numeric($productId) && $productId > 0 && $num > 0 && $unitPrice > 0) {
  2727. $product = $productInfo[$productId] ?? [];
  2728. $ptItemId = $product['itemId'] ?? 0;
  2729. $mat[] = [
  2730. 'productId' => $productId,
  2731. 'bigNum' => $num,
  2732. 'itemId' => $ptItemId,
  2733. 'smallNum' => 0,
  2734. 'price' => $unitPrice,
  2735. 'remark' => $remark,
  2736. ];
  2737. }
  2738. }
  2739. $modifyPrice = 0;
  2740. foreach ($mat as $ma) {
  2741. $cNum = $ma['bigNum'] ?? 0;
  2742. $cPrice = $ma['price'] ?? 0;
  2743. $cTotal = bcmul($cNum, $cPrice, 2);
  2744. $modifyPrice = bcadd($modifyPrice, $cTotal, 2);
  2745. }
  2746. $customName = $customRes->name ?? '';
  2747. $customMobile = $customRes->mobile ?? '';
  2748. $customPy = $customRes->py ?? '';
  2749. $ghsId = $customRes->ghsId ?? 0;
  2750. $hasPay = 2;
  2751. $custom = CustomClass::getCustom($customId);
  2752. $post = [];
  2753. $post['modifyPrice'] = $modifyPrice;
  2754. $post['shopId'] = $shopId;
  2755. $post['sendType'] = 0;
  2756. $post['transType'] = 0;
  2757. $post['sendSide'] = 0;
  2758. $post['sendCost'] = 0;
  2759. $post['packCost'] = 0;
  2760. $post['customId'] = $customId;
  2761. $post['customName'] = $customName;
  2762. $post['payWay'] = 0;
  2763. $post['needPrint'] = 2;
  2764. $post['hasPay'] = 2;
  2765. $post['product'] = $mat;
  2766. $post['deadline'] = date("Y-m-d H:i:s", time() + 86400);
  2767. $post['debt'] = 1;
  2768. $post['mainId'] = $mainId;
  2769. $post['fromType'] = 1;
  2770. $post['expressId'] = 0;
  2771. $post['sjId'] = $sjId;
  2772. $staff = $this->shopAdmin;
  2773. $staffId = $staff->id ?? 0;
  2774. $staffName = $staff->name ?? '';
  2775. $post['shopAdminId'] = $staffId;
  2776. $post['shopAdminName'] = $staffName;
  2777. $post['getStaffId'] = $staffId;
  2778. $post['getStaffName'] = $staffName;
  2779. $post['customMobile'] = $customMobile;
  2780. $post['customNamePy'] = $customPy;
  2781. $post['customAvatar'] = '';
  2782. $post['newVersion'] = 1;
  2783. $post['book'] = 1;
  2784. $post['wlName'] = '';
  2785. $post['dealPrice'] = 1;
  2786. $post['ghsId'] = $ghsId;
  2787. $shop = $this->shop;
  2788. $bookSn = $shop->bookSn ?? 0;
  2789. $post['bookSn'] = $bookSn;
  2790. //多处有用到此方法,需要同步修改,搜索关键词create_new_order
  2791. OrderService::createNewOrder($post, $custom, $hasPay);
  2792. $transaction->commit();
  2793. util::complete('提交成功');
  2794. } else {
  2795. util::fail('上传失败了,出错了哦');
  2796. }
  2797. } catch (\Exception $e) {
  2798. $transaction->rollBack();
  2799. Yii::info("导入失败了," . $e->getMessage());
  2800. noticeUtil::push('导入失败,失败原因:' . $e->getMessage(), '15280215347');
  2801. $msg = $e->getMessage();
  2802. util::fail('导入失败:' . $msg);
  2803. }
  2804. }
  2805. //打印发物流用和标签 ssh 20250312
  2806. public function actionPrintWlLabel()
  2807. {
  2808. $get = Yii::$app->request->get();
  2809. $id = $get['id'] ?? 0;
  2810. $order = OrderClass::getById($id, true);
  2811. if (empty($order)) {
  2812. util::fail('没有找到订单');
  2813. }
  2814. $ext = $this->shopExt;
  2815. $shop = $this->shop;
  2816. OrderClass::printLogisticsLabel($order, $shop, $ext);
  2817. util::complete('打印成功');
  2818. }
  2819. //修改地址 ssh 20251123
  2820. public function actionModifyAddress()
  2821. {
  2822. $post = Yii::$app->request->post();
  2823. $id = $post['id'] ?? 0;
  2824. $order = OrderClass::getById($id, true);
  2825. if (empty($order)) {
  2826. util::fail('没有找到订单');
  2827. }
  2828. if ($order->mainId != $this->mainId) {
  2829. util::fail('不是你的订单,不能修改地址');
  2830. }
  2831. if ($order->status == 3) {
  2832. util::fail('订单已经在配送了,不能修改地址');
  2833. }
  2834. if ($order->status == 4) {
  2835. util::fail('订单已完成,不能修改地址');
  2836. }
  2837. $province = $post['province'] ?? '';
  2838. $city = $post['city'] ?? '';
  2839. $dist = $post['dist'] ?? '';
  2840. $address = $post['address'] ?? '';
  2841. $floor = $post['floor'] ?? '';
  2842. $fullAddress = $city . $dist . $address . $floor;
  2843. $lat = $post['lat'] ?? '';
  2844. $long = $post['long'] ?? '';
  2845. $showAddress = $post['showAddress'] ?? '';
  2846. $order->province = $province;
  2847. $order->city = $city;
  2848. $order->dist = $dist;
  2849. $order->address = $address;
  2850. $order->floor = $floor;
  2851. $order->showAddress = $showAddress;
  2852. $order->fullAddress = $fullAddress;
  2853. $order->lat = $lat;
  2854. $order->long = $long;
  2855. $order->save();
  2856. $syncDefaultAddress = $post['syncDefaultAddress'] ?? 0;
  2857. if ($syncDefaultAddress == 1) {
  2858. $customId = $order->customId ?? 0;
  2859. $custom = CustomClass::getById($customId, true);
  2860. if (!empty($custom)) {
  2861. $custom->province = $province;
  2862. $custom->city = $city;
  2863. $custom->dist = $dist;
  2864. $custom->address = $address;
  2865. $custom->floor = $floor;
  2866. $custom->showAddress = $showAddress;
  2867. $custom->fullAddress = $fullAddress;
  2868. $custom->lat = $lat;
  2869. $custom->long = $long;
  2870. $custom->save();
  2871. }
  2872. }
  2873. util::complete('修改成功');
  2874. }
  2875. }