diff --git a/app/admin/controller/product_source_link/ProductSourceLinkController.php b/app/admin/controller/product_source_link/ProductSourceLinkController.php new file mode 100644 index 00000000..e910267d --- /dev/null +++ b/app/admin/controller/product_source_link/ProductSourceLinkController.php @@ -0,0 +1,95 @@ +dataLists(new ProductSourceLinkLists()); + } + + + /** + * @notes 添加商品溯源管理 + * @return \think\response\Json + * @author admin + * @date 2025/03/12 10:03 + */ + public function add() + { + $params = (new ProductSourceLinkValidate())->post()->goCheck('add'); + $result = ProductSourceLinkLogic::add($params); + if (true === $result) { + return $this->success('添加成功', [], 1, 1); + } + return $this->fail(ProductSourceLinkLogic::getError()); + } + + + /** + * @notes 编辑商品溯源管理 + * @return \think\response\Json + * @author admin + * @date 2025/03/12 10:03 + */ + public function edit() + { + $params = (new ProductSourceLinkValidate())->post()->goCheck('edit'); + $result = ProductSourceLinkLogic::edit($params); + if (true === $result) { + return $this->success('编辑成功', [], 1, 1); + } + return $this->fail(ProductSourceLinkLogic::getError()); + } + + + /** + * @notes 删除商品溯源管理 + * @return \think\response\Json + * @author admin + * @date 2025/03/12 10:03 + */ + public function delete() + { + $params = (new ProductSourceLinkValidate())->post()->goCheck('delete'); + ProductSourceLinkLogic::delete($params); + return $this->success('删除成功', [], 1, 1); + } + + + /** + * @notes 获取商品溯源管理详情 + * @return \think\response\Json + * @author admin + * @date 2025/03/12 10:03 + */ + public function detail() + { + $params = (new ProductSourceLinkValidate())->goCheck('detail'); + $result = ProductSourceLinkLogic::detail($params); + return $this->data($result); + } + + +} \ No newline at end of file diff --git a/app/admin/controller/product_source_link_info/ProductSourceLinkInfoController.php b/app/admin/controller/product_source_link_info/ProductSourceLinkInfoController.php new file mode 100644 index 00000000..af8046e2 --- /dev/null +++ b/app/admin/controller/product_source_link_info/ProductSourceLinkInfoController.php @@ -0,0 +1,90 @@ +dataLists(new ProductSourceLinkInfoLists()); + } + + + /** + * @notes 添加商品溯源详细 + * @author admin + * @date 2025/03/12 10:08 + */ + public function add() + { + $params = (new ProductSourceLinkInfoValidate())->post()->goCheck('add'); + $result = ProductSourceLinkInfoLogic::add($params); + if ($result) { + return $this->success('添加成功', [], 1, 1); + } + return $this->fail(ProductSourceLinkInfoLogic::getError()); + } + + + /** + * @notes 编辑商品溯源详细 + * @author admin + * @date 2025/03/12 10:08 + */ + public function edit() + { + $params = (new ProductSourceLinkInfoValidate())->post()->goCheck('edit'); + $result = ProductSourceLinkInfoLogic::edit($params); + if (true === $result) { + return $this->success('编辑成功', [], 1, 1); + } + return $this->fail(ProductSourceLinkInfoLogic::getError()); + } + + + /** + * @notes 删除商品溯源详细 + * @author admin + * @date 2025/03/12 10:08 + */ + public function delete() + { + $params = (new ProductSourceLinkInfoValidate())->post()->goCheck('delete'); + ProductSourceLinkInfoLogic::delete($params); + return $this->success('删除成功', [], 1, 1); + } + + + /** + * @notes 获取商品溯源详细详情 + * @author admin + * @date 2025/03/12 10:08 + */ + public function detail() + { + $params = (new ProductSourceLinkInfoValidate())->goCheck('detail'); + $result = ProductSourceLinkInfoLogic::detail($params); + return $this->data($result); + } + + +} \ No newline at end of file diff --git a/app/admin/lists/beforehand_order/BeforehandOrderLists.php b/app/admin/lists/beforehand_order/BeforehandOrderLists.php index f5108021..0ce42cbf 100644 --- a/app/admin/lists/beforehand_order/BeforehandOrderLists.php +++ b/app/admin/lists/beforehand_order/BeforehandOrderLists.php @@ -96,6 +96,7 @@ class BeforehandOrderLists extends BaseAdminDataLists implements ListsSearchInte ->order(['id' => 'desc']) ->select()->each(function ($item)use($export) { $item['outbound'] = ''; + $item['outbound_time'] = ''; $item['order_type_name'] = ''; if ($item->admin_id) { $item->admin_name = Admin::where(['id' => $item->admin_id])->value('name'); @@ -132,6 +133,8 @@ class BeforehandOrderLists extends BaseAdminDataLists implements ListsSearchInte } if ($item['outbound_id'] > 0) { $item->outbound = '已出库|' . $item['outbound_id']; + $outboundTime = WarehouseOrder::where('id', $item['outbound_id'])->value('create_time'); + $item->outbound_time = date('Y-m-d H:i:s', $outboundTime); } if ($item['store_id'] > 0) { $item->system_store = SystemStore::where(['id' => $item['store_id']])->value('name'); diff --git a/app/admin/lists/inventory_transfer_order/InventoryTransferOrderLists.php b/app/admin/lists/inventory_transfer_order/InventoryTransferOrderLists.php index ce8b0e39..86115fe9 100644 --- a/app/admin/lists/inventory_transfer_order/InventoryTransferOrderLists.php +++ b/app/admin/lists/inventory_transfer_order/InventoryTransferOrderLists.php @@ -28,7 +28,7 @@ class InventoryTransferOrderLists extends BaseAdminDataLists implements ListsSea public function setSearch(): array { return [ - '=' => ['order_id', 'one_type', 'two_type', 'types'], + '=' => ['id', 'order_id', 'one_type', 'two_type', 'types'], ]; } diff --git a/app/admin/lists/product_source_link/ProductSourceLinkLists.php b/app/admin/lists/product_source_link/ProductSourceLinkLists.php new file mode 100644 index 00000000..20258263 --- /dev/null +++ b/app/admin/lists/product_source_link/ProductSourceLinkLists.php @@ -0,0 +1,71 @@ +searchWhere) + ->with(['product','warehouse','purchase']) + ->field(['id', 'purchase_uid', 'product_id','warehouse_id',]) + ->limit($this->limitOffset, $this->limitLength) + ->order(['id' => 'desc']) + ->select() + ->each(function ($item) { + $item->total_nums = ProductSourceLinkInfo::where('product_id', $item->product_id)->where('oid',$item->id)->where('types',1)->sum('nums'); + $item->warehouse_outbound_nums = ProductSourceLinkInfo::where('product_id', $item->product_id)->where('oid',$item->id)->where('types',2)->sum('nums'); + }) + ->toArray(); + } + + + /** + * @notes 获取商品溯源管理数量 + * @return int + * @author admin + * @date 2025/03/12 10:03 + */ + public function count(): int + { + return ProductSourceLink::where($this->searchWhere)->count(); + } + +} \ No newline at end of file diff --git a/app/admin/lists/product_source_link_info/ProductSourceLinkInfoLists.php b/app/admin/lists/product_source_link_info/ProductSourceLinkInfoLists.php new file mode 100644 index 00000000..346b64d2 --- /dev/null +++ b/app/admin/lists/product_source_link_info/ProductSourceLinkInfoLists.php @@ -0,0 +1,98 @@ + ['oid'] + ]; + } + + + /** + * @notes 获取商品溯源详细列表 + * @return array + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + * @author admin + * @date 2025/03/12 10:08 + */ + public function lists(): array + { + return ProductSourceLinkInfo::where($this->searchWhere) + ->with(['product']) + ->limit($this->limitOffset, $this->limitLength) + ->order(['id' => 'desc']) + ->select() + ->each(function ($item) { + $item['route'] = $this->getRoute($item); + $item['type_name'] = $item->getTypeName(); + }) + ->toArray(); + } + + + /** + * @notes 获取商品溯源详细数量 + * @return int + * @author admin + * @date 2025/03/12 10:08 + */ + public function count(): int + { + return ProductSourceLinkInfo::where($this->searchWhere)->count(); + } + + public function getRoute($item) + { + if ($item['types'] == ProductSourceLinkInfo::TypeIn) { + $path = '/procure/warehouse_product'; + $query = ['id' => $item['link_id']]; + } elseif (in_array($item['types'], [ProductSourceLinkInfo::TypeOut, ProductSourceLinkInfo::TypeStoreIn, ProductSourceLinkInfo::TypeStoreOut])) { + $path = '/sales_inventory/outbound_list'; + $query = ['id' => $item['link_id']]; + } elseif ($item['types'] == ProductSourceLinkInfo::TypeOrder) { + $path = '/order/store_order'; + $linkId = StoreOrderCartInfo::where('id', $item['link_id'])->value('oid'); + $query = ['id' => $linkId]; + } elseif ($item['types'] == ProductSourceLinkInfo::TypeOrderRefund) { + $path = '/order/store_order'; + $query = ['id' => $item['link_id']]; + } elseif (in_array($item['types'], [ProductSourceLinkInfo::TypeS2W, ProductSourceLinkInfo::TypeS2S, ProductSourceLinkInfo::TypeW2W])) { + $path = '/warehouse/inventory_transfer_order'; + $linkId = InventoryTransfer::where('id', $item['link_id'])->value('oid'); + $query = ['id' => $linkId]; + } + return [ + 'path' => $path ?? '', + 'query' => $query ?? [] + ]; + } + +} \ No newline at end of file diff --git a/app/admin/lists/store_order/StoreOrderLists.php b/app/admin/lists/store_order/StoreOrderLists.php index 83aedbb0..f5491b8b 100644 --- a/app/admin/lists/store_order/StoreOrderLists.php +++ b/app/admin/lists/store_order/StoreOrderLists.php @@ -32,7 +32,7 @@ class StoreOrderLists extends BaseAdminDataLists implements ListsSearchInterface public function setSearch(): array { return [ - '=' => ['store_id', 'pay_type', 'staff_id', 'shipping_type', 'delivery_id', 'paid', 'status', 'is_writeoff', 'is_merge', 'uid'], + '=' => ['id', 'store_id', 'pay_type', 'staff_id', 'shipping_type', 'delivery_id', 'paid', 'status', 'is_writeoff', 'is_merge', 'uid'], 'between_time' => 'create_time', '%like%' => ['order_id'], ]; diff --git a/app/admin/lists/store_product/StoreProductLists.php b/app/admin/lists/store_product/StoreProductLists.php index ae53e82c..b2c5095a 100644 --- a/app/admin/lists/store_product/StoreProductLists.php +++ b/app/admin/lists/store_product/StoreProductLists.php @@ -152,11 +152,13 @@ class StoreProductLists extends BaseAdminDataLists implements ListsSearchInterfa $item['status_msg'] = '下架|不常用|是否有替换'; } if ($order_type == 2) { - $price = StoreProductGroupPrice::where('group_id', 42)->where('product_id', $item['product_id'])->value('price'); - if ($price > 0) { - $item['price'] = $price; - $item['store_name'] = $item['store_name'] . '|活动价'; - } + // $price = StoreProductGroupPrice::where('group_id', 42)->where('product_id', $item['product_id'])->value('price'); + // if ($price > 0) { + // $item['price'] = $price; + // $item['store_name'] = $item['store_name'] . '|活动价'; + // } + $item['price'] = $item['cost']; + $item['store_name'] = $item['store_name'] . '|高级会员价'; }elseif($is_true == true && $userShip>0){ $item['price'] = $item['vip_price']; $item['store_name'] = $item['store_name'] . '|会员价'; diff --git a/app/admin/lists/warehouse_product/WarehouseProductLists.php b/app/admin/lists/warehouse_product/WarehouseProductLists.php index 295e4b34..f724caaf 100644 --- a/app/admin/lists/warehouse_product/WarehouseProductLists.php +++ b/app/admin/lists/warehouse_product/WarehouseProductLists.php @@ -37,7 +37,7 @@ class WarehouseProductLists extends BaseAdminDataLists implements ListsSearchInt public function setSearch(): array { return [ - '=' => ['warehouse_id', 'financial_pm', 'product_id','store_id','oid','supplier_id','is_pay','code'], + '=' => ['id', 'warehouse_id', 'financial_pm', 'product_id','store_id','oid','supplier_id','is_pay','code'], 'between_time' => 'create_time' ]; } diff --git a/app/admin/logic/beforehand_order_cart_info/BeforehandOrderCartInfoLogic.php b/app/admin/logic/beforehand_order_cart_info/BeforehandOrderCartInfoLogic.php index 83fece73..f2447f96 100644 --- a/app/admin/logic/beforehand_order_cart_info/BeforehandOrderCartInfoLogic.php +++ b/app/admin/logic/beforehand_order_cart_info/BeforehandOrderCartInfoLogic.php @@ -2,11 +2,14 @@ namespace app\admin\logic\beforehand_order_cart_info; +use app\admin\logic\product_source_link\ProductSourceLinkLogic; use app\admin\logic\purchase_product_offer\PurchaseProductOfferLogic; use app\admin\logic\warehouse_product\WarehouseProductLogic; use app\common\model\beforehand_order_cart_info\BeforehandOrderCartInfo; use app\common\logic\BaseLogic; use app\common\model\beforehand_order\BeforehandOrder; +use app\common\model\product_source_link\ProductSourceLink; +use app\common\model\product_source_link_info\ProductSourceLinkInfo; use app\common\model\purchase_product_offer\PurchaseProductOffer; use app\common\model\store_product\StoreProduct; use app\common\model\warehouse_order\WarehouseOrder; @@ -79,6 +82,7 @@ class BeforehandOrderCartInfoLogic extends BaseLogic $datas[$k]['bhoid'] = $bhoid; $datas[$k]['cart_num'] = $v['nums']; $datas[$k]['accept_num'] = $v['nums']; + $datas[$k]['purchase'] = $v['prices']??0; $datas[$k]['price'] = $v['purchase']; $datas[$k]['total_price'] = $v['total_price']; $datas[$k]['pay_price'] = $v['total_price']; @@ -290,6 +294,12 @@ class BeforehandOrderCartInfoLogic extends BaseLogic if (!$result) { throw new BusinessException('出库失败,预订单更新出错'); } + ProductSourceLink::add([ + 'purchase_product_offer' => $offer_list, + 'types' => ProductSourceLinkInfo::TypeIn, + 'buyer_id' => $res['buyer_id'], + 'warehouse_id' => $params['warehouse_id'], + ]); Db::commit(); return true; } catch (\Throwable $e) { @@ -389,7 +399,7 @@ class BeforehandOrderCartInfoLogic extends BaseLogic if ($purchaseProductOffer['is_storage'] == 1) { throw new BusinessException('商品已入库'); } - $beforehandOrder = BeforehandOrder::where('id', $params['bhoid'])->field('id,order_type,warehousing_id,is_warehousing')->find(); + $beforehandOrder = BeforehandOrder::where('id', $params['bhoid'])->field('id,buyer_id,order_type,warehousing_id,is_warehousing')->find(); $completed_amount = PurchaseProductOffer::where(['order_id' => $params['bhoid'], 'pay_type' => 1, 'is_storage' => 1])->sum('total_price'); $outstanding_amount = PurchaseProductOffer::where(['order_id' => $params['bhoid'], 'pay_type' => 2, 'is_storage' => 1])->sum('total_price'); @@ -435,6 +445,9 @@ class BeforehandOrderCartInfoLogic extends BaseLogic $data['purchase'] = $purchaseProductOffer['price']; $data['total_price'] = $purchaseProductOffer['total_price']; $data['financial_pm'] = 1; + $data['buyer_id'] = $beforehandOrder['buyer_id']; + $data['buyer_nums'] = $data['nums']; + $data['price'] = $data['purchase']; $data['manufacture'] = $purchaseProductOffer['manufacture'] > 0 ? date('Y-m-d H:i:s', $purchaseProductOffer['manufacture']) : ''; $data['expiration_date'] = $purchaseProductOffer['expiration_date'] > 0 ? date('Y-m-d H:i:s', $purchaseProductOffer['expiration_date']) : ''; if ($data['nums'] > 0) { @@ -459,9 +472,8 @@ class BeforehandOrderCartInfoLogic extends BaseLogic $product = StoreProduct::where('id', $purchaseProductOffer['product_id'])->withTrashed()->field('id,store_name,top_cate_id,two_cate_id,cate_id')->find(); if (!in_array($beforehandOrder['order_type'], [6, 9])) { - PurchaseProductOfferLogic::setProductGroupPrice($purchaseProductOffer, $product, $params['warehouse_id']); + PurchaseProductOfferLogic::setProductPrice($purchaseProductOffer, $product, $params['warehouse_id']); } - Db::commit(); return true; } catch (\Throwable $e) { diff --git a/app/admin/logic/inventory_transfer_order/InventoryTransferOrderLogic.php b/app/admin/logic/inventory_transfer_order/InventoryTransferOrderLogic.php index 88d2f75f..693f7eb4 100644 --- a/app/admin/logic/inventory_transfer_order/InventoryTransferOrderLogic.php +++ b/app/admin/logic/inventory_transfer_order/InventoryTransferOrderLogic.php @@ -3,9 +3,11 @@ namespace app\admin\logic\inventory_transfer_order; +use app\admin\logic\product_source_link\ProductSourceLinkLogic; use app\common\model\inventory_transfer_order\InventoryTransferOrder; use app\common\logic\BaseLogic; use app\common\model\inventory_transfer\InventoryTransfer; +use app\common\model\product_source_link_info\ProductSourceLinkInfo; use app\common\model\store_branch_product\StoreBranchProduct; use app\common\model\store_product\StoreProduct; use app\common\model\system_store\SystemStore; @@ -129,6 +131,10 @@ class InventoryTransferOrderLogic extends BaseLogic } SqlChannelLog('WarehouseProductStorege', $find['id'], $v['nums'], 1, Request()->url(),$admin_id); } + ProductSourceLinkLogic::transfer([ + 'oid' => $v['oid'], + 'product_id' => $v['product_id'], + ]); } Db::commit(); return true; diff --git a/app/admin/logic/product_source_link/ProductSourceLinkLogic.php b/app/admin/logic/product_source_link/ProductSourceLinkLogic.php new file mode 100644 index 00000000..c80b9f35 --- /dev/null +++ b/app/admin/logic/product_source_link/ProductSourceLinkLogic.php @@ -0,0 +1,297 @@ +where('purchase_uid', $info['buyer_id'])->where('warehouse_id', $info['warehouse_id'])->find(); + if (empty($model)) { + $model = new ProductSourceLink(); + $model->product_id = $offer['product_id']; + $model->purchase_uid = $info['buyer_id']; + $model->warehouse_id = $info['warehouse_id']; + $model->save(); + } + ProductSourceLinkInfoLogic::add([ + 'oid' => $model['id'], + 'product_id' => $offer['product_id'], + 'warehouse_id' => $info['warehouse_id'], + 'nums' => $offer['buyer_nums'], + 'current_nums' => $offer['buyer_nums'], + 'types' => $info['types'], + 'link_id' => $info['link_id'], + 'price' => $offer['price'], + 'total_price' => $offer['total_price'], + ]); + } + return true; + } + + + /** + * @notes 编辑商品溯源管理 + * @param array $params + * @return bool + * @author admin + * @date 2025/03/12 10:03 + */ + public static function edit(array $params): bool + { + Db::startTrans(); + try { + ProductSourceLink::where('id', $params['id'])->update([ + 'purchase_uid' => $params['purchase_uid'], + 'product_id' => $params['product_id'], + 'warehouse_id' => $params['warehouse_id'], + ]); + + Db::commit(); + return true; + } catch (\Throwable $e) { + Db::rollback(); + throw new BusinessException($e->getMessage()); + } + } + + + /** + * @notes 删除商品溯源管理 + * @param array $params + * @return bool + * @author admin + * @date 2025/03/12 10:03 + */ + public static function delete(array $params): bool + { + return ProductSourceLink::destroy($params['id']); + } + + + /** + * @notes 获取商品溯源管理详情 + * @param $params + * @return array + * @author admin + * @date 2025/03/12 10:03 + */ + public static function detail($params): array + { + return ProductSourceLink::findOrEmpty($params['id'])->toArray(); + } + + /** + * 出库 + * @param array $info + * @return true + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + */ + public static function outbound(array $info) + { + $query = ProductSourceLinkInfo::where('product_id', $info['product']['product_id'])->where('current_nums', '>', 0); + if (!empty($info['is_store_order']) && $info['store_id']) { + $query->where('store_id', $info['store_id'])->whereIn('types', [ProductSourceLinkInfo::TypeStoreIn, ProductSourceLinkInfo::TypeS2S]); + } else { + $query->whereIn('types', [ProductSourceLinkInfo::TypeIn, ProductSourceLinkInfo::TypeS2W, ProductSourceLinkInfo::TypeW2W]); + } + $productSourceLinkInfo = $query->select()->toArray(); + $update = []; + $insert = []; + $needNum = $info['product']['nums']; + foreach ($productSourceLinkInfo as $item) { + $info['warehouse_id'] = empty($info['warehouse_id']) ? $item['warehouse_id'] : $info['warehouse_id']; + $info['store_id'] = empty($info['store_id']) ? $item['store_id'] : $info['store_id']; + $currentNum = max(bcsub($item['current_nums'], $needNum, 2), 0); + if ($item['current_nums'] > $needNum) { + [$update, $insert] = self::getInsertAndUpdate($update, $insert, $currentNum, $item, $info, $needNum); + break; + } else { + [$update, $insert] = self::getInsertAndUpdate($update, $insert, 0, $item, $info, $item['current_nums']); + } + $needNum = $needNum - $item['current_nums']; + } + (new ProductSourceLinkInfo())->saveAll($update); + (new ProductSourceLinkInfo())->insertAll($insert); + return true; + } + + public static function getInsertAndUpdate($update, $insert, $currentNum, $item, $info, $needNum) + { + $time = time(); + $update[] = [ + 'id' => $item['id'], + 'current_nums' => $currentNum, + 'update_time' => $time, + ]; + $exist = ProductSourceLinkInfo::field('id,from_id,nums,current_nums')->where('link_id', $info['link_id'])->where('types', ProductSourceLinkInfo::TypeOut)->findOrEmpty()->toArray(); + if (!empty($exist) && $exist['from_id'] == $item['id']) { + $itemNums = bcadd($exist['nums'], $needNum, 2); + $itemCurrentNums = bcadd($exist['current_nums'], $needNum, 2); + $update[] = [ + 'id' => $exist['id'], + 'nums' => $itemNums, + 'current_nums' => $itemCurrentNums, + 'total_price' => bcmul($item['price'], $itemNums, 2), + 'update_time' => $time, + ]; + } else { + $insert[] = [ + 'product_id' => $item['product_id'], + 'warehouse_id' => $info['warehouse_id'] ?? 0, + 'store_id' => $info['store_id'] ?? 0, + 'oid' => $item['oid'], + 'types' => $info['types'] ?? ProductSourceLinkInfo::TypeOut, + 'link_id' => $info['link_id'], + 'from_id' => $item['id'], + 'nums' => $needNum, + 'current_nums' => $needNum, + 'price' => $item['price'], + 'total_price' => bcmul($item['price'], $needNum, 2), + 'create_time' => $time, + 'update_time' => $time, + ]; + } + return [$update, $insert]; + } + + /** + * 门店入库 + * @param array $info + * @return void + * @throws DataNotFoundException + * @throws DbException + * @throws ModelNotFoundException + */ + public static function storeInStorage(array $info) + { + $list = ProductSourceLinkInfo::where('link_id', $info['link_id']) + ->where('product_id', $info['product_id']) + ->where('types', ProductSourceLinkInfo::TypeOut) + ->select()->toArray(); + if (empty($list)) { + return; + } + foreach ($list as $item) { + ProductSourceLinkInfoLogic::add([ + 'oid' => $item['oid'], + 'product_id' => $item['product_id'], + 'warehouse_id' => $info['warehouse_id'] ?? 0, + 'store_id' => $info['store_id'] ?? 0, + 'nums' => $item['nums'], + 'current_nums' => $item['nums'], + 'types' => $info['types'], + 'link_id' => $info['link_id'], + 'from_id' => $item['id'], + 'price' => $item['price'], + 'total_price' => $item['total_price'], + ]); + } + } + + /** + * 门店退库 + * @param array $info + * @return void + * @throws DataNotFoundException + * @throws DbException + * @throws ModelNotFoundException + */ + public static function storeRollback(array $info) + { + $list = ProductSourceLinkInfo::where('link_id', $info['link_id']) + ->where('product_id', $info['product_id']) + ->where('types', ProductSourceLinkInfo::TypeStoreIn) + ->select()->toArray(); + if (empty($list)) { + return; + } + ProductSourceLinkInfoLogic::updateByLinkId($info['link_id'], ProductSourceLinkInfo::TypeStoreIn, ['add_nums' => -$info['nums']]); + } + + /** + * 商品调拨 + * @param array $info + * @return void + * @throws DataNotFoundException + * @throws DbException + * @throws ModelNotFoundException + */ + public static function transfer(array $info) + { + $inventoryTransfer = InventoryTransfer::field('id,nums,one_type,one_id,two_type,two_id') + ->where('oid', $info['oid']) + ->where('product_id', $info['product_id']) + ->findOrEmpty()->toArray(); + if (empty($inventoryTransfer)) { + return; + } + $info['link_id'] = $inventoryTransfer['id']; + $query = ProductSourceLinkInfo::where('product_id', $info['product_id']); + if ($inventoryTransfer['one_type'] == 1) { + $query->where('store_id', $inventoryTransfer['one_id'])->whereIn('types', [ProductSourceLinkInfo::TypeStoreIn, ProductSourceLinkInfo::TypeS2S]); + $info['types'] = $inventoryTransfer['two_type'] == 1 ? ProductSourceLinkInfo::TypeS2S : ProductSourceLinkInfo::TypeS2W; + } else { + $info['types'] = ProductSourceLinkInfo::TypeW2W; + $query->where('warehouse_id', $inventoryTransfer['one_id'])->whereIn('types', [ProductSourceLinkInfo::TypeIn, ProductSourceLinkInfo::TypeS2W, ProductSourceLinkInfo::TypeW2W]); + } + if ($inventoryTransfer['two_type'] == 1) { + $info['store_id'] = $inventoryTransfer['two_id']; + } else { + $info['store_id'] = $inventoryTransfer['one_id']; + $info['warehouse_id'] = $inventoryTransfer['two_id']; + } + $list = $query->where('current_nums', '>', 0) + ->field('id,oid,product_id,warehouse_id,store_id,nums,current_nums,link_id,from_id,price') + ->select()->toArray(); + if (empty($list)) { + return; + } + $update = []; + $insert = []; + $needNum = $inventoryTransfer['nums']; + foreach ($list as $item) { + $currentNum = max(bcsub($item['current_nums'], $needNum, 2), 0); + if ($item['current_nums'] > $needNum) { + [$update, $insert] = self::getInsertAndUpdate($update, $insert, $currentNum, $item, $info, $needNum); + break; + } else { + [$update, $insert] = self::getInsertAndUpdate($update, $insert, 0, $item, $info, $item['current_nums']); + } + $needNum = $needNum - $item['current_nums']; + } + (new ProductSourceLinkInfo())->saveAll($update); + (new ProductSourceLinkInfo())->insertAll($insert); + } + +} \ No newline at end of file diff --git a/app/admin/logic/product_source_link_info/ProductSourceLinkInfoLogic.php b/app/admin/logic/product_source_link_info/ProductSourceLinkInfoLogic.php new file mode 100644 index 00000000..ddfd6ade --- /dev/null +++ b/app/admin/logic/product_source_link_info/ProductSourceLinkInfoLogic.php @@ -0,0 +1,187 @@ +setAttrs($params); + $model->save(); + return $model; + } + + + /** + * @notes 编辑商品溯源详细 + * @param array $params + * @return bool + * @author admin + * @date 2025/03/12 10:08 + */ + public static function edit(array $params): bool + { + Db::startTrans(); + try { + ProductSourceLinkInfo::where('id', $params['id'])->update([ + 'oid' => $params['oid'], + 'product_id' => $params['product_id'], + 'nums' => $params['nums'], + 'types' => $params['types'], + 'link_id' => $params['link_id'], + 'total_price' => $params['total_price'] + ]); + + Db::commit(); + return true; + } catch (\Throwable $e) { + Db::rollback(); + throw new BusinessException($e->getMessage()); + } + } + + + /** + * @notes 删除商品溯源详细 + * @param array $params + * @return bool + * @author admin + * @date 2025/03/12 10:08 + */ + public static function delete(array $params): bool + { + return ProductSourceLinkInfo::destroy($params['id']); + } + + + /** + * @notes 获取商品溯源详细详情 + * @param $params + * @return array + * @author admin + * @date 2025/03/12 10:08 + */ + public static function detail($params): array + { + return ProductSourceLinkInfo::findOrEmpty($params['id'])->toArray(); + } + + public static function updateByLinkId($linkId, $types, array $params) + { + $data = ProductSourceLinkInfo::where('link_id', $linkId)->where('types', $types)->findOrEmpty()->toArray(); + if ($types == ProductSourceLinkInfo::TypeIn && isset($params['add_nums'])) { + $params['current_nums'] = bcadd($data['current_nums'], $params['add_nums'], 2); + unset($params['add_nums']); + $params['total_price'] = bcmul($params['nums'], $data['price'], 2); + ProductSourceLinkInfo::where('id', $data['id'])->update($params); + } elseif (isset($params['add_nums']) && in_array($types, [ProductSourceLinkInfo::TypeOut, ProductSourceLinkInfo::TypeStoreIn])) { + if ($params['add_nums'] < 0) { + $subQuery = ProductSourceLinkInfo::where('link_id', $linkId)->where('types', $types); + $otherData = $subQuery->order('id desc')->select()->toArray(); + if (!empty($otherData)) { + $rollbackNum = abs($params['add_nums']); + $update = []; + foreach ($otherData as $item) { + if ($item['nums'] > $rollbackNum) { + $update = self::setUpdate($item, $rollbackNum, $update); + break; + } else { + $update = self::setUpdate($item, $item['nums'], $update); + } + $rollbackNum = bcsub($rollbackNum, $item['nums'], 2); + } + (new ProductSourceLinkInfo())->saveAll($update); + } + } else { + $warehouseId = ProductSourceLink::where('id', $data['oid'])->value('warehouse_id'); + ProductSourceLinkLogic::outbound([ + 'product' => [ + 'product_id' => $data['product_id'], + 'nums' => $params['add_nums'], + ], + 'warehouse_id' => $warehouseId, + 'link_id' => $data['link_id'], + ]); + } + } + } + + /** + * 根据linkId删除 + * @param $linkId + * @param $types + * @return void + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + */ + public static function deleteByLinkId($linkId, $types) + { + $list = ProductSourceLinkInfo::where('link_id', $linkId)->where('types', $types)->select()->toArray(); + $update = []; + foreach ($list as $item) { + if ($types == ProductSourceLinkInfo::TypeOut && $item['from_id'] > 0) { + $update[] = [ + 'id' => $item['from_id'], + 'current_nums' => Db::raw("current_nums+{$item['nums']}"), + ]; + } + $update[] = [ + 'id' => $item['id'], + 'delete_time' => time(), + ]; + } + (new ProductSourceLinkInfo())->saveAll($update); + } + + /** + * @param array $data + * @param float|int|string $rollbackNum + * @param array $update + * @return array + */ + public static function setUpdate(array $data, float|int|string $rollbackNum, array $update): array + { + $dataNums = bcsub($data['nums'], $rollbackNum, 2); + $currentNums = max(bcsub($data['current_nums'], $rollbackNum, 2), 0); + $update[] = [ + 'id' => $data['id'], + 'nums' => $dataNums, + 'current_nums' => $currentNums, + 'total_price' => bcmul($data['price'], $dataNums, 2), + 'delete_time' => $dataNums > 0 ? null : time(), + ]; + if ($data['from_id'] > 0) { + $update[] = [ + 'id' => $data['from_id'], + 'current_nums' => Db::raw("current_nums+{$rollbackNum}"), + ]; + } + return $update; + } + +} \ No newline at end of file diff --git a/app/admin/logic/purchase_product_offer/PurchaseProductOfferLogic.php b/app/admin/logic/purchase_product_offer/PurchaseProductOfferLogic.php index e5f83859..c1f5a574 100644 --- a/app/admin/logic/purchase_product_offer/PurchaseProductOfferLogic.php +++ b/app/admin/logic/purchase_product_offer/PurchaseProductOfferLogic.php @@ -324,7 +324,7 @@ class PurchaseProductOfferLogic extends BaseLogic BeforehandOrder::where('id', $offer['bhoid'])->update(['pay_price' => $pay_price]); $product = StoreProduct::where('id', $offer['product_id'])->withTrashed()->field('id,store_name,top_cate_id,two_cate_id,cate_id')->find(); $offer['purchase']=$price; - self::setProductGroupPrice($offer, $product); + self::setProductPrice($offer, $product); Db::commit(); return true; } catch (\Throwable $e) { @@ -380,7 +380,7 @@ class PurchaseProductOfferLogic extends BaseLogic } /** - * 设置商品分组价格 + * 设置商品价格 * @param $params * @param $product * @return void @@ -388,7 +388,7 @@ class PurchaseProductOfferLogic extends BaseLogic * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException */ - public static function setProductGroupPrice($params, $product, $warehouseId = 0) + public static function setProductPrice($params, $product, $warehouseId = 0) { $priceConfig = []; $data = [ diff --git a/app/admin/logic/store_branch_product/StoreBranchProductLogic.php b/app/admin/logic/store_branch_product/StoreBranchProductLogic.php index 4d2ea5a4..6d2ae3bb 100644 --- a/app/admin/logic/store_branch_product/StoreBranchProductLogic.php +++ b/app/admin/logic/store_branch_product/StoreBranchProductLogic.php @@ -2,7 +2,9 @@ namespace app\admin\logic\store_branch_product; +use app\admin\logic\product_source_link\ProductSourceLinkLogic; use app\admin\logic\store_product\StoreProductLogic; +use app\common\model\product_source_link_info\ProductSourceLinkInfo; use app\common\model\store_branch_product\StoreBranchProduct; use app\common\logic\BaseLogic; use app\common\model\store_product\StoreProduct; @@ -141,6 +143,13 @@ class StoreBranchProductLogic extends BaseLogic ], ['product_id' => $productId,'store_id'=>$storeId]); SqlChannelLog('StoreBranchProduct',$branchProduct['id'], $num, -1, Request()->url()); } + ProductSourceLinkLogic::add([ + 'purchase_product_offer' => [$params], + 'types' => ProductSourceLinkInfo::TypeIn, + 'buyer_id' => $params['buyer_id'], + 'warehouse_id' => $params['warehouse_id'], + 'link_id' => $res['id'], + ]); } } diff --git a/app/admin/logic/store_product_price/StoreProductPriceLogic.php b/app/admin/logic/store_product_price/StoreProductPriceLogic.php index e3d850d0..f9aebdfc 100644 --- a/app/admin/logic/store_product_price/StoreProductPriceLogic.php +++ b/app/admin/logic/store_product_price/StoreProductPriceLogic.php @@ -99,15 +99,16 @@ class StoreProductPriceLogic extends BaseLogic 'purchase' => $find['purchase'], 'cost' => $find['cost'], 'vip_price' => $find['vip_price'], - 'price' => $find['price'] + 'price' => $find['vip_price'], + 'ot_price' => $find['price'] ]); StoreBranchProduct::where('product_id', $find['product_id'])->update([ 'purchase' => $find['purchase'], 'cost' => $find['cost'], 'vip_price' => $find['vip_price'], - 'price' => $find['price'] + 'price' => $find['vip_price'], + 'ot_price' => $find['price'] ]); -// self::setProductGroupPrice($find); } Db::commit(); return true; @@ -172,15 +173,16 @@ class StoreProductPriceLogic extends BaseLogic 'purchase' => $find['purchase'] ?? 0, 'cost' => $find['cost'] ?? 0, 'vip_price' => $find['vip_price'] ?? 0, - 'price' => $find['price'] ?? 0 + 'price' => $find['vip_price'] ?? 0, + 'ot_price' => $find['price'] ?? 0, ]); StoreBranchProduct::where('product_id', $find['product_id'])->update([ 'purchase' => $find['purchase'] ?? 0, 'cost' => $find['cost'] ?? 0, 'vip_price' => $find['vip_price'] ?? 0, - 'price' => $find['price'] ?? 0 + 'price' => $find['vip_price'] ?? 0, + 'ot_price' => $find['price'] ?? 0, ]); -// self::setProductGroupPrice($find); } Db::commit(); return true; @@ -271,7 +273,7 @@ class StoreProductPriceLogic extends BaseLogic { $list = StoreProductPrice::where('product_id', $params['product_id']) ->field('id,purchase_price,purchase,create_time') - ->order('id asc')->limit(30) + ->order('id desc')->limit(30) ->select()->toArray(); foreach ($list as &$item) { $item['date'] = date('m-d', strtotime($item['create_time'])); @@ -281,6 +283,7 @@ class StoreProductPriceLogic extends BaseLogic $item['price'] = $item['purchase']; } } + asort($list); $data = [ 'name' => '价格趋势', 'series' => [['name' => '价格', 'value' => array_column($list, 'price')]], diff --git a/app/admin/logic/system_store_storage/SystemStoreStorageLogic.php b/app/admin/logic/system_store_storage/SystemStoreStorageLogic.php index 0da5bff1..0d6e437b 100644 --- a/app/admin/logic/system_store_storage/SystemStoreStorageLogic.php +++ b/app/admin/logic/system_store_storage/SystemStoreStorageLogic.php @@ -2,7 +2,9 @@ namespace app\admin\logic\system_store_storage; +use app\admin\logic\product_source_link\ProductSourceLinkLogic; use app\admin\logic\store_product\StoreProductLogic; +use app\common\model\product_source_link_info\ProductSourceLinkInfo; use app\common\model\store_branch_product\StoreBranchProduct; use app\common\model\store_branch_product_attr_value\StoreBranchProductAttrValue; use app\common\model\system_store_storage\SystemStoreStorage; @@ -64,26 +66,27 @@ class SystemStoreStorageLogic extends BaseLogic Db::startTrans(); try { $find= WarehouseProduct::where(['id' => $params['id']])->find(); - // $find=SystemStoreStorage::where(['id' => $params['id']])->find(); if($find){ - // if($find['order_type']==1){ - $find->save(['status'=>1,'staff_id'=>$params['staff_id']??0,'admin_id'=>$params['admin_id']??0,'mark'=>'入库时间:'.date('Y-m-d H:i:s',time())]); - $branch_product=StoreBranchProduct::where(['product_id'=>$find['product_id'],'store_id'=>$find['store_id']])->find(); - if($branch_product){ - $branch_product->stock=$branch_product['stock']+$find['nums']; - $branch_product->save(); - SqlChannelLog('StoreBranchProduct', $branch_product['id'], $find['nums'], 1,Request()->url(),$admin_id); - }else{ - $storeProduct = StoreProduct::where('id', $find['product_id'])->withTrashed()->findOrEmpty(); - $storeBranchProduct = StoreProductLogic::ordinary(['id' => $find['product_id']], $find['store_id'], 0, $storeProduct); - $storeBranchProduct->stock = $find['nums']; - $storeBranchProduct->save(); - SqlChannelLog('StoreBranchProduct', $storeBranchProduct['id'], $find['nums'], 1,Request()->url(),$admin_id); - } - // }else{ - // $find->save(['status'=>1,'staff_id'=>$params['staff_id']??0,'admin_id'=>$params['admin_id']??0,'mark'=>'确认时间:'.date('Y-m-d H:i:s',time())]); - // } - + $find->save(['status'=>1,'staff_id'=>$params['staff_id']??0,'admin_id'=>$params['admin_id']??0,'mark'=>'入库时间:'.date('Y-m-d H:i:s',time())]); + $branch_product=StoreBranchProduct::where(['product_id'=>$find['product_id'],'store_id'=>$find['store_id']])->find(); + if($branch_product){ + $branch_product->stock=$branch_product['stock']+$find['nums']; + $branch_product->save(); + SqlChannelLog('StoreBranchProduct', $branch_product['id'], $find['nums'], 1,Request()->url(),$admin_id); + }else{ + $storeProduct = StoreProduct::where('id', $find['product_id'])->withTrashed()->findOrEmpty(); + $storeBranchProduct = StoreProductLogic::ordinary(['id' => $find['product_id']], $find['store_id'], 0, $storeProduct); + $storeBranchProduct->stock = $find['nums']; + $storeBranchProduct->save(); + SqlChannelLog('StoreBranchProduct', $storeBranchProduct['id'], $find['nums'], 1,Request()->url(),$admin_id); + } + ProductSourceLinkLogic::storeInStorage([ + 'link_id' => $find['id'], + 'product_id' => $find['product_id'], + 'warehouse_id' => $find['warehouse_id'], + 'store_id' => $find['store_id'], + 'types' => ProductSourceLinkInfo::TypeStoreIn, + ]); } Db::commit(); return true; @@ -195,7 +198,14 @@ class SystemStoreStorageLogic extends BaseLogic $warehouseProduct->save(); $warehouseStorage->nums += $params['num']; $warehouseStorage->save(); - SqlChannelLog('StoreBranchProduct', $warehouseProduct['id'], $warehouseProduct['nums'], 1,Request()->url()); + SqlChannelLog('WarehouseProductStorege', $warehouseStorage['id'], $params['num'], 1,Request()->url()); + SqlChannelLog('StoreBranchProduct', $StoreProduct['id'], $params['num'], -1,Request()->url()); + ProductSourceLinkLogic::storeRollback([ + 'link_id' => $warehouseProduct['id'], + 'product_id' => $warehouseProduct['product_id'], + 'nums' => $params['num'], + 'types' => ProductSourceLinkInfo::TypeStoreOut, + ]); Db::commit(); return true; } catch (\Exception $e) { diff --git a/app/admin/logic/warehouse_order/WarehouseOrderLogic.php b/app/admin/logic/warehouse_order/WarehouseOrderLogic.php index 9734ad22..5b1d9e91 100644 --- a/app/admin/logic/warehouse_order/WarehouseOrderLogic.php +++ b/app/admin/logic/warehouse_order/WarehouseOrderLogic.php @@ -20,6 +20,7 @@ class WarehouseOrderLogic extends BaseLogic /** + * @deprecated 已禁止直接创建入库单 * @notes 添加仓储商品单 * @param array $params * @return bool @@ -92,9 +93,11 @@ class WarehouseOrderLogic extends BaseLogic throw new BusinessException('订单不存在'); } $order_type=BeforehandOrder::where('warehousing_id|outbound_id',$find['id'])->value('order_type')??0; + $buyerId = BeforehandOrder::where('warehousing_id|outbound_id',$find['id'])->value('buyer_id') ?? 0; Db::startTrans(); try { foreach ($params['product_arr'] as $k => $v) { + $data['buyer_id'] = $buyerId; $data['order_type'] = $order_type; $data['supplier_id'] = $v['supplier_id']??0; $data['pay_type'] = $v['pay_type']??0; @@ -106,6 +109,8 @@ class WarehouseOrderLogic extends BaseLogic $data['product_id'] = $v['id']; $data['nums'] = $v['nums']; $data['purchase'] = $v['purchase']; + $data['buyer_nums'] = $v['nums']; + $data['price'] = $v['purchase']; $data['total_price'] = $v['total_price']; $data['financial_pm'] = $find['financial_pm']; if (!empty($v['manufacture'])) { diff --git a/app/admin/logic/warehouse_product/WarehouseProductLogic.php b/app/admin/logic/warehouse_product/WarehouseProductLogic.php index 735ffe7a..a652d465 100644 --- a/app/admin/logic/warehouse_product/WarehouseProductLogic.php +++ b/app/admin/logic/warehouse_product/WarehouseProductLogic.php @@ -2,8 +2,12 @@ namespace app\admin\logic\warehouse_product; +use app\admin\logic\product_source_link\ProductSourceLinkLogic; +use app\admin\logic\product_source_link_info\ProductSourceLinkInfoLogic; use app\admin\logic\store_branch_product\StoreBranchProductLogic; use app\admin\logic\store_product\StoreProductLogic; +use app\common\model\beforehand_order\BeforehandOrder; +use app\common\model\product_source_link_info\ProductSourceLinkInfo; use app\common\model\warehouse_product\WarehouseProduct; use app\common\logic\BaseLogic; use app\common\model\purchase_product_offer\PurchaseProductOffer; @@ -13,6 +17,9 @@ use app\common\model\system_store_storage\SystemStoreStorage; use app\common\model\warehouse_order\WarehouseOrder; use app\common\model\warehouse_product_storege\WarehouseProductStorege; use support\Log; +use think\db\exception\DataNotFoundException; +use think\db\exception\DbException; +use think\db\exception\ModelNotFoundException; use think\facade\Db; use support\exception\BusinessException; @@ -29,7 +36,6 @@ class WarehouseProductLogic extends BaseLogic /** * @notes 添加商品仓储信息 * @param array $params - * @return bool * @author admin * @date 2024/07/31 16:55 */ @@ -112,6 +118,13 @@ class WarehouseProductLogic extends BaseLogic $res = WarehouseProduct::create($data); SqlChannelLog('WarehouseProduct', $res['id'], $params['nums'], $params['financial_pm'] == 1 ? 1 : -1, Request()->url(),$admin_id); + ProductSourceLinkLogic::add([ + 'purchase_product_offer' => [$params], + 'types' => ProductSourceLinkInfo::TypeIn, + 'buyer_id' => $params['buyer_id'], + 'warehouse_id' => $params['warehouse_id'], + 'link_id' => $res['id'], + ]); return $res; } catch (\Throwable $e) { throw new BusinessException($e->getMessage()); @@ -188,6 +201,13 @@ class WarehouseProductLogic extends BaseLogic $res = WarehouseProduct::create($data); SqlChannelLog('WarehouseProduct', $res->id, $params['nums'], $params['financial_pm'] == 1 ? 1 : -1, Request()->url(),$admin_id); + ProductSourceLinkLogic::outbound([ + 'product' => $data, + 'warehouse_id' => $params['warehouse_id'], + 'store_id' => $data['store_id'], + 'link_id' => $res['id'], + ]); + Db::commit(); return $res; } catch (\Throwable $e) { @@ -210,24 +230,13 @@ class WarehouseProductLogic extends BaseLogic $find = WarehouseOrder::where('id', $params['oid'])->find(); if ($find) { $res = WarehouseProduct::where('id', $params['id'])->withTrashed()->find(); - if($params['nums']>$res['nums']){ - $nums=bcsub($params['nums'], $res['nums'],2); - if ($res['financial_pm'] == 0) { - self::decWarehouseProduct($res, $nums); - } else { - self::incWarehouseProduct($res, $nums); - } - }else{ - if($params['nums']==0){ - self::decWarehouseProduct($res, $res['nums']); - }else{ - $nums = bcsub($res['nums'], $params['nums'], 2); - if ($res['financial_pm'] == 0) { - self::incWarehouseProduct($res, $nums); - } else { - self::decWarehouseProduct($res, $nums); - } - } + $updateNums = bcsub($params['nums'], $res['nums'],2); + if ($updateNums != 0) { + $storageNum = $res['financial_pm'] == 0 ? -$updateNums : $updateNums; + $productNum = $updateNums; + self::updateWarehouseProduct($res, $storageNum, $productNum); + + self::updateProductSourceLink($res, $params, $updateNums); } $datas = [ 'total_price' => $params['total_price'], @@ -251,7 +260,6 @@ class WarehouseProductLogic extends BaseLogic return $res; } catch (\Exception $e) { Db::rollback(); - d($e); throw new BusinessException($e->getMessage()); } } @@ -269,12 +277,12 @@ class WarehouseProductLogic extends BaseLogic if ($res) { Db::startTrans(); try { - if ($res['financial_pm'] == 1) { - self::decProductIncStorege($res, $res['nums'], $admin_id); - } elseif ($res['financial_pm'] == 0) { - self::incProductDecStorege($res, $res['nums'], $admin_id); - } + $storageNum = $res['financial_pm'] == 1 ? -$res['nums'] : $res['nums']; + $productNum = -$res['nums']; + self::updateWarehouseProduct($res, $storageNum, $productNum); $res->delete(); + $types = $res['financial_pm'] == 1 ? ProductSourceLinkInfo::TypeIn : ProductSourceLinkInfo::TypeOut; + ProductSourceLinkInfoLogic::deleteByLinkId($res['id'], $types); Db::commit(); return true; } catch (\Throwable $th) { @@ -316,28 +324,29 @@ class WarehouseProductLogic extends BaseLogic { Db::startTrans(); try { - $res = WarehouseProduct::where('id', $params['id'])->find(); - if ($res) { - if($params['nums']>$res['nums']){ - $nums=bcsub($params['nums'], $res['nums'],2); - self::incProductDecStorege($res, $nums,$admin_id); - }else{ - $nums=bcsub($res['nums'],$params['nums'],2); - self::decProductIncStorege($res, $nums,$admin_id); + $warehouseProduct = WarehouseProduct::where('id', $params['id'])->find(); + if ($warehouseProduct) { + $updateNums = bcsub($params['nums'], $warehouseProduct['nums'],2); + if ($updateNums != 0) { + $storageNum = $warehouseProduct['financial_pm'] == 0 ? -$updateNums : $updateNums; + $productNum = $updateNums; + self::updateWarehouseProduct($warehouseProduct, $storageNum, $productNum); + + self::updateProductSourceLink($warehouseProduct, $params, $updateNums); } - if($res['financial_pm']==1){ + if($warehouseProduct['financial_pm']==1){ $datas = [ 'nums' => $params['nums'], - 'total_price' => bcmul($params['nums'], $res['purchase'], 2), + 'total_price' => bcmul($params['nums'], $warehouseProduct['purchase'], 2), ]; }else{ $datas = [ 'nums' => $params['nums'], - 'total_price' => bcmul($params['nums'], $res['price'], 2), + 'total_price' => bcmul($params['nums'], $warehouseProduct['price'], 2), ]; } - $res->save($datas); + $warehouseProduct->save($datas); } Db::commit(); } catch (\Throwable $th) { @@ -445,28 +454,29 @@ class WarehouseProductLogic extends BaseLogic } /** - * 增加商品入库数量 + * 增加商品数量 * @param $warehouseProduct - * @param $nums + * @param $storageNum + * @param $productNum * @return void - * @throws \think\db\exception\DataNotFoundException - * @throws \think\db\exception\DbException - * @throws \think\db\exception\ModelNotFoundException + * @throws DataNotFoundException + * @throws DbException + * @throws ModelNotFoundException */ - public static function incWarehouseProduct($warehouseProduct, $nums) + public static function updateWarehouseProduct($warehouseProduct, $storageNum, $productNum) { $warehouseProductStorage = WarehouseProductStorege::where('warehouse_id', $warehouseProduct['warehouse_id']) ->where('product_id', $warehouseProduct['product_id'])->find(); - $warehouseProductStorage->nums = bcadd($warehouseProductStorage->nums, $nums, 2); + $warehouseProductStorage->nums = bcadd($warehouseProductStorage->nums, $storageNum, 2); $warehouseProductStorage->save(); - SqlChannelLog('WarehouseProductStorege', $warehouseProductStorage['id'], $nums, 1, Request()->url()); + SqlChannelLog('WarehouseProductStorege', $warehouseProductStorage['id'], $storageNum, $storageNum > 0 ? 1 : -1, Request()->url()); $update = [ - 'nums' => bcadd($warehouseProduct['nums'], $nums, 2), - 'total_price' => bcadd($warehouseProduct['total_price'], bcmul($nums, $warehouseProduct['price'], 2), 2), + 'nums' => bcadd($warehouseProduct['nums'], $productNum, 2), + 'total_price' => bcadd($warehouseProduct['total_price'], bcmul($productNum, $warehouseProduct['price'], 2), 2), ]; WarehouseProduct::where('id',$warehouseProduct['id'])->update($update); - SqlChannelLog('WarehouseProduct', $warehouseProduct['id'], $nums, 1, Request()->url()); + SqlChannelLog('WarehouseProduct', $warehouseProduct['id'], $productNum, $productNum > 0 ? 1 : -1, Request()->url()); $find = WarehouseProduct::where('oid', $warehouseProduct['oid'])->field('sum(nums) as nums,sum(total_price) as total_price')->find(); if ($find) { @@ -475,41 +485,7 @@ class WarehouseProductLogic extends BaseLogic 'total_price' => $find['total_price'] ]); } - self::updateStoreStorage2($warehouseProduct, $nums); - } - - /** - * 减少商品入库数量 - * @param $warehouseProduct - * @param $nums - * @return void - * @throws \think\db\exception\DataNotFoundException - * @throws \think\db\exception\DbException - * @throws \think\db\exception\ModelNotFoundException - */ - public static function decWarehouseProduct($warehouseProduct, $nums) - { - $warehouseProductStorage = WarehouseProductStorege::where('warehouse_id', $warehouseProduct['warehouse_id']) - ->where('product_id', $warehouseProduct['product_id'])->find(); - $warehouseProductStorage->nums = bcsub($warehouseProductStorage->nums, $nums, 2); - $warehouseProductStorage->save(); - SqlChannelLog('WarehouseProductStorege', $warehouseProductStorage['id'], $nums, -1, Request()->url()); - - $update = [ - 'nums' => bcsub($warehouseProduct['nums'], $nums, 2), - 'total_price' => bcsub($warehouseProduct['total_price'], bcmul($nums, $warehouseProduct['price'], 2), 2), - ]; - WarehouseProduct::where('id',$warehouseProduct['id'])->update($update); - SqlChannelLog('WarehouseProduct', $warehouseProduct['id'], $nums, -1, Request()->url()); - - $find = WarehouseProduct::where('oid', $warehouseProduct['oid'])->field('sum(nums) as nums,sum(total_price) as total_price')->find(); - if ($find) { - WarehouseOrder::where('id', $warehouseProduct['oid'])->update([ - 'nums' => $find['nums'], - 'total_price' => $find['total_price'] - ]); - } - self::updateStoreStorage2($warehouseProduct, $nums); + self::updateStoreStorage2($warehouseProduct, $productNum); } /** @@ -542,4 +518,17 @@ class WarehouseProductLogic extends BaseLogic } } + public static function updateProductSourceLink($warehouseProduct, $params, $updateNums) + { + $ProductSourceLinkInfoParams = ['nums' => $params['nums'], 'total_price' => bcmul($warehouseProduct['price'], $params['nums'], 2)]; + if ($warehouseProduct['financial_pm'] == 1) { + $ProductSourceLinkInfoParams['price'] = $params['purchase']; + $ProductSourceLinkInfoParams['add_nums'] = $updateNums; + ProductSourceLinkInfoLogic::updateByLinkId($warehouseProduct['id'], ProductSourceLinkInfo::TypeIn, $ProductSourceLinkInfoParams); + } else { + $ProductSourceLinkInfoParams['add_nums'] = bcsub($params['nums'], $warehouseProduct['nums'],2); + ProductSourceLinkInfoLogic::updateByLinkId($warehouseProduct['id'], ProductSourceLinkInfo::TypeOut, $ProductSourceLinkInfoParams); + } + } + } diff --git a/app/admin/logic/warehouse_product_return/WarehouseProductReturnLogic.php b/app/admin/logic/warehouse_product_return/WarehouseProductReturnLogic.php index 88c8a096..7f4edb2d 100644 --- a/app/admin/logic/warehouse_product_return/WarehouseProductReturnLogic.php +++ b/app/admin/logic/warehouse_product_return/WarehouseProductReturnLogic.php @@ -3,6 +3,9 @@ namespace app\admin\logic\warehouse_product_return; +use app\admin\logic\product_source_link_info\ProductSourceLinkInfoLogic; +use app\admin\logic\warehouse_product\WarehouseProductLogic; +use app\common\model\product_source_link_info\ProductSourceLinkInfo; use app\common\model\warehouse_product_return\WarehouseProductReturn; use app\common\logic\BaseLogic; use app\common\model\beforehand_order\BeforehandOrder; @@ -76,10 +79,6 @@ class WarehouseProductReturnLogic extends BaseLogic throw new BusinessException('该商品库存:'.$params['nums'].'小于仓库库存'.$proudct['nums']); } } - // $offer = PurchaseProductOffer::where('order_id', $params['bhoid'])->where('product_id', $find['product_id'])->find(); - // if (!$offer) { - // throw new BusinessException('该商品没有采购信息'); - // } $datas = [ 'source_id' => $params['id'], 'bhoid' => $params['bhoid'] ?? 0, @@ -93,14 +92,19 @@ class WarehouseProductReturnLogic extends BaseLogic 'nums' => $params['nums'], 'return_type' => $params['return_type'], 'mark' => $params['mark'], - // 'price' => $offer['price'], - // 'total_price' => bcmul($params['nums'], $offer['price'], 2), 'price' => 0, 'total_price' => 0, ]; } WarehouseProductReturn::create($datas); + + $updateNums = bcsub($find['nums'], $params['nums'], 2); + if ($params['nums'] != 0) { + $numTemp = bcsub($find['nums'], $params['nums'], 2); + WarehouseProductLogic::updateProductSourceLink($find, array_merge($params, ['nums' => $numTemp]), $updateNums); + } + if ($params['financial_pm'] == 1 && $params['return_type'] == 1) { $nums = bcsub($find['nums'], $params['nums'], 2); $total_price = 0; diff --git a/app/admin/validate/product_source_link/ProductSourceLinkValidate.php b/app/admin/validate/product_source_link/ProductSourceLinkValidate.php new file mode 100644 index 00000000..5e66b302 --- /dev/null +++ b/app/admin/validate/product_source_link/ProductSourceLinkValidate.php @@ -0,0 +1,82 @@ + 'require', + ]; + + + /** + * 参数描述 + * @var string[] + */ + protected $field = [ + 'id' => 'id', + ]; + + + /** + * @notes 添加场景 + * @return ProductSourceLinkValidate + * @author admin + * @date 2025/03/12 10:03 + */ + public function sceneAdd() + { + return $this->remove('id', true); + } + + + /** + * @notes 编辑场景 + * @return ProductSourceLinkValidate + * @author admin + * @date 2025/03/12 10:03 + */ + public function sceneEdit() + { + return $this->only(['id']); + } + + + /** + * @notes 删除场景 + * @return ProductSourceLinkValidate + * @author admin + * @date 2025/03/12 10:03 + */ + public function sceneDelete() + { + return $this->only(['id']); + } + + + /** + * @notes 详情场景 + * @return ProductSourceLinkValidate + * @author admin + * @date 2025/03/12 10:03 + */ + public function sceneDetail() + { + return $this->only(['id']); + } + +} \ No newline at end of file diff --git a/app/admin/validate/product_source_link_info/ProductSourceLinkInfoValidate.php b/app/admin/validate/product_source_link_info/ProductSourceLinkInfoValidate.php new file mode 100644 index 00000000..a7c1e602 --- /dev/null +++ b/app/admin/validate/product_source_link_info/ProductSourceLinkInfoValidate.php @@ -0,0 +1,82 @@ + 'require', + ]; + + + /** + * 参数描述 + * @var string[] + */ + protected $field = [ + 'id' => 'id', + ]; + + + /** + * @notes 添加场景 + * @return ProductSourceLinkInfoValidate + * @author admin + * @date 2025/03/12 10:08 + */ + public function sceneAdd() + { + return $this->remove('id', true); + } + + + /** + * @notes 编辑场景 + * @return ProductSourceLinkInfoValidate + * @author admin + * @date 2025/03/12 10:08 + */ + public function sceneEdit() + { + return $this->only(['id']); + } + + + /** + * @notes 删除场景 + * @return ProductSourceLinkInfoValidate + * @author admin + * @date 2025/03/12 10:08 + */ + public function sceneDelete() + { + return $this->only(['id']); + } + + + /** + * @notes 详情场景 + * @return ProductSourceLinkInfoValidate + * @author admin + * @date 2025/03/12 10:08 + */ + public function sceneDetail() + { + return $this->only(['id']); + } + +} \ No newline at end of file diff --git a/app/api/controller/IndexController.php b/app/api/controller/IndexController.php index 1cded3f7..6e569356 100644 --- a/app/api/controller/IndexController.php +++ b/app/api/controller/IndexController.php @@ -61,14 +61,14 @@ class IndexController extends BaseApiController public function index() { - // $arr=BeforehandOrderCartInfo::where('bhoid',1284)->select(); - // foreach ($arr as $k=>$v){ - // $product_id=StoreBranchProduct::where('id',$v['product_id'])->value('product_id'); - // BeforehandOrderCartInfo::where('id',$v['id'])->update(['product_id'=>$product_id]); - // } - // $a=StoreOrderCartInfo::where('store_id',2)->whereBetweenTime('create_time','2025-01-01','2025-01-8')->select()->toArray(); - // d($a); - // DemoLogic::test(); + $arr= Db::name('ceshi_copy_copy')->select(); + foreach ($arr as $k => $v) { + $find=Db::name('ceshi_copy')->where('product_id',$v['product_id'])->find(); + if($find){ + Db::name('ceshi_copy_copy')->where('id',$v['id'])->update(['price_two'=>bcadd($v['price'],bcmul($v['price'], $find['purchase'], 2),2),'purchase'=>bcadd($v['price'],bcmul($v['price'], $find['price'], 2),2)]); + + } + } d(1); $arr = Db::name('ceshi_copy')->select(); foreach ($arr as $k => $v) { diff --git a/app/api/logic/order/OrderLogic.php b/app/api/logic/order/OrderLogic.php index 89be6ee2..f6247878 100644 --- a/app/api/logic/order/OrderLogic.php +++ b/app/api/logic/order/OrderLogic.php @@ -546,6 +546,9 @@ class OrderLogic extends BaseLogic if (empty($order)) { throw new BusinessException('订单不存在'); } + if ($order['paid'] != 1) { + throw new BusinessException('订单未支付'); + } Db::startTrans(); try { StoreOrder::update([ diff --git a/app/common/logic/PayNotifyLogic.php b/app/common/logic/PayNotifyLogic.php index 58069b0e..47d62a75 100644 --- a/app/common/logic/PayNotifyLogic.php +++ b/app/common/logic/PayNotifyLogic.php @@ -2,6 +2,7 @@ namespace app\common\logic; +use app\admin\logic\product_source_link\ProductSourceLinkLogic; use app\admin\logic\store_product\StoreProductLogic; use app\admin\logic\user_ship\UserShipLogic; use app\api\logic\order\OrderLogic; @@ -16,6 +17,7 @@ use app\common\model\dict\DictType; use app\common\model\finance\CapitalFlow; use app\common\model\finance\PayNotifyLog; use app\common\model\pay\PayNotify; +use app\common\model\product_source_link_info\ProductSourceLinkInfo; use app\common\model\store_branch_product\StoreBranchProduct; use app\common\model\store_cash_finance_flow\StoreCashFinanceFlow; use app\common\model\store_finance_flow\StoreFinanceFlow; @@ -639,6 +641,16 @@ class PayNotifyLogic extends BaseLogic 'sales' => bcadd($branchProduct['sales'], $v['cart_num'], 2) ], ['id' => $branchProduct['id']]); SqlChannelLog('StoreBranchProduct', $branchProduct['id'], $v['cart_num'], -1, Request()->url()); + ProductSourceLinkLogic::outbound([ + 'product' => [ + 'product_id' => $v['product_id'], + 'nums' => $v['cart_num'], + ], + 'is_store_order' => true, + 'store_id' => $v['store_id'], + 'link_id' => $v['id'], + 'types' => ProductSourceLinkInfo::TypeOrder, + ]); } else { StoreProductLogic::ordinary(['id' => $v['product_id']], $v['store_id'], 0, $storeProduct); StoreBranchProduct::update([ diff --git a/app/common/model/product_source_link/ProductSourceLink.php b/app/common/model/product_source_link/ProductSourceLink.php new file mode 100644 index 00000000..bd816d8e --- /dev/null +++ b/app/common/model/product_source_link/ProductSourceLink.php @@ -0,0 +1,37 @@ +hasOne(StoreProduct::class, 'id', 'product_id')->bind(['product_name' => 'store_name', 'image']); + } + + public function warehouse(){ + return $this->hasOne(Warehouse::class, 'id', 'warehouse_id')->bind(['warehouse_name'=>'name']); + } + + public function purchase(){ + return $this->hasOne(DeliveryService::class, 'uid', 'purchase_uid')->bind(['purchase_nickname'=>'nickname']); + } +} \ No newline at end of file diff --git a/app/common/model/product_source_link_info/ProductSourceLinkInfo.php b/app/common/model/product_source_link_info/ProductSourceLinkInfo.php new file mode 100644 index 00000000..ac333e84 --- /dev/null +++ b/app/common/model/product_source_link_info/ProductSourceLinkInfo.php @@ -0,0 +1,53 @@ + '仓库入库', + self::TypeOut => '仓库出库', + self::TypeStoreIn => '门店入库', + self::TypeStoreOut => '门店退库', + self::TypeOrder => '订单出库', + self::TypeOrderRefund => '订单退货入库', + self::TypeS2W => '门店调拨至仓库', + self::TypeS2S => '门店调拨至门店', + self::TypeW2W => '仓库调拨至仓库', + ]; + return $typeMap[$this->getAttr('types')]; + } + + public function product() + { + return $this->hasOne(StoreProduct::class, 'id', 'product_id')->bind(['product_name' => 'store_name', 'image']); + } + +} \ No newline at end of file