@things-factory/document-template-base 8.0.0 → 9.0.0-beta.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/package.json +5 -5
- package/server/constants/index.ts +0 -1
- package/server/constants/template-type.ts +0 -18
- package/server/controllers/index.ts +0 -1
- package/server/controllers/report-to-html.ts +0 -45
- package/server/index.ts +0 -5
- package/server/migrations/index.ts +0 -9
- package/server/routes.ts +0 -561
- package/server/service/doc-template/doc-template-mutation.ts +0 -120
- package/server/service/doc-template/doc-template-query.ts +0 -48
- package/server/service/doc-template/doc-template-type.ts +0 -80
- package/server/service/doc-template/doc-template.ts +0 -89
- package/server/service/doc-template/index.ts +0 -7
- package/server/service/index.ts +0 -25
- package/server/service/template-file/index.ts +0 -7
- package/server/service/template-file/template-file-mutation.ts +0 -117
- package/server/service/template-file/template-file-query.ts +0 -54
- package/server/service/template-file/template-file-type.ts +0 -73
- package/server/service/template-file/template-file.ts +0 -93
- package/server/templates/Invoice.jrxml +0 -392
- package/server/templates/response.xlsx +0 -0
- package/server/templates/template-java.xlsx +0 -0
- package/server/templates/template1.xls +0 -0
- package/server/templates/template1.xlsx +0 -0
- package/server/templates/template2.xlsx +0 -0
- package/server/templates/template3.xls +0 -0
- package/server/templates/template3.xlsx +0 -0
package/server/routes.ts
DELETED
|
@@ -1,561 +0,0 @@
|
|
|
1
|
-
import { reportPath2html, report2html, reportUrl2html, reportString2html } from './controllers'
|
|
2
|
-
|
|
3
|
-
const REPORT_API_URL = 'http://localhost:8888/rest/report/show_html'
|
|
4
|
-
|
|
5
|
-
process.on('bootstrap-module-history-fallback' as any, (app, fallbackOption) => {
|
|
6
|
-
/*
|
|
7
|
-
* fallback white list를 추가할 수 있다
|
|
8
|
-
*
|
|
9
|
-
* ex)
|
|
10
|
-
* var paths = [
|
|
11
|
-
* 'aaa',
|
|
12
|
-
* 'bbb'
|
|
13
|
-
* ]
|
|
14
|
-
* fallbackOption.whiteList.push(`^\/(${paths.join('|')})($|[/?#])`)
|
|
15
|
-
*/
|
|
16
|
-
var paths = ['report2html']
|
|
17
|
-
fallbackOption.whiteList.push(`^\/(${paths.join('|')})($|[/?#])`)
|
|
18
|
-
})
|
|
19
|
-
|
|
20
|
-
process.on('bootstrap-module-domain-private-route' as any, (app, routes) => {
|
|
21
|
-
/*
|
|
22
|
-
* koa application에 routes 를 추가할 수 있다.
|
|
23
|
-
*
|
|
24
|
-
* ex) routes.get('/path', async(context, next) => {})
|
|
25
|
-
* ex) routes.post('/path', async(context, next) => {})
|
|
26
|
-
*/
|
|
27
|
-
/* report api sample
|
|
28
|
-
*
|
|
29
|
-
routes.get('/report2html', async (context, next) => {
|
|
30
|
-
const html = await reportString2html({
|
|
31
|
-
reportTemplateString: `<?xml version="1.0" encoding="UTF-8"?>
|
|
32
|
-
<!-- Created with Jaspersoft Studio version 6.11.0.final using JasperReports Library version 6.11.0-0c4056ccaa4d25a5a8c45672d2f764ea3498bebb -->
|
|
33
|
-
<jasperReport xmlns="http://jasperreports.sourceforge.net/jasperreports" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://jasperreports.sourceforge.net/jasperreports http://jasperreports.sourceforge.net/xsd/jasperreport.xsd" name="Invoice" pageWidth="595" pageHeight="842" columnWidth="483" leftMargin="56" rightMargin="56" topMargin="56" bottomMargin="56" uuid="4eedbb89-b4f6-4469-9ab6-f642a1688cf7">
|
|
34
|
-
<property name="com.jaspersoft.studio.data.defaultdataadapter" value="One Empty Record"/>
|
|
35
|
-
<property name="com.jaspersoft.studio.unit." value="pixel"/>
|
|
36
|
-
<style name="Title" forecolor="#FFFFFF" fontName="Times New Roman" fontSize="50" isBold="false" pdfFontName="Times-Bold"/>
|
|
37
|
-
<style name="SubTitle" forecolor="#CCCCCC" fontName="Times New Roman" fontSize="18" isBold="false" pdfFontName="Times-Roman"/>
|
|
38
|
-
<style name="Column header" forecolor="#666666" fontName="Times New Roman" fontSize="14" isBold="true"/>
|
|
39
|
-
<style name="Detail" mode="Transparent" fontName="Times New Roman"/>
|
|
40
|
-
<style name="Row" mode="Transparent" fontName="Times New Roman" pdfFontName="Times-Roman">
|
|
41
|
-
<conditionalStyle>
|
|
42
|
-
<conditionExpression><![CDATA[$V{REPORT_COUNT}%2 == 0]]></conditionExpression>
|
|
43
|
-
<style mode="Opaque" backcolor="#EEEFF0"/>
|
|
44
|
-
</conditionalStyle>
|
|
45
|
-
</style>
|
|
46
|
-
<style name="Table">
|
|
47
|
-
<box>
|
|
48
|
-
<pen lineWidth="1.0" lineColor="#000000"/>
|
|
49
|
-
<topPen lineWidth="1.0" lineColor="#000000"/>
|
|
50
|
-
<leftPen lineWidth="1.0" lineColor="#000000"/>
|
|
51
|
-
<bottomPen lineWidth="1.0" lineColor="#000000"/>
|
|
52
|
-
<rightPen lineWidth="1.0" lineColor="#000000"/>
|
|
53
|
-
</box>
|
|
54
|
-
</style>
|
|
55
|
-
<style name="Table_TH" mode="Opaque" backcolor="#FFFFFF">
|
|
56
|
-
<box>
|
|
57
|
-
<pen lineWidth="0.5" lineColor="#000000"/>
|
|
58
|
-
<topPen lineWidth="0.5" lineColor="#000000"/>
|
|
59
|
-
<leftPen lineWidth="0.5" lineColor="#000000"/>
|
|
60
|
-
<bottomPen lineWidth="0.5" lineColor="#000000"/>
|
|
61
|
-
<rightPen lineWidth="0.5" lineColor="#000000"/>
|
|
62
|
-
</box>
|
|
63
|
-
</style>
|
|
64
|
-
<style name="Table_CH" mode="Opaque" backcolor="#CACED0">
|
|
65
|
-
<box>
|
|
66
|
-
<pen lineWidth="0.5" lineColor="#000000"/>
|
|
67
|
-
<topPen lineWidth="0.5" lineColor="#000000"/>
|
|
68
|
-
<leftPen lineWidth="0.5" lineColor="#000000"/>
|
|
69
|
-
<bottomPen lineWidth="0.5" lineColor="#000000"/>
|
|
70
|
-
<rightPen lineWidth="0.5" lineColor="#000000"/>
|
|
71
|
-
</box>
|
|
72
|
-
</style>
|
|
73
|
-
<style name="Table_TD" mode="Opaque" backcolor="#FFFFFF">
|
|
74
|
-
<box>
|
|
75
|
-
<pen lineWidth="0.5" lineColor="#000000"/>
|
|
76
|
-
<topPen lineWidth="0.5" lineColor="#000000"/>
|
|
77
|
-
<leftPen lineWidth="0.5" lineColor="#000000"/>
|
|
78
|
-
<bottomPen lineWidth="0.5" lineColor="#000000"/>
|
|
79
|
-
<rightPen lineWidth="0.5" lineColor="#000000"/>
|
|
80
|
-
</box>
|
|
81
|
-
<conditionalStyle>
|
|
82
|
-
<conditionExpression><![CDATA[$V{REPORT_COUNT}%2 == 0]]></conditionExpression>
|
|
83
|
-
<style backcolor="#D8D8D8"/>
|
|
84
|
-
</conditionalStyle>
|
|
85
|
-
</style>
|
|
86
|
-
<style name="Table 1_TH" mode="Opaque" backcolor="#F0F8FF">
|
|
87
|
-
<box>
|
|
88
|
-
<pen lineWidth="0.5" lineColor="#000000"/>
|
|
89
|
-
<topPen lineWidth="0.5" lineColor="#000000"/>
|
|
90
|
-
<leftPen lineWidth="0.5" lineColor="#000000"/>
|
|
91
|
-
<bottomPen lineWidth="0.5" lineColor="#000000"/>
|
|
92
|
-
<rightPen lineWidth="0.5" lineColor="#000000"/>
|
|
93
|
-
</box>
|
|
94
|
-
</style>
|
|
95
|
-
<style name="Table 1_CH" mode="Opaque" backcolor="#BFE1FF">
|
|
96
|
-
<box>
|
|
97
|
-
<pen lineWidth="0.5" lineColor="#000000"/>
|
|
98
|
-
<topPen lineWidth="0.5" lineColor="#000000"/>
|
|
99
|
-
<leftPen lineWidth="0.5" lineColor="#000000"/>
|
|
100
|
-
<bottomPen lineWidth="0.5" lineColor="#000000"/>
|
|
101
|
-
<rightPen lineWidth="0.5" lineColor="#000000"/>
|
|
102
|
-
</box>
|
|
103
|
-
</style>
|
|
104
|
-
<style name="Table 1_TD" mode="Opaque" backcolor="#FFFFFF">
|
|
105
|
-
<box>
|
|
106
|
-
<pen lineWidth="0.5" lineColor="#000000"/>
|
|
107
|
-
<topPen lineWidth="0.5" lineColor="#000000"/>
|
|
108
|
-
<leftPen lineWidth="0.5" lineColor="#000000"/>
|
|
109
|
-
<bottomPen lineWidth="0.5" lineColor="#000000"/>
|
|
110
|
-
<rightPen lineWidth="0.5" lineColor="#000000"/>
|
|
111
|
-
</box>
|
|
112
|
-
</style>
|
|
113
|
-
<style name="Table 2_TH" mode="Opaque" backcolor="#FFFFFF">
|
|
114
|
-
<box>
|
|
115
|
-
<pen lineWidth="0.5" lineColor="#000000"/>
|
|
116
|
-
<topPen lineWidth="0.5" lineColor="#000000"/>
|
|
117
|
-
<leftPen lineWidth="0.5" lineColor="#000000"/>
|
|
118
|
-
<bottomPen lineWidth="0.5" lineColor="#000000"/>
|
|
119
|
-
<rightPen lineWidth="0.5" lineColor="#000000"/>
|
|
120
|
-
</box>
|
|
121
|
-
</style>
|
|
122
|
-
<style name="Table 2_CH" mode="Opaque" backcolor="#FFBFBF">
|
|
123
|
-
<box>
|
|
124
|
-
<pen lineWidth="0.5" lineColor="#000000"/>
|
|
125
|
-
<topPen lineWidth="0.5" lineColor="#000000"/>
|
|
126
|
-
<leftPen lineWidth="0.5" lineColor="#000000"/>
|
|
127
|
-
<bottomPen lineWidth="0.5" lineColor="#000000"/>
|
|
128
|
-
<rightPen lineWidth="0.5" lineColor="#000000"/>
|
|
129
|
-
</box>
|
|
130
|
-
</style>
|
|
131
|
-
<style name="Table 2_TD" mode="Opaque" backcolor="#FFFFFF">
|
|
132
|
-
<box>
|
|
133
|
-
<pen lineWidth="0.5" lineColor="#000000"/>
|
|
134
|
-
<topPen lineWidth="0.5" lineColor="#000000"/>
|
|
135
|
-
<leftPen lineWidth="0.5" lineColor="#000000"/>
|
|
136
|
-
<bottomPen lineWidth="0.5" lineColor="#000000"/>
|
|
137
|
-
<rightPen lineWidth="0.5" lineColor="#000000"/>
|
|
138
|
-
</box>
|
|
139
|
-
</style>
|
|
140
|
-
<subDataset name="items" uuid="463dfe1e-7d21-4fbd-a663-020966f53e23">
|
|
141
|
-
<queryString>
|
|
142
|
-
<![CDATA[]]>
|
|
143
|
-
</queryString>
|
|
144
|
-
<field name="item_index" class="java.lang.String"/>
|
|
145
|
-
<field name="pallet_no" class="java.lang.String"/>
|
|
146
|
-
<field name="item_desc" class="java.lang.String"/>
|
|
147
|
-
<field name="qty" class="java.lang.String"/>
|
|
148
|
-
<field name="weight" class="java.lang.String"/>
|
|
149
|
-
<field name="remarks" class="java.lang.String"/>
|
|
150
|
-
</subDataset>
|
|
151
|
-
<queryString>
|
|
152
|
-
<![CDATA[]]>
|
|
153
|
-
</queryString>
|
|
154
|
-
<field name="company_name" class="java.lang.String"/>
|
|
155
|
-
<field name="address" class="java.lang.String"/>
|
|
156
|
-
<field name="tel_no" class="java.lang.String"/>
|
|
157
|
-
<field name="company_no" class="java.lang.String"/>
|
|
158
|
-
<field name="receive_company_name" class="java.lang.String"/>
|
|
159
|
-
<field name="receive_company_address" class="java.lang.String"/>
|
|
160
|
-
<field name="item_index" class="java.lang.String"/>
|
|
161
|
-
<field name="pallet_no" class="java.lang.String"/>
|
|
162
|
-
<field name="item_desc" class="java.lang.String"/>
|
|
163
|
-
<field name="qty" class="java.lang.String"/>
|
|
164
|
-
<field name="weight" class="java.lang.String"/>
|
|
165
|
-
<field name="logo" class="java.lang.String"/>
|
|
166
|
-
<field name="grn_no" class="java.lang.String"/>
|
|
167
|
-
<field name="date" class="java.lang.String"/>
|
|
168
|
-
<field name="ref_no" class="java.lang.String"/>
|
|
169
|
-
<field name="vehicle_no" class="java.lang.String"/>
|
|
170
|
-
<field name="container_no" class="java.lang.String"/>
|
|
171
|
-
<title>
|
|
172
|
-
<band height="216" splitType="Stretch">
|
|
173
|
-
<staticText>
|
|
174
|
-
<reportElement x="0" y="115" width="30" height="25" uuid="57aed2b1-4f4e-40a3-a6ad-54dae8dd4c5a">
|
|
175
|
-
<property name="local_mesure_unitheight" value="pixel"/>
|
|
176
|
-
<property name="com.jaspersoft.studio.unit.height" value="px"/>
|
|
177
|
-
</reportElement>
|
|
178
|
-
<textElement>
|
|
179
|
-
<font size="11" isBold="true"/>
|
|
180
|
-
</textElement>
|
|
181
|
-
<text><![CDATA[TO:]]></text>
|
|
182
|
-
</staticText>
|
|
183
|
-
<textField>
|
|
184
|
-
<reportElement x="40" y="115" width="190" height="15" uuid="daf4f0d3-e9f2-41fb-b927-bd5aa3713a15"/>
|
|
185
|
-
<textElement>
|
|
186
|
-
<font isBold="true"/>
|
|
187
|
-
</textElement>
|
|
188
|
-
<textFieldExpression><![CDATA[$F{receive_company_name}]]></textFieldExpression>
|
|
189
|
-
</textField>
|
|
190
|
-
<textField textAdjust="StretchHeight">
|
|
191
|
-
<reportElement x="40" y="130" width="190" height="40" uuid="9c927a08-426a-47bb-be35-49c54cf811d0"/>
|
|
192
|
-
<textFieldExpression><![CDATA[$F{receive_company_address}]]></textFieldExpression>
|
|
193
|
-
</textField>
|
|
194
|
-
<textField>
|
|
195
|
-
<reportElement x="385" y="145" width="98" height="15" uuid="0b1b2784-e96c-4aa5-a81e-ca6d64c22296"/>
|
|
196
|
-
<textFieldExpression><![CDATA[$F{ref_no}]]></textFieldExpression>
|
|
197
|
-
</textField>
|
|
198
|
-
<textField>
|
|
199
|
-
<reportElement x="385" y="115" width="98" height="15" uuid="d3288b0a-c5d9-4237-86c4-431ecba4e19d"/>
|
|
200
|
-
<textFieldExpression><![CDATA[$F{grn_no}]]></textFieldExpression>
|
|
201
|
-
</textField>
|
|
202
|
-
<textField>
|
|
203
|
-
<reportElement x="385" y="160" width="98" height="15" uuid="c403ba8a-46c7-4986-bb7e-cd5440a435c2"/>
|
|
204
|
-
<textFieldExpression><![CDATA[$F{vehicle_no}]]></textFieldExpression>
|
|
205
|
-
</textField>
|
|
206
|
-
<textField>
|
|
207
|
-
<reportElement x="385" y="130" width="98" height="15" uuid="c01d5e12-d34f-49f8-85fe-9c3d0aacfc06"/>
|
|
208
|
-
<textFieldExpression><![CDATA[$F{date}]]></textFieldExpression>
|
|
209
|
-
</textField>
|
|
210
|
-
<image hAlign="Center" vAlign="Middle" isLazy="true">
|
|
211
|
-
<reportElement x="0" y="0" width="65" height="60" uuid="94883631-a913-43e2-b182-ab8d77d0181e"/>
|
|
212
|
-
<imageExpression><![CDATA[$F{logo}]]></imageExpression>
|
|
213
|
-
</image>
|
|
214
|
-
<staticText>
|
|
215
|
-
<reportElement x="0" y="80" width="483" height="30" uuid="5ba7093c-c54c-4857-97d2-f784ce80ebcc"/>
|
|
216
|
-
<box>
|
|
217
|
-
<pen lineWidth="0.0"/>
|
|
218
|
-
</box>
|
|
219
|
-
<textElement textAlignment="Center" verticalAlignment="Middle">
|
|
220
|
-
<font size="14" isBold="true"/>
|
|
221
|
-
</textElement>
|
|
222
|
-
<text><![CDATA[GOOD RECEIVED NOTE]]></text>
|
|
223
|
-
</staticText>
|
|
224
|
-
<staticText>
|
|
225
|
-
<reportElement x="300" y="145" width="73" height="15" uuid="185175eb-501d-4d39-acbc-7cbf77495f46"/>
|
|
226
|
-
<text><![CDATA[Our Ref No.]]></text>
|
|
227
|
-
</staticText>
|
|
228
|
-
<staticText>
|
|
229
|
-
<reportElement x="300" y="115" width="73" height="15" uuid="85047a70-8b5e-427c-a5d5-8fe0c9271475"/>
|
|
230
|
-
<text><![CDATA[GRN No.]]></text>
|
|
231
|
-
</staticText>
|
|
232
|
-
<staticText>
|
|
233
|
-
<reportElement x="300" y="160" width="73" height="15" uuid="e176d632-cf96-43fa-8d93-d8856d0476a0"/>
|
|
234
|
-
<text><![CDATA[Vehicle No.]]></text>
|
|
235
|
-
</staticText>
|
|
236
|
-
<staticText>
|
|
237
|
-
<reportElement x="300" y="130" width="73" height="15" uuid="d9d1a42d-a326-4dab-b456-5a3d04fa6b20"/>
|
|
238
|
-
<text><![CDATA[Date]]></text>
|
|
239
|
-
</staticText>
|
|
240
|
-
<staticText>
|
|
241
|
-
<reportElement x="300" y="175" width="73" height="15" uuid="bd9c2524-479b-4ef0-9a96-9cd302a2486e"/>
|
|
242
|
-
<text><![CDATA[Container No.]]></text>
|
|
243
|
-
</staticText>
|
|
244
|
-
<textField>
|
|
245
|
-
<reportElement x="385" y="175" width="98" height="15" uuid="6507179e-f4a3-4868-ba4c-64c5ddb129ef"/>
|
|
246
|
-
<textFieldExpression><![CDATA[$F{container_no}]]></textFieldExpression>
|
|
247
|
-
</textField>
|
|
248
|
-
<frame>
|
|
249
|
-
<reportElement x="80" y="0" width="403" height="55" uuid="8aed198d-91ec-41f0-baa8-c00fb83ae31a"/>
|
|
250
|
-
<textField>
|
|
251
|
-
<reportElement x="0" y="40" width="403" height="15" uuid="572c973e-fb7d-46bb-b6f7-5ab88892814d"/>
|
|
252
|
-
<textFieldExpression><![CDATA[$F{tel_no}]]></textFieldExpression>
|
|
253
|
-
</textField>
|
|
254
|
-
<textField>
|
|
255
|
-
<reportElement x="0" y="25" width="403" height="15" uuid="15062a8e-fecc-447b-a2a9-552f05441029"/>
|
|
256
|
-
<textFieldExpression><![CDATA[$F{address}]]></textFieldExpression>
|
|
257
|
-
</textField>
|
|
258
|
-
<frame>
|
|
259
|
-
<reportElement x="0" y="0" width="403" height="25" uuid="61854d15-b6c4-4f72-9743-d530afaa0b3c">
|
|
260
|
-
<property name="com.jaspersoft.studio.layout" value="com.jaspersoft.studio.editor.layout.FreeLayout"/>
|
|
261
|
-
</reportElement>
|
|
262
|
-
<textField>
|
|
263
|
-
<reportElement x="0" y="0" width="270" height="25" uuid="343920c3-b2ce-492b-8064-6b84c732653d">
|
|
264
|
-
<property name="local_mesure_unitheight" value="pixel"/>
|
|
265
|
-
<property name="com.jaspersoft.studio.unit.height" value="px"/>
|
|
266
|
-
</reportElement>
|
|
267
|
-
<textElement verticalAlignment="Bottom">
|
|
268
|
-
<font size="19" isBold="true"/>
|
|
269
|
-
</textElement>
|
|
270
|
-
<textFieldExpression><![CDATA[$F{company_name}]]></textFieldExpression>
|
|
271
|
-
</textField>
|
|
272
|
-
<textField>
|
|
273
|
-
<reportElement x="270" y="0" width="133" height="25" uuid="e0dcf4d0-05b0-45ca-95d5-9b76bfacbc5b"/>
|
|
274
|
-
<textElement textAlignment="Left" verticalAlignment="Bottom">
|
|
275
|
-
<font isBold="true"/>
|
|
276
|
-
</textElement>
|
|
277
|
-
<textFieldExpression><![CDATA["(Company No. " + $F{company_no} + ")"]]></textFieldExpression>
|
|
278
|
-
</textField>
|
|
279
|
-
</frame>
|
|
280
|
-
</frame>
|
|
281
|
-
</band>
|
|
282
|
-
</title>
|
|
283
|
-
<detail>
|
|
284
|
-
<band height="208">
|
|
285
|
-
<componentElement>
|
|
286
|
-
<reportElement x="0" y="0" width="483" height="208" uuid="5f2b8982-f7e5-4baa-a59b-fb99cd0bcd7b">
|
|
287
|
-
<property name="com.jaspersoft.studio.layout" value="com.jaspersoft.studio.editor.layout.VerticalRowLayout"/>
|
|
288
|
-
<property name="com.jaspersoft.studio.table.style.table_header" value="Table 2_TH"/>
|
|
289
|
-
<property name="com.jaspersoft.studio.table.style.column_header" value="Table 2_CH"/>
|
|
290
|
-
<property name="com.jaspersoft.studio.table.style.detail" value="Table 2_TD"/>
|
|
291
|
-
<property name="com.jaspersoft.studio.components.autoresize.proportional" value="true"/>
|
|
292
|
-
<property name="com.jaspersoft.studio.components.autoresize.next" value="true"/>
|
|
293
|
-
</reportElement>
|
|
294
|
-
<jr:table xmlns:jr="http://jasperreports.sourceforge.net/jasperreports/components" xsi:schemaLocation="http://jasperreports.sourceforge.net/jasperreports/components http://jasperreports.sourceforge.net/xsd/components.xsd">
|
|
295
|
-
<datasetRun subDataset="items" uuid="b36b6107-f5cc-4c09-ba2f-4ffebbc0f9f1">
|
|
296
|
-
<dataSourceExpression><![CDATA[((net.sf.jasperreports.engine.data.JsonDataSource)$P{REPORT_DATA_SOURCE}).subDataSource("items")]]></dataSourceExpression>
|
|
297
|
-
</datasetRun>
|
|
298
|
-
<jr:column width="25" uuid="89aca7e2-d9e2-4f0a-9f37-49f004ee4596">
|
|
299
|
-
<property name="com.jaspersoft.studio.components.table.model.column.name" value="Column1"/>
|
|
300
|
-
<jr:columnHeader style="Column header" height="30" rowSpan="1">
|
|
301
|
-
<staticText>
|
|
302
|
-
<reportElement x="0" y="0" width="25" height="30" uuid="323929d8-47c1-49f6-884b-b3cb357b864e"/>
|
|
303
|
-
<textElement textAlignment="Center" verticalAlignment="Middle">
|
|
304
|
-
<font isBold="true"/>
|
|
305
|
-
</textElement>
|
|
306
|
-
<text><![CDATA[No.]]></text>
|
|
307
|
-
</staticText>
|
|
308
|
-
</jr:columnHeader>
|
|
309
|
-
<jr:columnFooter style="Column header" height="30" rowSpan="1"/>
|
|
310
|
-
<jr:detailCell style="Row" height="20">
|
|
311
|
-
<textField>
|
|
312
|
-
<reportElement x="0" y="0" width="25" height="20" uuid="9922d4ad-4311-459d-8744-a47f8917a200"/>
|
|
313
|
-
<textElement textAlignment="Right" verticalAlignment="Middle"/>
|
|
314
|
-
<textFieldExpression><![CDATA[$V{REPORT_COUNT}]]></textFieldExpression>
|
|
315
|
-
</textField>
|
|
316
|
-
</jr:detailCell>
|
|
317
|
-
</jr:column>
|
|
318
|
-
<jr:column width="91" uuid="279af0bf-249a-4850-be59-ce84ea5346de">
|
|
319
|
-
<property name="com.jaspersoft.studio.components.table.model.column.name" value="Column2"/>
|
|
320
|
-
<jr:columnHeader style="Column header" height="30" rowSpan="1">
|
|
321
|
-
<staticText>
|
|
322
|
-
<reportElement x="0" y="0" width="91" height="30" uuid="b3a1f258-f6cf-40bb-a7b1-cdfe2ebdf7b6"/>
|
|
323
|
-
<textElement textAlignment="Center" verticalAlignment="Middle">
|
|
324
|
-
<font isBold="true"/>
|
|
325
|
-
</textElement>
|
|
326
|
-
<text><![CDATA[Pallet No.]]></text>
|
|
327
|
-
</staticText>
|
|
328
|
-
</jr:columnHeader>
|
|
329
|
-
<jr:columnFooter style="Column header" height="30" rowSpan="1"/>
|
|
330
|
-
<jr:detailCell style="Row" height="20">
|
|
331
|
-
<textField>
|
|
332
|
-
<reportElement x="0" y="0" width="91" height="20" uuid="1dc9363a-80c9-468d-ac45-fbae85be0092"/>
|
|
333
|
-
<textElement textAlignment="Center" verticalAlignment="Middle"/>
|
|
334
|
-
<textFieldExpression><![CDATA[$F{pallet_no}]]></textFieldExpression>
|
|
335
|
-
</textField>
|
|
336
|
-
</jr:detailCell>
|
|
337
|
-
</jr:column>
|
|
338
|
-
<jr:column width="172" uuid="6c9c10a4-6496-427a-b49a-a0dfe40a0d7c">
|
|
339
|
-
<property name="com.jaspersoft.studio.components.table.model.column.name" value="Column3"/>
|
|
340
|
-
<jr:columnHeader style="Column header" height="30" rowSpan="1">
|
|
341
|
-
<staticText>
|
|
342
|
-
<reportElement x="0" y="0" width="172" height="30" uuid="744ea618-546a-4c89-b11d-82eb28ebd26a"/>
|
|
343
|
-
<textElement textAlignment="Center" verticalAlignment="Middle">
|
|
344
|
-
<font isBold="true"/>
|
|
345
|
-
</textElement>
|
|
346
|
-
<text><![CDATA[Item Description]]></text>
|
|
347
|
-
</staticText>
|
|
348
|
-
</jr:columnHeader>
|
|
349
|
-
<jr:columnFooter style="Column header" height="30" rowSpan="1"/>
|
|
350
|
-
<jr:detailCell style="Row" height="20">
|
|
351
|
-
<textField>
|
|
352
|
-
<reportElement x="0" y="0" width="172" height="20" uuid="142d9d4c-6650-4bef-8c9d-dfdcfcac601b"/>
|
|
353
|
-
<textElement textAlignment="Left" verticalAlignment="Middle"/>
|
|
354
|
-
<textFieldExpression><![CDATA[$F{item_desc}]]></textFieldExpression>
|
|
355
|
-
</textField>
|
|
356
|
-
</jr:detailCell>
|
|
357
|
-
</jr:column>
|
|
358
|
-
<jr:column width="41" uuid="f0cb746f-2778-4c73-92b1-775241c40f56">
|
|
359
|
-
<property name="com.jaspersoft.studio.components.table.model.column.name" value="Column4"/>
|
|
360
|
-
<jr:columnHeader style="Column header" height="30" rowSpan="1">
|
|
361
|
-
<staticText>
|
|
362
|
-
<reportElement x="0" y="0" width="41" height="30" uuid="2e979a96-4d93-4377-9b29-d4aed8ac95f9"/>
|
|
363
|
-
<textElement textAlignment="Center" verticalAlignment="Middle">
|
|
364
|
-
<font isBold="true"/>
|
|
365
|
-
</textElement>
|
|
366
|
-
<text><![CDATA[Qty (Carton)]]></text>
|
|
367
|
-
</staticText>
|
|
368
|
-
</jr:columnHeader>
|
|
369
|
-
<jr:columnFooter style="Column header" height="30" rowSpan="1"/>
|
|
370
|
-
<jr:detailCell style="Row" height="20">
|
|
371
|
-
<textField>
|
|
372
|
-
<reportElement x="0" y="0" width="41" height="20" uuid="ac279c74-2b6f-40f6-9288-4a2e61110cf9"/>
|
|
373
|
-
<textElement textAlignment="Right" verticalAlignment="Middle"/>
|
|
374
|
-
<textFieldExpression><![CDATA[$F{qty}]]></textFieldExpression>
|
|
375
|
-
</textField>
|
|
376
|
-
</jr:detailCell>
|
|
377
|
-
</jr:column>
|
|
378
|
-
<jr:column width="40" uuid="283b8365-dc07-4921-bc39-a838b46e51cd">
|
|
379
|
-
<property name="com.jaspersoft.studio.components.table.model.column.name" value="Column5"/>
|
|
380
|
-
<jr:columnHeader style="Column header" height="30" rowSpan="1">
|
|
381
|
-
<staticText>
|
|
382
|
-
<reportElement x="0" y="0" width="40" height="30" uuid="28c42f18-b077-4f5f-a320-e86b8fb0c617"/>
|
|
383
|
-
<textElement textAlignment="Center" verticalAlignment="Middle">
|
|
384
|
-
<font isBold="true"/>
|
|
385
|
-
</textElement>
|
|
386
|
-
<text><![CDATA[G.Weight]]></text>
|
|
387
|
-
</staticText>
|
|
388
|
-
</jr:columnHeader>
|
|
389
|
-
<jr:columnFooter style="Column header" height="30" rowSpan="1"/>
|
|
390
|
-
<jr:detailCell style="Row" height="20">
|
|
391
|
-
<textField>
|
|
392
|
-
<reportElement x="0" y="0" width="40" height="20" uuid="afa90789-8fd5-49b4-bc16-25a58d94270c"/>
|
|
393
|
-
<textElement textAlignment="Right" verticalAlignment="Middle"/>
|
|
394
|
-
<textFieldExpression><![CDATA[$F{weight}]]></textFieldExpression>
|
|
395
|
-
</textField>
|
|
396
|
-
</jr:detailCell>
|
|
397
|
-
</jr:column>
|
|
398
|
-
<jr:column width="114" uuid="23d9894d-4e50-4074-ab17-ddfc26d5582d">
|
|
399
|
-
<property name="com.jaspersoft.studio.components.table.model.column.name" value="Column6"/>
|
|
400
|
-
<jr:columnHeader style="Column header" height="30" rowSpan="1">
|
|
401
|
-
<staticText>
|
|
402
|
-
<reportElement x="0" y="0" width="114" height="30" uuid="0e77846f-7e1f-44c2-9c4e-9f2f48ca34a8"/>
|
|
403
|
-
<textElement textAlignment="Center" verticalAlignment="Middle">
|
|
404
|
-
<font isBold="true"/>
|
|
405
|
-
</textElement>
|
|
406
|
-
<text><![CDATA[Remarks]]></text>
|
|
407
|
-
</staticText>
|
|
408
|
-
</jr:columnHeader>
|
|
409
|
-
<jr:columnFooter style="Column header" height="30" rowSpan="1"/>
|
|
410
|
-
<jr:detailCell style="Row" height="20">
|
|
411
|
-
<textField>
|
|
412
|
-
<reportElement x="0" y="0" width="114" height="20" uuid="4fe547ff-a550-48e0-9d7a-afe95c8760db"/>
|
|
413
|
-
<textElement textAlignment="Left" verticalAlignment="Middle"/>
|
|
414
|
-
<textFieldExpression><![CDATA[$F{remarks}]]></textFieldExpression>
|
|
415
|
-
</textField>
|
|
416
|
-
</jr:detailCell>
|
|
417
|
-
</jr:column>
|
|
418
|
-
</jr:table>
|
|
419
|
-
</componentElement>
|
|
420
|
-
</band>
|
|
421
|
-
</detail>
|
|
422
|
-
</jasperReport>
|
|
423
|
-
`,
|
|
424
|
-
data: {
|
|
425
|
-
logo:
|
|
426
|
-
'data:image/png;base64,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',
|
|
427
|
-
company_name: 'EL COLD CHAIN LOGISTICS SDN BHD',
|
|
428
|
-
company_no: '773091-U',
|
|
429
|
-
address:
|
|
430
|
-
'L1-43, Jalan Sungai Kapar Indah 2/KU7, Kawasan Industri Hi-Tech, Sungai Kapar Indah, 42200 Klang, Selangor Darul Ehsan.',
|
|
431
|
-
tel_no: '603-3080 8030 / 8020 / 8021',
|
|
432
|
-
receive_company_name: 'EVERGREEN SPEED SDN BHD',
|
|
433
|
-
receive_company_address: 'No 3A-A ,1st Floor, Jalan Euro 3, Seksyen U3,\n 40150 Shah Alam Selangor',
|
|
434
|
-
grn_no: 'GRN - 1119/00003/ES',
|
|
435
|
-
date: '2019/11/14',
|
|
436
|
-
ref_no: 'ELCCL/2019/00028',
|
|
437
|
-
container_no: 'OERU4109160',
|
|
438
|
-
items: [
|
|
439
|
-
{
|
|
440
|
-
pallet_no: 'ord1234',
|
|
441
|
-
item_desc: 'Order 1',
|
|
442
|
-
qty: 300
|
|
443
|
-
},
|
|
444
|
-
{
|
|
445
|
-
pallet_no: 'ord1235',
|
|
446
|
-
item_desc: 'Order 2',
|
|
447
|
-
qty: 500
|
|
448
|
-
},
|
|
449
|
-
{
|
|
450
|
-
pallet_no: 'ord1236',
|
|
451
|
-
item_desc: 'Order 3',
|
|
452
|
-
qty: 190
|
|
453
|
-
},
|
|
454
|
-
{ pallet_no: '=<K>psjlL2', item_desc: '=<K>psjlL2', qty: 806 },
|
|
455
|
-
{ pallet_no: '<wQjGw=sCe', item_desc: '<wQjGw=sCe', qty: 432 },
|
|
456
|
-
{ pallet_no: 'NnScDwBOdC', item_desc: 'NnScDwBOdC', qty: 107 },
|
|
457
|
-
{ pallet_no: 'W=hP;qPkjE', item_desc: 'W=hP;qPkjE', qty: 997 },
|
|
458
|
-
{ pallet_no: 'lhC2UK55sN', item_desc: 'LhC2UK55sN', qty: 565 },
|
|
459
|
-
{ pallet_no: '_5Y]lo:IQX', item_desc: '_5Y]lo:IQX', qty: 427 },
|
|
460
|
-
{ pallet_no: 'XGpyiLCAZ;', item_desc: 'XGpyiLCAZ;', qty: 205 },
|
|
461
|
-
{ pallet_no: 'bWs]Oj\\dBt', item_desc: 'BWs]Oj\\dBt', qty: 279 },
|
|
462
|
-
{ pallet_no: 'm`5K9t4Xp_', item_desc: 'M`5K9t4Xp_', qty: 349 },
|
|
463
|
-
{ pallet_no: 'bHx4Ao2XB2', item_desc: 'BHx4Ao2XB2', qty: 830 },
|
|
464
|
-
{ pallet_no: 'Xgvad1v2RY', item_desc: 'Xgvad1v2RY', qty: 139 },
|
|
465
|
-
{ pallet_no: 'KcaT8^R2S\\', item_desc: 'KcaT8^R2S\\', qty: 547 },
|
|
466
|
-
{ pallet_no: 'o2_W=]soCz', item_desc: 'O2_W=]soCz', qty: 676 },
|
|
467
|
-
{ pallet_no: 'I5fOsmp66s', item_desc: 'I5fOsmp66s', qty: 272 },
|
|
468
|
-
{ pallet_no: 'tai97e1fQ:', item_desc: 'Tai97e1fQ:', qty: 68 },
|
|
469
|
-
{ pallet_no: '3Khciu<3Ph', item_desc: '3Khciu<3Ph', qty: 250 },
|
|
470
|
-
{ pallet_no: 'jNWVoqVu1W', item_desc: 'JNWVoqVu1W', qty: 435 },
|
|
471
|
-
{ pallet_no: 'Sv2jgeYJqp', item_desc: 'Sv2jgeYJqp', qty: 97 },
|
|
472
|
-
{ pallet_no: 'PH2>8PQnYI', item_desc: 'PH2>8PQnYI', qty: 997 },
|
|
473
|
-
{ pallet_no: '9FbvAqce]F', item_desc: '9FbvAqce]F', qty: 1000 },
|
|
474
|
-
{ pallet_no: 'iR6rVZMdh^', item_desc: 'IR6rVZMdh^', qty: 433 },
|
|
475
|
-
{ pallet_no: 'W>uVu9t6f@', item_desc: 'W>uVu9t6f@', qty: 319 },
|
|
476
|
-
{ pallet_no: 'HyXX`RbU4a', item_desc: 'HyXX`RbU4a', qty: 409 },
|
|
477
|
-
{ pallet_no: 'T\\Y^M[RwR>', item_desc: 'T\\Y^M[RwR>', qty: 698 },
|
|
478
|
-
{ pallet_no: '_car3LRmKT', item_desc: '_car3LRmKT', qty: 718 },
|
|
479
|
-
{ pallet_no: 'j7TM=uM36@', item_desc: 'J7TM=uM36@', qty: 291 },
|
|
480
|
-
{ pallet_no: 'tJTpGiUCSi', item_desc: 'TJTpGiUCSi', qty: 847 },
|
|
481
|
-
{ pallet_no: 'M@hye5mGeN', item_desc: 'M@hye5mGeN', qty: 206 },
|
|
482
|
-
{ pallet_no: 'AImdWe5:Y<', item_desc: 'AImdWe5:Y<', qty: 126 },
|
|
483
|
-
{ pallet_no: '@^RNnca=nN', item_desc: '@^RNnca=nN', qty: 497 },
|
|
484
|
-
{ pallet_no: 'EhwTcF`jnQ', item_desc: 'EhwTcF`jnQ', qty: 787 },
|
|
485
|
-
{ pallet_no: 'IIxBt1xNc:', item_desc: 'IIxBt1xNc:', qty: 420 },
|
|
486
|
-
{ pallet_no: 'FIpDsP6;JP', item_desc: 'FIpDsP6;JP', qty: 995 },
|
|
487
|
-
{ pallet_no: 'I<WjaWTqae', item_desc: 'I<WjaWTqae', qty: 625 },
|
|
488
|
-
{ pallet_no: '6@WE8KS7;_', item_desc: '6@WE8KS7;_', qty: 28 },
|
|
489
|
-
{ pallet_no: 'LyoC?1SlBm', item_desc: 'LyoC?1SlBm', qty: 432 },
|
|
490
|
-
{ pallet_no: 'Ts3X_]IWm=', item_desc: 'Ts3X_]IWm=', qty: 185 },
|
|
491
|
-
{ pallet_no: ';lb8^M`\\u3', item_desc: ';lb8^M`\\u3', qty: 566 },
|
|
492
|
-
{ pallet_no: 'u1`6]WnMK@', item_desc: 'U1`6]WnMK@', qty: 251 },
|
|
493
|
-
{ pallet_no: 'VmhI2P\\MGi', item_desc: 'VmhI2P\\MGi', qty: 125 },
|
|
494
|
-
{ pallet_no: 'HMopv7Gj]P', item_desc: 'HMopv7Gj]P', qty: 334 },
|
|
495
|
-
{ pallet_no: 'cf8kl?^D\\O', item_desc: 'Cf8kl?^D\\O', qty: 144 },
|
|
496
|
-
{ pallet_no: '2H8]96R8VW', item_desc: '2H8]96R8VW', qty: 247 },
|
|
497
|
-
{ pallet_no: '4ukV:f1d@N', item_desc: '4ukV:f1d@N', qty: 641 },
|
|
498
|
-
{ pallet_no: 'aZMqMASyp?', item_desc: 'AZMqMASyp?', qty: 98 },
|
|
499
|
-
{ pallet_no: 'd5QGMCMgry', item_desc: 'D5QGMCMgry', qty: 338 },
|
|
500
|
-
{ pallet_no: '=HbM\\jbC9e', item_desc: '=HbM\\jbC9e', qty: 233 },
|
|
501
|
-
{ pallet_no: 'FOOV>T]_b<', item_desc: 'FOOV>T]_b<', qty: 528 },
|
|
502
|
-
{ pallet_no: 'Atzr47R?7t', item_desc: 'Atzr47R?7t', qty: 648 },
|
|
503
|
-
{ pallet_no: 'e9ZsjLs@`M', item_desc: 'E9ZsjLs@`M', qty: 860 },
|
|
504
|
-
{ pallet_no: '`mvyEviJ1I', item_desc: '`mvyEviJ1I', qty: 584 },
|
|
505
|
-
{ pallet_no: 'Cj7yFJlI[O', item_desc: 'Cj7yFJlI[O', qty: 934 },
|
|
506
|
-
{ pallet_no: 'Yh=7z:bnUg', item_desc: 'Yh=7z:bnUg', qty: 702 },
|
|
507
|
-
{ pallet_no: 'p8rfv:87GT', item_desc: 'P8rfv:87GT', qty: 909 },
|
|
508
|
-
{ pallet_no: 'sa6fjhUePm', item_desc: 'Sa6fjhUePm', qty: 875 },
|
|
509
|
-
{ pallet_no: '_^DR@?TO?s', item_desc: '_^DR@?TO?s', qty: 105 },
|
|
510
|
-
{ pallet_no: '5njYcvQ`=k', item_desc: '5njYcvQ`=k', qty: 989 },
|
|
511
|
-
{ pallet_no: 'eVgsSEqGey', item_desc: 'EVgsSEqGey', qty: 60 },
|
|
512
|
-
{ pallet_no: 'q@8761@[<n', item_desc: 'Q@8761@[<n', qty: 319 },
|
|
513
|
-
{ pallet_no: '^=;ylvF]LX', item_desc: '^=;ylvF]LX', qty: 922 },
|
|
514
|
-
{ pallet_no: 'nw1q9kIOx_', item_desc: 'Nw1q9kIOx_', qty: 543 },
|
|
515
|
-
{ pallet_no: 'Kj3m6h4;=x', item_desc: 'Kj3m6h4;=x', qty: 475 },
|
|
516
|
-
{ pallet_no: 'HA1Z;dZzuf', item_desc: 'HA1Z;dZzuf', qty: 971 },
|
|
517
|
-
{ pallet_no: 'WzNwyuJ8p\\', item_desc: 'WzNwyuJ8p\\', qty: 157 },
|
|
518
|
-
{ pallet_no: ';3NMpRozir', item_desc: ';3NMpRozir', qty: 894 },
|
|
519
|
-
{ pallet_no: 'nLp;`NoeTl', item_desc: 'NLp;`NoeTl', qty: 624 },
|
|
520
|
-
{ pallet_no: '6:N::=F^Yh', item_desc: '6:N::=F^Yh', qty: 112 },
|
|
521
|
-
{ pallet_no: 'tVt\\_bdeN:', item_desc: 'TVt\\_bdeN:', qty: 458 },
|
|
522
|
-
{ pallet_no: '<:Zl2l>wnv', item_desc: '<:Zl2l>wnv', qty: 306 },
|
|
523
|
-
{ pallet_no: '2319^;sv]B', item_desc: '2319^;sv]B', qty: 695 },
|
|
524
|
-
{ pallet_no: '`P1fqm6QVB', item_desc: '`P1fqm6QVB', qty: 609 },
|
|
525
|
-
{ pallet_no: 'PV8PDw[wzJ', item_desc: 'PV8PDw[wzJ', qty: 494 },
|
|
526
|
-
{ pallet_no: 'vGjk1lF5V^', item_desc: 'VGjk1lF5V^', qty: 682 },
|
|
527
|
-
{ pallet_no: 'g]m:Y5A\\:J', item_desc: 'G]m:Y5A\\:J', qty: 956 },
|
|
528
|
-
{ pallet_no: ';91AOnODmk', item_desc: ';91AOnODmk', qty: 316 },
|
|
529
|
-
{ pallet_no: 'f`bPPfdlM7', item_desc: 'F`bPPfdlM7', qty: 703 },
|
|
530
|
-
{ pallet_no: 'si57VmByMq', item_desc: 'Si57VmByMq', qty: 608 },
|
|
531
|
-
{ pallet_no: 'LGiVTLau3D', item_desc: 'LGiVTLau3D', qty: 11 },
|
|
532
|
-
{ pallet_no: '5j?BL^j4q2', item_desc: '5j?BL^j4q2', qty: 739 },
|
|
533
|
-
{ pallet_no: 'N4p\\3^_D:B', item_desc: 'N4p\\3^_D:B', qty: 490 },
|
|
534
|
-
{ pallet_no: '`BUy@IhruK', item_desc: '`BUy@IhruK', qty: 652 },
|
|
535
|
-
{ pallet_no: '_@U47EA8y`', item_desc: '_@U47EA8y`', qty: 536 },
|
|
536
|
-
{ pallet_no: 'WepVwxW`E:', item_desc: 'WepVwxW`E:', qty: 968 },
|
|
537
|
-
{ pallet_no: 'bc`298QnWp', item_desc: 'Bc`298QnWp', qty: 248 },
|
|
538
|
-
{ pallet_no: 'jUOVzY>7P\\', item_desc: 'JUOVzY>7P\\', qty: 379 },
|
|
539
|
-
{ pallet_no: 'pky>K@UlKI', item_desc: 'Pky>K@UlKI', qty: 271 },
|
|
540
|
-
{ pallet_no: 'U629Y4B<O_', item_desc: 'U629Y4B<O_', qty: 176 },
|
|
541
|
-
{ pallet_no: 'bkZ:gR7Fkf', item_desc: 'BkZ:gR7Fkf', qty: 721 },
|
|
542
|
-
{ pallet_no: 'exhtcO:4h\\', item_desc: 'ExhtcO:4h\\', qty: 387 },
|
|
543
|
-
{ pallet_no: 'z<sfKNPHNc', item_desc: 'Z<sfKNPHNc', qty: 240 },
|
|
544
|
-
{ pallet_no: 'OnI@Zm7R2x', item_desc: 'OnI@Zm7R2x', qty: 772 },
|
|
545
|
-
{ pallet_no: 'k4Q87_i\\uO', item_desc: 'K4Q87_i\\uO', qty: 807 },
|
|
546
|
-
{ pallet_no: '@cVB>Gv:TV', item_desc: '@cVB>Gv:TV', qty: 76 },
|
|
547
|
-
{ pallet_no: 'JuHcW_gTc`', item_desc: 'JuHcW_gTc`', qty: 350 },
|
|
548
|
-
{ pallet_no: 'X<\\Q^HOR:p', item_desc: 'X<\\Q^HOR:p', qty: 632 },
|
|
549
|
-
{ pallet_no: ';rvSwbS2ov', item_desc: ';rvSwbS2ov', qty: 757 },
|
|
550
|
-
{ pallet_no: 'OPiXZ`4TTR', item_desc: 'OPiXZ`4TTR', qty: 755 },
|
|
551
|
-
{ pallet_no: 'e^FXZHpVMc', item_desc: 'E^FXZHpVMc', qty: 635 },
|
|
552
|
-
{ pallet_no: '3z1DAnH]gS', item_desc: '3z1DAnH]gS', qty: 431 },
|
|
553
|
-
{ pallet_no: '3gUW`nDKUn', item_desc: '3gUW`nDKUn', qty: 387 }
|
|
554
|
-
]
|
|
555
|
-
}
|
|
556
|
-
})
|
|
557
|
-
|
|
558
|
-
context.body = html
|
|
559
|
-
})
|
|
560
|
-
*/
|
|
561
|
-
})
|