mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-31 21:25:33 +08:00
37 lines
1.1 KiB
PHP
37 lines
1.1 KiB
PHP
<?php
|
|
/**
|
|
* Copyright 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.
|
|
*/
|
|
|
|
/**
|
|
* 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;
|
|
} |