Files
OMS/app/ome/lib/print/tmpl/logi/dangdang.php
2025-12-28 23:13:25 +08:00

39 lines
1.0 KiB
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.
*/
class ome_print_tmpl_logi_dangdang extends ome_print_tmpl_express{
/**
* __construct
* @param mixed $controller controller
* @return mixed 返回值
*/
public function __construct($controller){
$this->smarty = $controller;
}
public function setParams( $params = array() ){
$message['tip1'] = '您现在使用的是 "当当代发物流" 模式,系统将自动将“当当订单号”作为“当当代发物流”的物流单号。';
$message['tip2'] = '正式面单请使用“当当后台”进行打印。';
$message['tip3'] = '在校验、发货 时,请扫描“当当后台”打印的面单,继续完成发货流程!';
$this->smarty->pagedata['message'] = $message;
return $this;
}
/**
* 获取Tmpl
* @return mixed 返回结果
*/
public function getTmpl(){
$this->smarty->singlepage("admin/delivery/express_printbyshipping.html");
}
}