mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-24 03:15:32 +08:00
73 lines
2.2 KiB
PHP
73 lines
2.2 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.
|
|
*/
|
|
|
|
/**
|
|
* 定义一些常量
|
|
*
|
|
* @author hzjsq@msn.com
|
|
* @version 0.1
|
|
*/
|
|
|
|
class omeauto_auto_const {
|
|
|
|
//有未付订单
|
|
const __PAY_CODE = 0x00000001;
|
|
//备注和留言
|
|
const __FLAG_CODE = 0x00000002;
|
|
//物流公司标记
|
|
const __LOGI_CODE = 0x00000004;
|
|
//产品不匹配
|
|
const __PRODUCT_CODE = 0x00000008;
|
|
//用户多订单
|
|
const __MEMBER_CODE = 0x00000010;
|
|
//乡村物流标记
|
|
const __LOGI_LITE_CODE = 0x00000020;
|
|
//单订单
|
|
const __SINGLE_CODE = 0x00000040;
|
|
//多订单
|
|
const __MUTI_CODE = 0x00000080;
|
|
//仓库
|
|
const __BRANCH_CODE = 0x00000100;
|
|
//库存
|
|
const __STORE_CODE = 0x00000200;
|
|
//异常
|
|
const __ABNORMAL_CODE = 0x00000400;
|
|
//单订单且有备注
|
|
const __EXAMINE_CODE = 0x00000800;
|
|
//超卖订单
|
|
const __OVERSOLD_CODE = 0x00001000;
|
|
//淘宝订单优惠中有赠品信息
|
|
const __PMTGIFT_CODE = 0x00002000;
|
|
const __COMBINE_CODE = 0x00004000;
|
|
//CRM赠品信息
|
|
const __CRMGIFT_CODE = 0x00008000;
|
|
//检测订单是否开发票
|
|
const __TAX_CODE = 0x00010000;
|
|
//检查拆单次数
|
|
const __ROUTER_CODE = 0x00020000;
|
|
//检查物流到不到
|
|
const _LOGIST_ARRIVED = 0x00040000;
|
|
//检查拆单
|
|
const _SPLIT_CODE = 0x00080000;
|
|
//检查赠品拆分
|
|
const __CHECKSPLITGIFT_CODE = 0x00200000;
|
|
//0x00100000 为 提醒代码
|
|
//检查推荐
|
|
const _RECLOGI_CODE = 0x00400000;
|
|
//退款状态查询
|
|
const _REFUNDSTATUS_CODE = 0x00800000;
|
|
} |