Files
OMS/app/ome/lib/order/bool/extendstatus.php
2025-12-28 23:13:25 +08:00

26 lines
653 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.
*/
/**
* Created by PhpStorm.
* User: yaokangming
* Date: 2018/9/14
* Time: 10:06
*/
class ome_order_bool_extendstatus
{
#是否修改订单地址
const __MODIFY_ADDRESS = 0x0001;
#是否编辑过商品 或 修改订单折扣金额
const __GOODS_PRICE = 0x0002;
#是否修改了配送费
const __MODIFY_SHIPPING = 0x0004;
#是否导出过了订单信息
const __EXPORT_ORDER = 0x0008;
#是否需要更换sku
const __UPDATESKU_ORDER = 0x10000;
}