doctor-admin-components 1.0.14-beta.48 → 1.0.14-beta.49
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/package.json
CHANGED
|
@@ -126,8 +126,8 @@
|
|
|
126
126
|
<el-tag :key="tag" v-for="tag in dynamicTags" class="mr5" style="margin-top: 5px">{{ tag }}</el-tag>
|
|
127
127
|
</div>
|
|
128
128
|
</el-descriptions-item>
|
|
129
|
-
<el-descriptions-item label="Shipment Quantity Tolerance"> ± {{ form.
|
|
130
|
-
<el-descriptions-item label="Shortage Tolerance"> <{{ form.
|
|
129
|
+
<el-descriptions-item label="Shipment Quantity Tolerance"> ± {{ form.toleranceFloat * 100 }}%</el-descriptions-item>
|
|
130
|
+
<el-descriptions-item label="Shortage Tolerance"> <{{ form.weightTolerance }}% / {{ form.weightToleranceWeight }} kg</el-descriptions-item>
|
|
131
131
|
<el-descriptions-item label="Packing Type"> {{ form.packingMethod ? form.packingMethod.replace(',', '/') : '' }}</el-descriptions-item>
|
|
132
132
|
<el-descriptions-item label="Partial Shipment"> {{ form.partialShipment }}</el-descriptions-item>
|
|
133
133
|
<el-descriptions-item label="Transshipment"> {{ form.transshipment }}</el-descriptions-item>
|
|
@@ -241,8 +241,10 @@ export default {
|
|
|
241
241
|
return prev
|
|
242
242
|
}
|
|
243
243
|
}, 0)
|
|
244
|
-
if (index ===
|
|
244
|
+
if (index === 2) {
|
|
245
245
|
sums[index] += 'MT'
|
|
246
|
+
} else if (index === 1) {
|
|
247
|
+
sums[index] = ''
|
|
246
248
|
} else {
|
|
247
249
|
sums[index] += ''
|
|
248
250
|
}
|