mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-24 03:15:32 +08:00
79 lines
2.2 KiB
PHP
79 lines
2.2 KiB
PHP
<?php
|
|
/**
|
|
* Copyright 2012-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 xiayuanjun<xiayuanjun@shopex.cn>
|
|
* @version 0.1
|
|
*/
|
|
class erpapi_invoice_response_redapply extends erpapi_invoice_response_abstract
|
|
{
|
|
|
|
/**
|
|
* status_update
|
|
* @param mixed $params 参数
|
|
* @return mixed 返回值
|
|
*/
|
|
|
|
public function status_update($params)
|
|
{
|
|
$invoice = $params['invoice'];
|
|
|
|
$this->__apilog['title'] = '红字申请单更新-' . $invoice['invoice_apply_bn'];
|
|
$this->__apilog['original_bn'] = $invoice['invoice_apply_bn'] ?: $invoice['order_bn'];
|
|
|
|
// 参数校验
|
|
$checkRs = $this->_checkUpdateParams($params);
|
|
|
|
if (!$checkRs) {
|
|
return false;
|
|
}
|
|
|
|
// 参数格式化
|
|
$data = $this->_formatUpdateParams($params);
|
|
|
|
return $data;
|
|
}
|
|
|
|
protected function _formatUpdateParams($params)
|
|
{
|
|
$invoice = $params['invoice'];
|
|
$data = $params['data'];
|
|
|
|
$response = $data['response'][0];
|
|
|
|
$updateData = [
|
|
'invoice_apply_bn' => $invoice['invoice_apply_bn'],
|
|
'status' => (int)$response['confirmState'],// 状态匹配
|
|
'id' => $invoice['id'],
|
|
'item_id' => $invoice['order_electronic_items']['item_id'],
|
|
'red_confirm_uuid' => $response['redConfirmUuid'],
|
|
'red_confirm_no' => $response['redConfirmNo'],
|
|
];
|
|
|
|
return $updateData;
|
|
}
|
|
|
|
protected function _checkUpdateParams($params)
|
|
{
|
|
if (!is_array($params) && !isset($params['response'])) {
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
}
|