wangtengyu
2018-12-07 f459412e0dac4ed94106da043b4c6f8576bfe496
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php
 
/**
 * 上传扫描数据
*/
 
define('IN_ECS', true);
 
require(dirname(__FILE__) . '/includes/init.php');
 
if ((DEBUG_MODE & 2) != 2)
{
    $smarty->caching = true;
}
assign_template();
$value = '';
if(isset($_SESSION['saodata'])){
    $value = implode("\n",$_SESSION['saodata'])."\n";
}
$smarty->assign('textvalue',$value);
$smarty->assign('page_title', '智能扫货');    // 页面标题
 
$smarty->display('scan.dwt');
 
?>