This commit is contained in:
磷叶 2025-03-28 08:58:40 +08:00
parent d0af518339
commit 57bab40cc9
6 changed files with 79 additions and 15 deletions

View File

@ -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;

View File

@ -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);
}
}
/**

View File

@ -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) {
// 使nextTickUI
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}行数据`);
})
},

View File

@ -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) => {

View File

@ -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) {

View File

@ -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},