mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-22 18:35:35 +08:00
32 lines
654 B
PHP
32 lines
654 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
/**
|
||
*关联快递单号规则处理类
|
||
*
|
||
* @author sunjing<sunjing@shopex.cn>
|
||
* @version 2013-1-15 15:01
|
||
*/
|
||
class ome_print_logicfg{
|
||
|
||
function __construct(&$app)
|
||
{
|
||
$this->app = $app;
|
||
}
|
||
|
||
|
||
function getLogiCfg(){
|
||
$params=array(
|
||
'POSTB'=>array(0=>'第一代',1=>'第二代(末位自增)'),
|
||
'EMS'=>array(0=>'13年2月1号之前面单',1=>'13年2月1号之后面单'),
|
||
'ZJS'=>array(0=>'旧版',1=>'新版'),
|
||
);
|
||
return $params;
|
||
|
||
}
|
||
}
|
||
|
||
?>
|