deubg
This commit is contained in:
parent
d0af518339
commit
57bab40cc9
|
@ -132,6 +132,7 @@ export default {
|
|||
...this.query
|
||||
}
|
||||
try {
|
||||
console.log("queryParams", this.queryParams);
|
||||
let res = await listPrice(this.queryParams);
|
||||
this.options = res.rows;
|
||||
this.total = res.total;
|
||||
|
@ -142,6 +143,7 @@ export default {
|
|||
// 获取选项列表,并选中第一个
|
||||
async getOptionsAndSelectFirst() {
|
||||
await this.getOptions();
|
||||
console.log(this.options);
|
||||
if (this.options.length > 0) {
|
||||
let value = this.options[0].priceId;
|
||||
this.selectedValue = value;
|
||||
|
|
|
@ -431,7 +431,11 @@ export function notNullDecimal(val) {
|
|||
if (isEmpty(val)) {
|
||||
return new Decimal(0);
|
||||
}
|
||||
return new Decimal(val);
|
||||
try {
|
||||
return new Decimal(val);
|
||||
} catch (e) {
|
||||
return new Decimal(0);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -70,7 +70,7 @@
|
|||
</el-select>
|
||||
</table-form-col>
|
||||
<table-form-col label="良品" :page-size="pageSize" :page-num="pageNum" prop-prefix="productList" width="100" prop="num" required :rules="rules.productList.num" header-icon="el-icon-edit" @click-header="handleBatchEdit('num')">
|
||||
<el-input slot-scope="d" v-model="d.row.num" placeholder="请输入数量">
|
||||
<el-input slot-scope="d" v-model="d.row.num" placeholder="请输入数量" @change="(val) => handleChangeNum(d.row, val)">
|
||||
<template #suffix>
|
||||
{{d.row.priceUnit | dv}}
|
||||
</template>
|
||||
|
@ -256,6 +256,8 @@ export default {
|
|||
computed: {
|
||||
priceQuery() {
|
||||
return (row) => {
|
||||
// 每次调用该方法时都会使用最新的row数据来构建查询参数
|
||||
console.log("priceQuery with updated row data:", row);
|
||||
return {
|
||||
deptId: this.form.deptId,
|
||||
statusList: PriceStatus.canUse(),
|
||||
|
@ -282,6 +284,22 @@ export default {
|
|||
this.showPattern = localStorage.getItem("report_show_pattern") === "true";
|
||||
},
|
||||
methods: {
|
||||
// 判断良品是公式则计算出结果
|
||||
handleChangeNum(row, val) {
|
||||
if (val != null) {
|
||||
if (typeof val === 'string' && /[+\-*/]/.test(val)) {
|
||||
try {
|
||||
// 使用eval计算公式
|
||||
row.num = eval(val);
|
||||
} catch (e) {
|
||||
console.error('公式计算错误:', e);
|
||||
row.num = notNullDecimal(val).toNumber();
|
||||
}
|
||||
} else {
|
||||
row.num = notNullDecimal(val).toNumber();
|
||||
}
|
||||
}
|
||||
},
|
||||
getList() {
|
||||
if (this.loadLoading) {
|
||||
return;
|
||||
|
@ -358,7 +376,14 @@ export default {
|
|||
},
|
||||
// 选择工序
|
||||
selectPrice(index) {
|
||||
this.$refs[`priceSelect${index}`].getOptionsAndSelectFirst();
|
||||
// 获取当前行对象
|
||||
const row = this.form.productList[index];
|
||||
// 确保PriceSelect组件能获取到最新的参数
|
||||
this.$nextTick(() => {
|
||||
if (this.$refs[`priceSelect${index}`]) {
|
||||
this.$refs[`priceSelect${index}`].getOptionsAndSelectFirst();
|
||||
}
|
||||
});
|
||||
},
|
||||
// 优化展开行处理
|
||||
handleDetail(row) {
|
||||
|
@ -511,20 +536,25 @@ export default {
|
|||
inputPlaceholder: `请输入【${fieldName}】`,
|
||||
}).then(({ value }) => {
|
||||
let isEditPrice = ['priceCategory', 'priceSize', 'pricePattern', 'priceName'].includes(prop);
|
||||
this.$nextTick(() => {
|
||||
for (let i = 0; i < this.rows.length; i++) {
|
||||
let row = this.rows[i];
|
||||
row[prop] = value;
|
||||
}
|
||||
if (isEditPrice) {
|
||||
|
||||
// 先批量设置属性值
|
||||
for (let i = 0; i < this.rows.length; i++) {
|
||||
let row = this.rows[i];
|
||||
row[prop] = value;
|
||||
}
|
||||
|
||||
// 如果是修改价格相关字段,需要重新查询单价
|
||||
if (isEditPrice) {
|
||||
// 使用nextTick确保UI更新后再查询价格
|
||||
this.$nextTick(() => {
|
||||
for (let i = 0; i < this.rows.length; i++) {
|
||||
let index = this.form.productList.indexOf(this.rows[i]);
|
||||
if (index != -1) {
|
||||
this.selectPrice(index);
|
||||
}
|
||||
}
|
||||
}
|
||||
})
|
||||
});
|
||||
}
|
||||
this.$message.success(`批量编辑成功,一共修改了${this.rows.length}行数据`);
|
||||
})
|
||||
},
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
</span>
|
||||
</table-form-col>
|
||||
<table-form-col label="产量" :prop-prefix="propPrefix" prop="num" required :rules="rules.num" header-icon="el-icon-edit" @click-header="handleBatchEdit('num')">
|
||||
<el-input slot-scope="d" v-model="d.row.num" placeholder="请输入产量">
|
||||
<el-input slot-scope="d" v-model="d.row.num" placeholder="请输入产量" @change="(val) => handleChangeNum(d.row, val)">
|
||||
<template #append>
|
||||
{{prod.priceUnit | dv}}
|
||||
</template>
|
||||
|
@ -111,6 +111,21 @@ export default {
|
|||
}
|
||||
},
|
||||
methods: {
|
||||
handleChangeNum(row, val) {
|
||||
if (val != null) {
|
||||
if (typeof val === 'string' && /[+\-*/]/.test(val)) {
|
||||
try {
|
||||
// 使用eval计算公式
|
||||
row.num = eval(val);
|
||||
} catch (e) {
|
||||
console.error('公式计算错误:', e);
|
||||
row.num = notNullDecimal(val).toNumber();
|
||||
}
|
||||
} else {
|
||||
row.num = notNullDecimal(val).toNumber();
|
||||
}
|
||||
}
|
||||
},
|
||||
getSummary({ columns, data }) {
|
||||
const sums = [];
|
||||
columns.forEach((column, index) => {
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
</span>
|
||||
</table-form-col>
|
||||
<table-form-col label="产量" :prop-prefix="propPrefix" prop="num" required :rules="rules.num" header-icon="el-icon-edit" @click-header="handleBatchEdit('num')">
|
||||
<el-input slot-scope="d" v-model="d.row.num" placeholder="请输入产量" @change="handleChangeNum">
|
||||
<el-input slot-scope="d" v-model="d.row.num" placeholder="请输入产量" @change="(val) => handleChangeNum(d.row, val)">
|
||||
<template #append>
|
||||
{{prod.priceUnit | dv}}
|
||||
</template>
|
||||
|
@ -137,11 +137,23 @@ export default {
|
|||
return sums;
|
||||
},
|
||||
listUserWithShift,
|
||||
handleChangeNum() {
|
||||
handleChangeNum(row, val) {
|
||||
if (val != null) {
|
||||
if (typeof val === 'string' && /[+\-*/]/.test(val)) {
|
||||
try {
|
||||
// 使用eval计算公式
|
||||
row.num = eval(val);
|
||||
} catch (e) {
|
||||
console.error('公式计算错误:', e);
|
||||
row.num = notNullDecimal(val).toNumber();
|
||||
}
|
||||
} else {
|
||||
row.num = notNullDecimal(val).toNumber();
|
||||
}
|
||||
}
|
||||
this.emitChangeNum();
|
||||
},
|
||||
emitChangeNum() {
|
||||
console.log('emitChangeNum');
|
||||
this.$emit('change-num');
|
||||
},
|
||||
handleSelectionChange(selection) {
|
||||
|
|
|
@ -264,6 +264,7 @@ export default {
|
|||
{key: 'defectNum', visible: false, label: '不良品', minWidth: null, sortable: true, overflow: false, align: 'center', width: "100"},
|
||||
{key: 'pricePrice', visible: true, label: '单价', minWidth: null, sortable: true, overflow: false, align: 'right', width: null},
|
||||
{key: 'totalAmount', visible: true, label: '总价', minWidth: null, sortable: true, overflow: false, align: 'right', width: null},
|
||||
{key: 'remark', visible: true, label: '备注', minWidth: null, sortable: true, overflow: true, align: 'center', width: null},
|
||||
{key: 'priceSpec', visible: false, label: '规格', minWidth: null, sortable: true, overflow: false, align: 'center', width: null},
|
||||
{key: 'priceClassify', visible: false, label: '分类', minWidth: null, sortable: true, overflow: false, align: 'center', width: null},
|
||||
{key: 'priceQuantity', visible: false, label: '倍数', minWidth: null, sortable: true, overflow: false, align: 'center', width: null},
|
||||
|
|
Loading…
Reference in New Issue
Block a user