Files
OMS/app/wms/lib/receipt/purchase.php
2025-12-28 23:13:25 +08:00

49 lines
866 B
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 wms_receipt_purchase{
private static $status = array(
);
/**
*
* 采购通知单创建方法
* @param array $data 采购通知单数据信息
*/
public function create(&$data){
}
/**
*
* 采购通知单状态变更
* @param array $po_bn 采购单编号
*/
public function updateStatus($po_bn){
}
/**
*
* 检查采购通知单是否存在判断
* @param array $po_bn 采购单编号
*/
public function checkExist($po_bn){
return true;
}
/**
*
* 检查采购通知单是否有效
* @param array $po_bn 采购单编号
*/
public function checkValid($po_bn){
return true;
}
}