Files
huangjingfen/pro_v3.5.1/app/controller/erp/Order.php

92 lines
2.8 KiB
PHP
Raw Normal View History

2026-03-07 22:29:07 +08:00
<?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\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();
}
}