酒店预订平台
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

OrderMainService.php 8.9 KiB

hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267
  1. <?php
  2. namespace app\admin\service;
  3. use app\admin\command\Util;
  4. use app\admin\model\OrderHotel;
  5. use app\admin\model\OrderItem;
  6. use app\admin\model\OrderMain;
  7. use app\admin\model\Purchase;
  8. use app\admin\model\PurchasePrice;
  9. use think\Exception;
  10. use think\Url;
  11. /**
  12. * Created by PhpStorm.
  13. * User: nizongfeng
  14. * Date: 2021/10/24
  15. * Time: 15:55
  16. */
  17. class OrderMainService
  18. {
  19. /**
  20. * 保存主订单
  21. * @param $param
  22. * @return array
  23. */
  24. public function saveOrder($param)
  25. {
  26. /**
  27. * 1.添加主订单
  28. */
  29. $orderMainDao = new OrderMainDao();
  30. $addOrderMain = $orderMainDao->save($param);
  31. if (!$addOrderMain["flag"]) {
  32. return $addOrderMain;
  33. }
  34. $orderId = $addOrderMain['data'];
  35. //所有子订单设置为删除
  36. $orderHotelDao = new OrderHotelDao();
  37. $orderHotelDao->delete($orderId);
  38. $orderItemDao = new OrderItemDao();
  39. $orderItemDao->delete($orderId);
  40. $purchasePriceDao = new PurchasePriceDao();
  41. $purchasePriceDao->delete($orderId);
  42. //循环子订单
  43. foreach ($param['subOrderList'] as $subOrderParam) {
  44. /**
  45. * 2.添加子订单 有则激活更新、无则添加
  46. */
  47. if ($subOrderParam['prod_type'] == 'hotel') {
  48. $subOrderDao = $orderHotelDao;
  49. } else {
  50. $subOrderDao = $orderItemDao;
  51. }
  52. $addSubOrder = $subOrderDao->modify($subOrderParam, $orderId);
  53. if (!$addSubOrder['flag']) {
  54. return $addSubOrder;
  55. }
  56. $subOrderId = $addSubOrder['data'];
  57. $subOrderInfo = $subOrderDao->getInfoById($subOrderId);
  58. if (!$subOrderInfo['flag']) {
  59. return $subOrderInfo;
  60. }
  61. /**
  62. * 2.1添加子订单下的采购单 有则更新激活、无则添加
  63. */
  64. $purchaseDao = new PurchaseDao();
  65. if ($subOrderParam['prod_type'] == 'hotel') {
  66. $addPurchase = $purchaseDao->saveHotelPurchase($subOrderParam, $subOrderInfo['data']);
  67. } else {
  68. $addPurchase = $purchaseDao->saveItemPurchase($subOrderParam, $subOrderInfo['data']);
  69. }
  70. if (!$addPurchase['flag']) {
  71. return $addPurchase;
  72. }
  73. $purchaseId = $addPurchase['data'];
  74. /**
  75. * 2.1.1添加采购单的每日价格 先删除、后添加激活
  76. */
  77. $purchasePriceDao = new PurchasePriceDao();
  78. $addPurchasePrice = $purchasePriceDao->saveList($subOrderParam['purchasePriceList'], $orderId, $subOrderParam['prod_type'], $subOrderId, $purchaseId);
  79. if (!$addPurchasePrice['flag']) {
  80. return $addPurchasePrice;
  81. }
  82. /**
  83. * 2.1.2 计算更新 采购单总金额、成本、产品数量
  84. */
  85. $setPurchaseRe = $purchaseDao->setPurchaseAmount($purchaseId);
  86. if (!$setPurchaseRe['flag']) {
  87. return $setPurchaseRe;
  88. }
  89. /**
  90. * 2.2 计算更新 子订单成本、金额、产品数量
  91. */
  92. $setSubOrderRe = $subOrderDao->setSubOrderAmount($subOrderId);
  93. if (!$setSubOrderRe['flag']) {
  94. return $setSubOrderRe;
  95. }
  96. }
  97. /**
  98. * 3 计算更新 主订单成本、金额、产品数量
  99. */
  100. $setOrderMainRe = $orderMainDao->setOrderAmount($orderId);
  101. if (!$setOrderMainRe['flag']) {
  102. return $setOrderMainRe;
  103. }
  104. return Util::returnArrSu("",$orderId);
  105. }
  106. /**
  107. * 保存子订单
  108. * @param $subOrderParam
  109. * @return array
  110. */
  111. public function subOrderSave($subOrderParam)
  112. {
  113. $orderId = $subOrderParam['order_id'];
  114. $orderMainDao = new OrderMainDao();
  115. /**
  116. * 2.添加子订单
  117. */
  118. if ($subOrderParam['prod_type'] == 'hotel') {
  119. $subOrderDao = new OrderHotelDao();
  120. } else {
  121. $subOrderDao = new OrderItemDao();
  122. }
  123. $addSubOrder = $subOrderDao->modify($subOrderParam, $orderId);
  124. if (!$addSubOrder['flag']) {
  125. return $addSubOrder;
  126. }
  127. $subOrderId = $addSubOrder['data'];
  128. $subOrderInfo = $subOrderDao->getInfoById($subOrderId);
  129. /**
  130. * 2.1添加子订单下的采购单
  131. */
  132. $purchaseDao = new PurchaseDao();
  133. if ($subOrderParam['prod_type'] == 'hotel') {
  134. $addPurchase = $purchaseDao->saveHotelPurchase($subOrderParam, $subOrderInfo);
  135. } else {
  136. $addPurchase = $purchaseDao->saveItemPurchase($subOrderParam, $subOrderInfo);
  137. }
  138. if (!$addPurchase['flag']) {
  139. return $addPurchase;
  140. }
  141. $purchaseId = $addPurchase['id'];
  142. /**
  143. * 2.1.1添加采购单的每日价格
  144. */
  145. $purchasePriceDao = new PurchasePriceDao();
  146. $addPurchasePrice = $purchasePriceDao->saveList($subOrderParam['purchasePriceList'], $orderId, $subOrderParam['prod_type'], $subOrderId, $purchaseId);
  147. if (!$addPurchasePrice['flag']) {
  148. return $addPurchasePrice;
  149. }
  150. /**
  151. * 2.1.2 计算更新 采购单总金额、成本、产品数量
  152. */
  153. $setPurchaseRe = $purchaseDao->setPurchaseAmount($purchaseId);
  154. if (!$setPurchaseRe['flag']) {
  155. return $setPurchaseRe;
  156. }
  157. /**
  158. * 2.2 计算更新 子订单成本、金额、产品数量
  159. */
  160. $setSubOrderRe = $subOrderDao->setSubOrderAmount($subOrderId);
  161. if (!$setSubOrderRe['flag']) {
  162. return $setSubOrderRe;
  163. }
  164. /**
  165. * 3 计算更新 主订单成本、金额、产品数量
  166. */
  167. $setOrderMainRe = $orderMainDao->setOrderAmount($orderId);
  168. if (!$setOrderMainRe['flag']) {
  169. return $setOrderMainRe;
  170. }
  171. return Util::returnArrSu("",$subOrderId);
  172. }
  173. /**
  174. * 删除子订单
  175. * @param $param
  176. * @return array
  177. */
  178. public function delSubOrder($param){
  179. try {
  180. if ($param['prod_type'] == 'hotel') {
  181. $subOrderDao = new OrderHotelDao();
  182. } else {
  183. $subOrderDao = new OrderItemDao();
  184. }
  185. $subOrderRe = $subOrderDao->getInfoById($param['id']);
  186. if (!$subOrderRe['flag']) {
  187. return $subOrderRe;
  188. }
  189. $subOrderDao->delById($param['id']);
  190. //删除采购单
  191. $purchaseDao = new PurchaseDao();
  192. $purchaseDao->deleteBySubOrderId($param['id']);
  193. //删除每日采购单价格
  194. $purchasePriceDao = new PurchasePriceDao();
  195. $purchasePriceDao->deleteBySubOrderId($param['id']);
  196. //重新计算订单总金额
  197. $orderMainDao = new OrderMainDao();
  198. $orderMainDao->setOrderAmount($subOrderRe['data']['order_id']);
  199. return Util::returnArrSu();
  200. }catch (Exception $e){
  201. return Util::returnArrEr("删除子订单失败:".$e->getMessage());
  202. }
  203. }
  204. /**
  205. * 获取订单详情
  206. * @param $id
  207. * @return array
  208. */
  209. public function getOrderInfo($id){
  210. $orderMainDao = new OrderMainDao();
  211. $orderMainRe = $orderMainDao->getInfoById($id);
  212. if (!$orderMainRe['flag']) {
  213. return $orderMainRe;
  214. }
  215. $orderMain = $orderMainRe['data'];
  216. //获取采购单金额列表
  217. $purchasePriceDao = new PurchasePriceDao();
  218. $purchasePriceRe = $purchasePriceDao->getPurchasePriceListByOrderId($id);
  219. if (!$purchasePriceRe['flag']) {
  220. return $purchasePriceRe;
  221. }
  222. //获取采购单列表
  223. $purchaseDao = new PurchaseDao();
  224. $purchaseRe = $purchaseDao->getListByOrderId($id);
  225. if (!$purchaseRe['flag']) {
  226. return $purchaseRe;
  227. }
  228. //设置采购单展示数据
  229. $purchaseShow = $purchaseDao->setPurchaseShow($purchaseRe['data'],$purchasePriceRe['data']);
  230. if (!$purchaseShow['flag']) {
  231. return $purchaseShow;
  232. }
  233. //获取子订单列表
  234. $orderHotelDao = new OrderHotelDao();
  235. $orderHotelRe = $orderHotelDao->getListByOrderId($id);
  236. if (!$orderHotelRe['flag']) {
  237. return $orderHotelRe;
  238. }
  239. $orderItemDao = new OrderItemDao();
  240. $orderItemRe = $orderItemDao->getListByOrderId($id);
  241. if (!$orderItemRe['flag']) {
  242. return $orderItemRe;
  243. }
  244. //设置子订单列表
  245. $subOrderList = $orderMainDao->setSubOrderShow($purchaseShow['data'],$orderHotelRe['data'],$orderItemRe['data']);
  246. if (!$subOrderList['flag']) {
  247. return $subOrderList;
  248. }
  249. $orderMain["subOrderList"]=$subOrderList['data'];
  250. return Util::returnArrSu("",$orderMain);
  251. }
  252. }