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