|
@@ -2816,30 +2816,15 @@ export default {
|
|
|
this.goodsOptions = response.data.goodsList;
|
|
|
this.kqhouseOptions = response.data.warehouseAreas;
|
|
|
this.warehouseDrList = response.data.warehousebillsfeesDr;
|
|
|
+
|
|
|
for (let dr in this.warehouseDrList) {
|
|
|
- this.$set(
|
|
|
- this.warehouseDrList[dr],
|
|
|
- "fFeeUnitid",
|
|
|
- this.warehouseDrList[dr].fFeeunitid + ""
|
|
|
- );
|
|
|
- this.$set(
|
|
|
- this.warehouseDrList[dr],
|
|
|
- "fQty",
|
|
|
- this.warehouseDrList[dr].fQty.toFixed(2)
|
|
|
- );
|
|
|
- this.$set(
|
|
|
- this.warehouseDrList[dr],
|
|
|
- "fAmount",
|
|
|
- this.warehouseDrList[dr].fAmount.toFixed(2)
|
|
|
- );
|
|
|
+ this.$set(this.warehouseDrList[dr], "fFeeunitid", this.warehouseDrList[dr].fFeeunitid + '');
|
|
|
+ this.$set(this.warehouseDrList[dr], "fQty", this.warehouseDrList[dr].fQty.toFixed(2));
|
|
|
+ this.$set(this.warehouseDrList[dr], "fAmount", this.warehouseDrList[dr].fAmount.toFixed(2));
|
|
|
}
|
|
|
this.warehouseCrList = response.data.warehousebillsfeesCr;
|
|
|
for (let cr in this.warehouseCrList) {
|
|
|
- this.$set(
|
|
|
- this.warehouseCrList[cr],
|
|
|
- "fFeeUnitid",
|
|
|
- this.warehouseCrList[cr].fFeeunitid + ""
|
|
|
- );
|
|
|
+ this.$set(this.warehouseCrList[cr], "fFeeunitid", this.warehouseCrList[cr].fFeeunitid + "");
|
|
|
}
|
|
|
this.userOptions = response.data.sysUser;
|
|
|
this.open = true;
|