mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-30 21:15:34 +08:00
75 lines
2.7 KiB
PHP
75 lines
2.7 KiB
PHP
<?php
|
|
/**
|
|
* Copyright 2026 ShopeX (https://www.shopex.cn)
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
/**
|
|
* @author ykm 2019/4/22
|
|
* @describe 待寻仓订单
|
|
*/
|
|
class erpapi_shop_response_process_branch {
|
|
|
|
/**
|
|
* wait
|
|
* @param mixed $params 参数
|
|
* @return mixed 返回值
|
|
*/
|
|
|
|
public function wait($params) {
|
|
$rsp = array('rsp'=>'succ', 'msg'=>'处理成功');
|
|
|
|
if($params['order_wait']) {
|
|
if($params['status'] == $params['order_wait']['status']) {
|
|
$rsp['msg'] = '状态一致不需更新';
|
|
return $rsp;
|
|
}
|
|
$owId = $params['order_wait']['ow_id'];
|
|
$upData = array(
|
|
'status' => $params['status'],
|
|
'last_modified' => $params['last_modified']
|
|
);
|
|
if($params['status_remark']) {
|
|
$statusRemark = $params['order_wait']['status_remark'] . ',' . $params['status'] . ':' . $params['status_remark'];
|
|
$upData['status_remark'] = $statusRemark;
|
|
}
|
|
app::get('purchase')->model('order_wait')->update($upData, array('ow_id'=>$owId));
|
|
if($upData == 'JIT') {
|
|
kernel::single('purchase_branch_freeze')->delete($owId);
|
|
}
|
|
$operateLog = app::get('ome')->model('operation_log');
|
|
$operateLog->write_log('purchase_order_wait@purchase',$owId,'更新成功:' . $upData['status']);
|
|
} else {
|
|
$items = $params['items']; unset($params['items']);
|
|
|
|
$params['status_remark'] = $params['status'] . ':' . $params['status_remark'];
|
|
$params['create_time'] = time();
|
|
|
|
$owId = app::get('purchase')->model('order_wait')->insert($params);
|
|
|
|
if (!$owId) return array('rsp'=>'fail', 'msg'=>'新建失败');
|
|
|
|
foreach ($items as $val) {
|
|
$val['ow_id'] = $owId;
|
|
app::get('purchase')->model('order_wait_items')->insert($val);
|
|
}
|
|
|
|
$operateLog = app::get('ome')->model('operation_log');
|
|
$operateLog->write_log('purchase_order_wait@purchase',$owId,'新建成功');
|
|
}
|
|
|
|
kernel::single('purchase_branch')->feedbackDelivery($owId);
|
|
|
|
return $rsp;
|
|
}
|
|
} |