Files
OMS/app/invoice/lib/order/front/abstract.php
2025-12-28 23:13:25 +08:00

15 lines
386 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.
*/
abstract class invoice_order_front_abstract {
#获取主表特殊信息
abstract public function getMain($main);
#获取明细信息
abstract public function getItems($main);
#人工操作
abstract public function operateTax($arr);
}