Files
OMS/app/erpapi/lib/wms/response/stock.php
2025-12-28 23:13:25 +08:00

114 lines
4.6 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
/**
* Copyright © ShopeX http://www.shopex.cn. All rights reserved.
* See LICENSE file for license details.
*/
class erpapi_wms_response_stock extends erpapi_wms_response_abstract
{
/**
* wms.stock.quantity
*
**/
public function quantity($params){
$this->__apilog['title'] = $this->__channelObj->wms['channel_name'] . '库存异动';
$open = app::get('ome')->getConf('wms.stock.quantity.open');
if($open == 'false') {
$this->__apilog['result']['msg'] = '未开启';
return false;
}
$data = array();
$stock_items = array();
$items = $params['item'] ? json_decode($params['item'], true) : array();
//接口字段映射配置处理
//例如:$mapper_config['content'] = '{"warehouse":"{{warehouse}}-{{product_code}}"}';
$channel_id = $this->__channelObj->wms['channel_id'];
$channel_type = $this->__channelObj->wms['channel_type'];
// 查询接口字段映射配置
$mapper_model = app::get('desktop')->model('interfacefield_mapper');
$mapper_config = $mapper_model->getMapperByChannel($channel_id, $channel_type, 'stockchange_report');
// 先处理items中的字段映射
if ($mapper_config && $mapper_config['content']) {
$content = json_decode($mapper_config['content'], true);
if ($content && $items) {
foreach ($items as $key => $item) {
// 保存原始数据
$original_item = $item;
// 先处理常规字段映射
foreach ($content as $field_name => $template) {
if (isset($item[$field_name])) {
$processed_value = $this->processTemplateVariables($template, $item);
$item[$field_name] = $processed_value;
}
}
// 特殊处理残次商品重置warehouse值使用原始数据
if (isset($item['inventoryType']) && $item['inventoryType'] != 'ZP' && isset($content['warehouse_inventoryType'])) {
$processed_value = $this->processTemplateVariables($content['warehouse_inventoryType'], $original_item);
$item['warehouse'] = $processed_value;
}
// 更新items数组
$items[$key] = $item;
}
}
}
if($items){
$data['order_code'] = $items[0]['order_code'];
foreach($items as $key=>$val) {
$stock_items[] = array(
'order_code' => $val['order_code'],
'order_type' => $val['orderType'],
'batch_code' => $val['batch_code'],
'warehouse' => $val['warehouse'],
'product_bn' => $val['product_bn'],
'normal_num' => $val['normal_num'],
'defective_num' => $val['defective_num'],
'wms_item_id' => $val['item_id'],
'product_date' => $val['productDate'],
'produce_code' => $val['produceCode'],
'expire_date' => $val['expireDate'],
'change_time' => $val['changeTime'],
'sn_list' => $val['sn_list'] ? json_encode($val['sn_list'], JSON_UNESCAPED_UNICODE) : '',
'wms_node_id' => $this->__channelObj->wms['node_id'],
);
}
}
$this->__apilog['original_bn'] = $data['order_code'];
$data['items'] = $stock_items;
return $data;
}
/**
* 处理模板变量
*
* @param string $template 模板字符串
* @param array $data 数据数组
* @return string 处理后的字符串
*/
private function processTemplateVariables($template, $data)
{
// 使用正则表达式匹配所有 {{variable}} 格式的变量
$pattern = '/\{\{([^}]+)\}\}/';
return preg_replace_callback($pattern, function($matches) use ($data) {
$variable_name = $matches[1];
// 直接使用变量名作为字段名,保持与$val中的key一致
// 如果数据中存在该字段,返回其值,否则返回原始变量名
return isset($data[$variable_name]) ? $data[$variable_name] : $matches[0];
}, $template);
}
}