PrintingReceiptHeader.js
7.81 KB
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
layui.config({
base: "/js/"
}).use(['form', 'element', 'vue', 'layer', 'laydate', 'jquery', 'table', 'hhweb', 'utils', 'Universal', 'JsBarcode', 'jqprint'], function () {
var form = layui.form,
layer = layui.layer,
element = layui.element,
laydate = layui.laydate,
$ = layui.jquery,
table = layui.table,
hhweb = layui.hhweb,
Universal = layui.Universal;
var JsBarcode = layui.JsBarcode;
var jqprint = layui.jqprint;
var AreaName = 'receipt';
var TableName = 'ReceiptHeader';
var vm = new Vue({
el: '#modifyForm'
});
var vmq = new Vue({
el: '#panelSearch',
data: {
}
});
var barcodeStyle = {
format: "CODE128",//选择要使用的条形码类型
width: 1,//设置条之间的宽度
height: 45,//高度
displayValue: true,//是否在条形码下方显示文字
// text:"456",//覆盖显示的文本
// fontOptions:"bold italic",//使文字加粗体或变斜体
font: "monospace",//设置文本的字体fantasy
textAlign: "center",//设置文本的水平对齐方式
textPosition: "bottom",//设置文本的垂直位置
textMargin: 1,//设置条形码和文本之间的间距
fontSize: 12,//设置文本的大小
background: "#ffffff",//设置条形码的背景
lineColor: "#000000",//设置条和文本的颜色。
margin: 1//设置条形码周围的空白边距
};
var mainList = {
NoData: function () {
return "<div id='background' style='width:100%;height:100%;background-image:url(../../images/NoData.png);background-repeat:no-repeat;background-size:cover;'>.</div>"
},
mainList: function () {
table.reload('mainList', {
url: "/" + AreaName + "/" + TableName + "/Load"
, method: "post"
, text: { none: this.NoData() }
});
}
};
//编辑
var EditInfo = function (tabledata) {
data = tabledata;
vm.$set('$data', data);
var list = {};
$('.ClearSelector_' + TableName).each(function () {
var selDom = ($(this));
if ($(selDom)[0].name.search("q") == -1) {
list[$(selDom)[0].name] = data[$(selDom)[0].name] + "";
}
});
//表单修改时填充需修改的数据
form.val('modifyForm', list);
};
var selfbtn = {
//自定义按钮
btnPrint: function () {
$('#tanchuang').empty(); //清空上一次数据
var checkStatus = table.checkStatus('mainList');
var count = checkStatus.data.length;
var myDate = new Date();
if (count == 1) {
var data = checkStatus.data[0];
$("#PTime").text(myDate.toLocaleString());
$("#PCodeBar").text(JsBarcode("#PCodeBar", data.Code, barcodeStyle));
$("#PCode").text(data.Code);
$("#PSourceCode").text(data.SourceCode);
$("#PSupplierCode").text(data.SupplierCode);
$("#PTotalQty").text(data.TotalQty);
$("#PTotalLines").text(data.TotalLines);
$.ajax({
url: "/Printing/PrintingReceiptHeader/PrintReceiptDetailInfo",
type: "POST",
data: { rno: checkStatus.data[0].Code },
dataType: "json",
success: function (result) {
if (result) {
table.render({
elem: '#PrintDetailData'
, cols: [[
{ field: 'MaterialCode', title: '物料编码', width: 140, align: 'left' },
{ field: 'Name', title: '物料名称', width: 170, align: 'left', style: 'font-size:11px' },
{ field: 'Batch', title: '批次', width: 100, align: 'left' },
{ field: 'Lot', title: '批号', width: 80, align: 'center' },
{ field: 'Qty', title: '数量', width: 80, align: 'center' },
{ field: 'PBarCode', title: '物料条码', width: 153, unresize: true, align: 'left', templet: '<div><img id="MaterialCodeBarcode{{ d.LAY_TABLE_INDEX }}"></div>' }
]]
, width: 730
, page: false
, limit: result.data.length
, data: result.data
});
$.each(result.data, function (i, value) {
JsBarcode("#MaterialCodeBarcode" + (value.LAY_TABLE_INDEX), value.MaterialCode, barcodeStyle);
});
//弹窗打印
layer.open({
type: 1,
// skin: 'layui-layer-molv',
btnAlign: 'c',
moveType: 1, //拖拽模式,0或者1
title: "入库单据打印", //不显示标题
area: ['750px', '700px'], //宽高
content: $('#printForm'), //捕获的元素
scrollbar: true,
btn: ['打印', '关闭'],
yes: function (index, layero) {
$('#printForm').jqprint();
layer.close(index);
},
cancel: function (index) {
layer.close(index);
}
});
} else {
layer.alert("打印数据加载失败", { icon: 5, shadeClose: true, title: "错误信息" });
}
},
error: function (XMLHttpRequest, textStatus, errorThrown) {
layer.alert(errorThrown, { icon: 2, title: '提示' });
}
});
}
else
layer.alert("请选择一条数据", { icon: 5, shadeClose: true, title: "错误信息" });
}
};
var selector = {
'WarehouseType': {
SelType: "FromDict",
SelFrom: "warehouseType",
SelModel: "WarehouseType",
SelLabel: "DictLabel",
SelValue: "DictValue",
Dom: [$("[name='WarehouseType']"), $("[name='qWarehouseType']")]
},
'Type': {
SelType: "FromDict",
SelFrom: "receiptType",
SelModel: "Type",
SelLabel: "DictLabel",
SelValue: "DictValue",
Dom: [$("[name='Type']"), $("[name='qType']")]
},
'FirstStatus': {
SelType: "FromDict",
SelFrom: "shipmentHeaderStatus",
SelModel: "FirstStatus",
SelLabel: "DictLabel",
SelValue: "DictValue",
Dom: [$("[name='FirstStatus']"), $("[name='qFirstStatus']")]
},
'LastStatus': {
SelType: "FromDict",
SelFrom: "shipmentHeaderStatus",
SelModel: "LastStatus",
SelLabel: "DictLabel",
SelValue: "DictValue",
Dom: [$("[name='LastStatus']"), $("[name='qLastStatus']")]
}
};
var vml = new Array({
vm: vm,
vmq: vmq,
});
Universal.BindSelector($, form, vml, selector);
Universal.mmain(AreaName, TableName, table, layer, element, laydate, $, vm, vmq, EditInfo, selfbtn, mainList, form);
});