mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-23 02:45:33 +08:00
119 lines
3.5 KiB
PHP
119 lines
3.5 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 console_service_commonstock{
|
|
|
|
function iscancel($io_bn, $is_vop=false){
|
|
|
|
if($is_vop)
|
|
{
|
|
$prefix = substr( $io_bn, 0, 3);//唯品会code是vop三个字母
|
|
}
|
|
else
|
|
{
|
|
$prefix = substr( $io_bn, 0, 1);
|
|
}
|
|
|
|
$io_bn = $io_bn;
|
|
$prefix = substr( $io_bn, 0, 1 );
|
|
$type_id = $this->get_stocktype($prefix);
|
|
switch($type_id){
|
|
case '1':#采购
|
|
$result = kernel::single('console_receipt_purchase')->checkExist($io_bn);
|
|
if ($result['po_status'] == '2'){
|
|
return true;
|
|
}else{
|
|
return false;
|
|
}
|
|
break;
|
|
case '10':#采购退货
|
|
$result = kernel::single('console_receipt_purchasereturn')->checkExist($io_bn);
|
|
if ($result['return_status'] == '3'){
|
|
return true;
|
|
}else{
|
|
return false;
|
|
}
|
|
break;
|
|
case '30':#退货入库
|
|
break;
|
|
case '31':#换货入库
|
|
break;
|
|
case '4':#调拨入库
|
|
//break;
|
|
case '40':#调拨出库
|
|
//break;
|
|
case '5':#残损出库
|
|
//break;#
|
|
case '50':#残损入库
|
|
case '7':#直接出库
|
|
|
|
case '70':#直接入库
|
|
|
|
case '100':#赠品出库
|
|
|
|
case '200':#赠品入库
|
|
|
|
case '300':#样品出库
|
|
|
|
case '400':#样品入库
|
|
$result = kernel::single('console_receipt_stock')->checkExist($io_bn);
|
|
if ($result['iso_status'] == '4'){
|
|
return true;
|
|
}else{
|
|
return false;
|
|
}
|
|
break;
|
|
case '500':#转储出库
|
|
|
|
case '600':#转储入库
|
|
$result = kernel::single('console_receipt_stockdump')->checkExist($io_bn);
|
|
if ($result['self_status'] == '0'){
|
|
return true;
|
|
}else{
|
|
return false;
|
|
}
|
|
case '6':#盘亏
|
|
break;
|
|
case '60':#盘盈
|
|
break;
|
|
case '900':#唯品会出库
|
|
break;
|
|
}
|
|
|
|
}
|
|
|
|
function get_stocktype($prefix){
|
|
#根据前缀区分类型
|
|
$iostock_types = kernel::single('siso_receipt_iostock')->_iostock_types;
|
|
|
|
foreach($iostock_types as $ik=>$iv){
|
|
|
|
if ($iv['code'] == $prefix){
|
|
|
|
$type_id = $ik;
|
|
break;
|
|
}
|
|
}
|
|
return $type_id;
|
|
}
|
|
|
|
}
|
|
|
|
?>
|