refs #4204 labelCount argument not required
gitea/salix/pipeline/head There was a failure building this commit
Details
gitea/salix/pipeline/head There was a failure building this commit
Details
This commit is contained in:
parent
b7a369a41c
commit
76001ec022
|
@ -14,7 +14,7 @@ module.exports = Self => {
|
|||
}, {
|
||||
arg: 'labelCount',
|
||||
type: 'number',
|
||||
required: true,
|
||||
required: false,
|
||||
description: 'The number of labels'
|
||||
}
|
||||
],
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
<td id="outline" class="ellipsize">{{labelData.workerCode || '---'}}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td id="outline" class="ellipsize">{{labelCount || 0}}</td>
|
||||
<td id="outline" class="ellipsize">{{labelCount || labelData.labelCount || 0}}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td id="outline" class="ellipsize">{{labelData.code == 'V' ? (labelData.size || 0) + 'cm' : (labelData.volume || 0) + 'm³'}}</td>
|
||||
|
|
|
@ -14,7 +14,7 @@ module.exports = {
|
|||
},
|
||||
labelCount: {
|
||||
type: Number,
|
||||
required: true,
|
||||
required: false,
|
||||
description: 'The number of labels'
|
||||
}
|
||||
},
|
||||
|
|
|
@ -12,6 +12,7 @@ SELECT c.itemPackingTypeFk code,
|
|||
TIME_FORMAT(t.shipped, '%H:%i') shippedHour,
|
||||
TIME_FORMAT(zo.`hour`, '%H:%i') zoneHour,
|
||||
DATE_FORMAT(t.shipped, '%d/%m/%y') shipped,
|
||||
tt.labelCount,
|
||||
t.nickName,
|
||||
COUNT(*) lineCount
|
||||
FROM vn.ticket t
|
||||
|
|
Loading…
Reference in New Issue