Initial commit: queue workspace
Made-with: Cursor
This commit is contained in:
82
pro_v3.5.1/app/controller/erp/Product.php
Normal file
82
pro_v3.5.1/app/controller/erp/Product.php
Normal file
@@ -0,0 +1,82 @@
|
||||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | Copyright (c) 2016~2026 https://www.crmeb.com All rights reserved.
|
||||
// +----------------------------------------------------------------------
|
||||
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
||||
// +----------------------------------------------------------------------
|
||||
// | Author: CRMEB Team <admin@crmeb.com>
|
||||
// +----------------------------------------------------------------------
|
||||
namespace app\controller\erp;
|
||||
|
||||
use app\jobs\product\ProductSyncErp;
|
||||
use app\Request;
|
||||
use crmeb\services\erp\Erp as ErpServices;
|
||||
use crmeb\services\erp\storage\jushuitan\Product as ProductService;
|
||||
use think\annotation\Inject;
|
||||
use think\Response;
|
||||
|
||||
/**
|
||||
* 商品类
|
||||
* Class Product
|
||||
* @package app\controller\erp
|
||||
*/
|
||||
class Product
|
||||
{
|
||||
|
||||
/**
|
||||
* @var ErpServices|\crmeb\services\erp\storage\jushuitan\Comment|\crmeb\services\erp\storage\jushuitan\Order|ProductService|\crmeb\services\erp\storage\jushuitan\Stock
|
||||
*/
|
||||
#[Inject]
|
||||
protected ErpServices $services;
|
||||
|
||||
|
||||
/**
|
||||
* 使用spu同步商品
|
||||
* @param Request $request
|
||||
* @return mixed
|
||||
* @throws \Exception
|
||||
*/
|
||||
public function syncProduct(Request $request)
|
||||
{
|
||||
[$spuStr] = $request->getMore([
|
||||
['spu_str', ''],
|
||||
], true);
|
||||
|
||||
if (empty($spuStr)) {
|
||||
return app('json')->fail('请输入ERP商品SPU');
|
||||
}
|
||||
$spuArr = explode(',', $spuStr);
|
||||
foreach ($spuArr as $item) {
|
||||
// 获取商品
|
||||
// ProductSyncErp::dispatchDo('productFromErp', [$item]);
|
||||
}
|
||||
return app('json')->success('正在同步中,请稍后查看');
|
||||
}
|
||||
|
||||
/**
|
||||
* 使用sku同步库存
|
||||
* @param Request $request
|
||||
* @return mixed
|
||||
* @throws \Exception
|
||||
*/
|
||||
public function syncStock(Request $request)
|
||||
{
|
||||
[$ids] = $request->getMore([
|
||||
['ids', ''],
|
||||
], true);
|
||||
|
||||
if (empty($ids)) {
|
||||
return app('json')->fail('请选择商品');
|
||||
}
|
||||
|
||||
$idArr = stringToIntArray($ids);
|
||||
$data = array_chunk($idArr, 1);
|
||||
foreach ($data as $item) {
|
||||
// 获取库存
|
||||
// ProductSyncErp::dispatchDo('stockFromErp', [$item]);
|
||||
}
|
||||
return app('json')->success('正在同步中,请稍后查看');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user