mirror of
https://gitee.com/ShopeX/OMS
synced 2026-04-03 14:15:46 +08:00
97 lines
2.8 KiB
PHP
97 lines
2.8 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.
|
|
*/
|
|
|
|
/**
|
|
* 按基础物料分类
|
|
*/
|
|
class omeauto_order_label_materialcat extends omeauto_order_label_abstract implements omeauto_order_label_interface
|
|
{
|
|
/**
|
|
* 检查订单数据是否符合要求
|
|
*
|
|
* @param array $orderInfo
|
|
* @param string $error_msg
|
|
* @return bool
|
|
*/
|
|
public function vaild($orderInfo, &$error_msg=null)
|
|
{
|
|
if(empty($this->content)){
|
|
$error_msg = '没有设置基础物料类型规则';
|
|
return false;
|
|
}
|
|
|
|
$basicMaterialObj = app::get('material')->model('basic_material');
|
|
|
|
|
|
//包含或不包含基础物料分类:大家电、小家电
|
|
|
|
|
|
|
|
|
|
|
|
//基础物料类型
|
|
$material_type = intval($this->content['material_type']);
|
|
|
|
//获取订单明细中的基础物料
|
|
$arrProductId = array();
|
|
foreach ($orderInfo['order_objects'] as $objKey => $objVal)
|
|
{
|
|
//check
|
|
if(empty($objVal['order_items'])){
|
|
continue;
|
|
}
|
|
|
|
//items
|
|
foreach ($objVal['order_items'] as $itemKey => $itemVal)
|
|
{
|
|
//check
|
|
if($itemVal['delete'] == 'true'){
|
|
continue;
|
|
}
|
|
|
|
$product_id = $itemVal['product_id'];
|
|
$arrProductId[$product_id] = $product_id;
|
|
}
|
|
}
|
|
|
|
//check没有item明细
|
|
if(empty($arrProductId)){
|
|
$error_msg = '订单没有基础物料明细';
|
|
return false;
|
|
}
|
|
|
|
//获取虚拟商品
|
|
$virtualBns = array();
|
|
$tempList = $basicMaterialObj->getList('bm_id,material_bn,type', array('bm_id'=>$arrProductId));
|
|
foreach ($tempList as $key => $val)
|
|
{
|
|
$bm_id = $val['bm_id'];
|
|
|
|
//check
|
|
if($val['type'] == $material_type){
|
|
$virtualBns[$bm_id] = $val['material_bn'];
|
|
}
|
|
}
|
|
|
|
if(empty($virtualBns)){
|
|
$error_msg = '没有符合条件的基础物料';
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
} |