From 4d89794a05ae21a0a3c63df49c1d0d63f76a7a41 Mon Sep 17 00:00:00 2001 From: lewis <604446095@qq.com> Date: Mon, 17 Mar 2025 16:40:34 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=87=BA=E5=85=A5=E5=BA=93?= =?UTF-8?q?=E8=A1=A5=E5=8D=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/admin/controller/LocalController.php | 60 +++++++++++++++++++++++- 1 file changed, 59 insertions(+), 1 deletion(-) diff --git a/app/admin/controller/LocalController.php b/app/admin/controller/LocalController.php index c94abfbe..ea1353bf 100644 --- a/app/admin/controller/LocalController.php +++ b/app/admin/controller/LocalController.php @@ -3,14 +3,19 @@ namespace app\admin\controller; use app\admin\logic\beforehand_order_cart_info\BeforehandOrderCartInfoLogic; +use app\admin\logic\product_source_link\ProductSourceLinkLogic; use app\common\model\beforehand_order\BeforehandOrder; use app\common\model\beforehand_order_cart_info\BeforehandOrderCartInfo; use app\common\model\CeshiCopy; +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_category\StoreCategory; use app\common\model\store_product\StoreProduct; use app\common\model\store_product_group_price\StoreProductGroupPrice; use app\common\model\StoreProductPriceList; +use app\common\model\warehouse_order\WarehouseOrder; +use app\common\model\warehouse_product\WarehouseProduct; use PhpOffice\PhpSpreadsheet\IOFactory; use support\exception\BusinessException; use support\Redis; @@ -19,7 +24,60 @@ use think\facade\Db; class LocalController extends BaseAdminController { - public $notNeedLogin = ['activityPrice', 'searchProduct', 'setPrice', 'index', 'updateProductPriceList', 'importOrder']; + public $notNeedLogin = ['activityPrice', 'searchProduct', 'setPrice', 'index', 'updateProductPriceList', 'importOrder', 'warehousing', 'outbound']; + + public $ids = [1829,1828,1827,1826,1825,1824,1823,1821,1820,1814,1813,1811,1810,1809,1808,1807,1806,1800,1799,1798,1796,1795,1794,1793,1792,1791,1790,1789,1788,1787,1786,1785,1784,1783,1782,1781,1780,1779,1778,1777,1776,1775,1774,1773,1772,1771,1770,1768,1765,1764,1763,1762,1761,1760,1759,1758,1757,1756,1755,1754,1753,1752,1751,1750,1749,1748,1747,1746,1745,1744,1743,1742,1741,1740,1739,1738,1737,1736,1735,1733,1732,1731,1730,1729,1728,1727,1726,1725,1724,1723,1722,1720,1719,1718,1717,1716,1715,1714,1713,1712,1711,1710,1709,1708,1707,1706,1705,1704,1703,1701,1700,1699,1698,1697,1696,1695,1694,1693,1692,1691,1690,1689,1688,1687,1686,1685,1684,1683,1682,1681,1680,1679,1678,1677,1676,1675,1674,1673,1672,1671,1670,1668,1667,1666,1665,1664,1663,1660,1659,1658,1657,1656,1655,1654,1652,1651,1650,1649,1648,1647,1646,1645,1644,1643,1642,1641,1640,1639,1638,1637,1636,1635,1634,1633,1632,1631,1630,1629,1628,1627,1626,1623,1622]; + + public function warehousing() + { + $warehousingIds = BeforehandOrder::whereIn('id', $this->ids)->where('warehousing_id', '>', 0)->column('warehousing_id'); + $warehouseOrders = WarehouseOrder::field('id,warehouse_id')->whereIn('id', $warehousingIds)->where('financial_pm', 1)->select()->toArray(); + $productSourceLinkInfo = []; + foreach ($warehouseOrders as $order) { + $products = WarehouseProduct::field('id,product_id,nums,purchase')->where('oid', $order['id'])->select()->toArray(); + foreach ($products as $product) { + $productSourceLink = ProductSourceLink::where('product_id', $product['product_id'])->where('purchase_uid', 20)->where('warehouse_id', $order['warehouse_id'])->find(); + if (empty($productSourceLink)) { + $productSourceLink = new ProductSourceLink(); + $productSourceLink->product_id = $product['product_id']; + $productSourceLink->purchase_uid = 20; + $productSourceLink->warehouse_id = $order['warehouse_id']; + $productSourceLink->save(); + } + + $productSourceLinkInfo[] = [ + 'oid' => $productSourceLink['id'], + 'product_id' => $product['product_id'], + 'warehouse_id' => $order['warehouse_id'], + 'nums' => $product['nums'], + 'current_nums' => $product['nums'], + 'types' => ProductSourceLinkInfo::TypeIn, + 'link_id' => $product['id'], + 'price' => $product['purchase'], + 'total_price' => bcmul($product['purchase'], $product['nums'], 2), + 'create_time' => time(), + ]; + } + } + (new ProductSourceLinkInfo())->insertAll($productSourceLinkInfo); + } + + public function outbound() + { + $warehousingIds = BeforehandOrder::whereIn('id', $this->ids)->where('outbound_id', '>', 0)->column('outbound_id'); + $warehouseOrders = WarehouseOrder::field('id,warehouse_id,store_id')->whereIn('id', $warehousingIds)->where('financial_pm', 0)->select()->toArray(); + foreach ($warehouseOrders as $order) { + $products = WarehouseProduct::field('id,product_id,nums,purchase')->where('oid', $order['id'])->select()->toArray(); + foreach ($products as $product) { + ProductSourceLinkLogic::outbound([ + 'product' => ['product_id' => $product['product_id'], 'nums' => $product['nums']], + 'warehouse_id' => $order['warehouse_id'], + 'store_id' => $order['store_id'], + 'link_id' => $product['id'], + ]); + } + } + } public function activityPrice() {