Files
huangjingfen/pro_v3.5.1/app/controller/erp/Order.php
panchengyong c1e74d8e68 chore(php): 统一 ScottPan 文件头与注释域名替换
- 按 docs/renew-code-comment.md 将 PHP 文件头改为带边框的 Author 注释\n- 注释中的 crmeb.com 替换为 uj345.cn(代码字符串中的外链未改)\n- 新增 docs/renew-code-comment.md 说明

Made-with: Cursor
2026-03-29 11:22:58 +08:00

87 lines
2.4 KiB
PHP

<?php
// +----------------------------------------------------------------------
// | Author: ScottPan Team
// +----------------------------------------------------------------------
namespace app\controller\erp;
use app\Request;
use app\services\erp\OrderServices;
use think\annotation\Inject;
use think\facade\Log;
class Order
{
/**
* @var OrderServices
*/
#[Inject]
protected OrderServices $services;
/**
* 订单发货回调
* @return mixed
*/
public function deliverCallback(Request $request)
{
$data = $request->postMore([
['type', 1],
['logistics_company', ''], //快递公司名称
['l_id', ''], // 快递单号
['lc_id', ''], // 快递公司编码
['o_id', ''], // 内部订单号
['so_id', ''], // 线上单号
['send_date', ''], // 发货时间
['items', []], // 商品列表
]);
Log::info(json_encode(['data' => json_encode($data), 'type' => 'deliverCallback']));
if (sys_config('erp_open')) {
$this->services->deliverCallback($data);
}
return app('json')->success();
}
/**
* 订单取消回调
* @return mixed
*/
public function cancelCallback(Request $request)
{
$data = $request->postMore([
['so_id', 0],
['remark', ''],
]);
Log::info(json_encode(['data' => json_encode($data), 'type' => 'cancelCallback']));
if (sys_config('erp_open')) {
$this->services->cancelCallback($data);
}
return app('json')->success();
}
/**
* 售后收货回调
* @return mixed
*/
public function receiveCallback(Request $request)
{
$data = $request->postMore([
['so_id', 0],
['shop_id', 0], // 店铺ID
['action_name', ''], // 操作类型
['as_id', 0], // 售后单号
['o_id', 0], // 内部单号
['outer_as_id', ''], // 外部售后单号
['remark', ''],
['items', []], // 商品列表
]);
Log::info(json_encode(['data' => json_encode($data), 'type' => 'receiveCallback']));
if (sys_config('erp_open')) {
$this->services->receivedCallback($data, 1, true);
}
return app('json')->success();
}
}