bhq@iemsoft.cn
2018-11-27 e2b48dac099e43f4b3243cdf19a7522e4b5eccbe
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title></title>
<meta name="robots" content="noindex, nofollow">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="Cache-Control" content="public">
{insert_scripts files="../js/utils.js"}
<style type="text/css">
body
{
  background-color: #ffffff;
  padding: 0px;
  margin: 0px;
  text-align:left;
}
.table_box
{
  table-layout: fixed;
  text-align:center;
}
.display_no
{
  display:none;
}
</style>
</head>
<body id="print">
<!--打印区 start-->
 
 
<!--打印区 end-->
</body>
</html>
{if $print_part != 1}
<script type="text/javascript">
<!--
onload = function()
{
  _create_shipping_print();
}
 
/**
 * 创建快递单打印内容
 */
function _create_shipping_print()
{
  //创建快递单
  var print_bg = _create_print_bg();
 
  //创建文本
  var config_lable = '{$shipping.config_lable}';
 
  var lable = config_lable.split("||,||");
 
  if (lable.length <= 0)
  {
    return false; //未设置打印内容
  }
 
  for (var i = 0; i < lable.length; i++)
  {
    //获取标签参数
    var text = lable[i].split(",");
    if (text.length <= 0 || text[0] == null || typeof(text[0]) == "undefined" || text[0] == '')
    {
      continue;
    }
 
    text[4] -= 10;
    text[5] -= 10;
 
    _create_text_box(print_bg, text[0], text[1], text[2], text[3], text[4], text[5]);
  }
}
 
/**
 * 创建快递单背景
 */
function _create_print_bg()
{
  var print_bg = document.createElement('div');
 
  print_bg.setAttribute('id', 'print_bg');
 
  var print = document.getElementById('print');
 
  print.appendChild(print_bg);
 
  //测试打印效果
  //print_bg.style.background = '{$shipping.print_bg}';
 
  //设置快递单样式
  print_bg.style.width = '{$shipping.print_bg_size.width}px';
  print_bg.style.height = '{$shipping.print_bg_size.height}px';
  print_bg.style.zIndex = 1;
  print_bg.style.border = "solid 1px #FFF";
  print_bg.style.padding = "0";
  print_bg.style.position = "relative";
  print_bg.style.margin = "0";
 
  return print_bg;
}
 
/**
 * 创建快递单文本
 */
function _create_text_box(print_bg, id, text_content, text_width, text_height, x, y)
{//alert(id + '|' + text_content + '|' + text_width + '|' + text_height + '|' + x + '|' + y);
  var text_box = document.createElement('div');
 
  //设置属性
  text_box.setAttribute('id', id);
 
  print_bg.appendChild(text_box);
 
  //设置样式
  text_box.style.width = text_width + "px";
  text_box.style.height = text_height + "px";
  text_box.style.border = "0";
  text_box.style.padding = "0";
  text_box.style.margin = "0 auto";
 
  text_box.style.position = "absolute";
  text_box.style.top = y + "px";
  text_box.style.left = x + "px";
 
  text_box.style.wordBreak = 'break-all'; //内容自动换行 严格断字
  text_box.style.textAlign = 'left';
 
  //赋值
  text_box.innerHTML = text_content;
 
  return true;
}
//-->
</script>
{/if}