Browse Source

20250224

master
qiezi 11 months ago
parent
commit
b0dd2be72c
  1. 4
      src/printFormat/alphaHardTagPrintFormat.js
  2. 2
      src/views/modules/manufacturer/manufacturerInformation.vue
  3. 4
      src/views/modules/part/external.vue

4
src/printFormat/alphaHardTagPrintFormat.js

@ -135,7 +135,7 @@ const printCartonLabel = (LODOP,row,icons,hz) => {
LODOP.SET_PRINT_STYLEA(0, 'FontName', 'Arial')
LODOP.SET_PRINT_STYLEA(0, 'FontSize', 10)
LODOP.ADD_PRINT_TEXT(86, 275, 64, 20, row.weight)
LODOP.ADD_PRINT_TEXT(86, 275, 64, 20, new Decimal(row.weight).toDecimalPlaces(3))
LODOP.SET_PRINT_STYLEA(0, 'FontName', 'Arial')
LODOP.SET_PRINT_STYLEA(0, 'FontSize', 10)
LODOP.SET_PRINT_STYLEA(0, 'Alignment', 3)
@ -144,7 +144,7 @@ const printCartonLabel = (LODOP,row,icons,hz) => {
LODOP.SET_PRINT_STYLEA(0, 'FontName', 'Arial')
LODOP.SET_PRINT_STYLEA(0, 'FontSize', 10)
if (row.showPound === 'Y'){
LODOP.ADD_PRINT_TEXT(101, 275, 64, 20, new Decimal(row.weight).mul(new Decimal(2.20462)).toDecimalPlaces(6))
LODOP.ADD_PRINT_TEXT(101, 275, 64, 20, new Decimal(row.weight).mul(new Decimal(2.20462)).toDecimalPlaces(3))
LODOP.SET_PRINT_STYLEA(0, 'FontName', 'Arial')
LODOP.SET_PRINT_STYLEA(0, 'FontSize', 10)
LODOP.SET_PRINT_STYLEA(0, 'Alignment', 3)

2
src/views/modules/manufacturer/manufacturerInformation.vue

@ -75,7 +75,7 @@
</el-form-item>
</el-col>
<el-col :span="16">
<el-form-item label="Factory Code(This will be shown in Julian Date)" prop="manufacturerCode">
<el-form-item label="Factory Code(This will be shown in MFG. Date)" prop="manufacturerCode">
<el-row :gutter="10">
<el-col :span="12">
<el-input v-model="modalData.manufacturerCode"></el-input>

4
src/views/modules/part/external.vue

@ -1750,7 +1750,7 @@ export default {
<el-col :span="7">
<el-form-item label="Packing Weight" prop="packingWeight">
<el-input-number :min="0" :controls="false" v-model="savePart.packingWeight"
:precision="6"></el-input-number>
:precision="3"></el-input-number>
</el-form-item>
</el-col>
<el-col :span="4">
@ -1771,7 +1771,7 @@ export default {
<el-col :span="7">
<el-form-item label="Packing Weight in LBS">
<el-input-number :min="0" :controls="false" v-model="pound"
:precision="6"></el-input-number>
:precision="3"></el-input-number>
</el-form-item>
</el-col>
<el-col :span="4">

Loading…
Cancel
Save