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 ...this.query
} }
try { try {
console.log("queryParams", this.queryParams);
let res = await listPrice(this.queryParams); let res = await listPrice(this.queryParams);
this.options = res.rows; this.options = res.rows;
this.total = res.total; this.total = res.total;
@ -142,6 +143,7 @@ export default {
// //
async getOptionsAndSelectFirst() { async getOptionsAndSelectFirst() {
await this.getOptions(); await this.getOptions();
console.log(this.options);
if (this.options.length > 0) { if (this.options.length > 0) {
let value = this.options[0].priceId; let value = this.options[0].priceId;
this.selectedValue = value; this.selectedValue = value;

View File

@ -431,7 +431,11 @@ export function notNullDecimal(val) {
if (isEmpty(val)) { if (isEmpty(val)) {
return new Decimal(0); 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> </el-select>
</table-form-col> </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')"> <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> <template #suffix>
{{d.row.priceUnit | dv}} {{d.row.priceUnit | dv}}
</template> </template>
@ -256,6 +256,8 @@ export default {
computed: { computed: {
priceQuery() { priceQuery() {
return (row) => { return (row) => {
// 使row
console.log("priceQuery with updated row data:", row);
return { return {
deptId: this.form.deptId, deptId: this.form.deptId,
statusList: PriceStatus.canUse(), statusList: PriceStatus.canUse(),
@ -282,6 +284,22 @@ export default {
this.showPattern = localStorage.getItem("report_show_pattern") === "true"; this.showPattern = localStorage.getItem("report_show_pattern") === "true";
}, },
methods: { 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() { getList() {
if (this.loadLoading) { if (this.loadLoading) {
return; return;
@ -358,7 +376,14 @@ export default {
}, },
// //
selectPrice(index) { 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) { handleDetail(row) {
@ -511,20 +536,25 @@ export default {
inputPlaceholder: `请输入【${fieldName}`, inputPlaceholder: `请输入【${fieldName}`,
}).then(({ value }) => { }).then(({ value }) => {
let isEditPrice = ['priceCategory', 'priceSize', 'pricePattern', 'priceName'].includes(prop); let isEditPrice = ['priceCategory', 'priceSize', 'pricePattern', 'priceName'].includes(prop);
this.$nextTick(() => {
for (let i = 0; i < this.rows.length; i++) { //
let row = this.rows[i]; for (let i = 0; i < this.rows.length; i++) {
row[prop] = value; let row = this.rows[i];
} row[prop] = value;
if (isEditPrice) { }
//
if (isEditPrice) {
// 使nextTickUI
this.$nextTick(() => {
for (let i = 0; i < this.rows.length; i++) { for (let i = 0; i < this.rows.length; i++) {
let index = this.form.productList.indexOf(this.rows[i]); let index = this.form.productList.indexOf(this.rows[i]);
if (index != -1) { if (index != -1) {
this.selectPrice(index); this.selectPrice(index);
} }
} }
} });
}) }
this.$message.success(`批量编辑成功,一共修改了${this.rows.length}行数据`); this.$message.success(`批量编辑成功,一共修改了${this.rows.length}行数据`);
}) })
}, },

View File

@ -27,7 +27,7 @@
</span> </span>
</table-form-col> </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')"> <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> <template #append>
{{prod.priceUnit | dv}} {{prod.priceUnit | dv}}
</template> </template>
@ -111,6 +111,21 @@ export default {
} }
}, },
methods: { 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 }) { getSummary({ columns, data }) {
const sums = []; const sums = [];
columns.forEach((column, index) => { columns.forEach((column, index) => {

View File

@ -17,7 +17,7 @@
</span> </span>
</table-form-col> </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')"> <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> <template #append>
{{prod.priceUnit | dv}} {{prod.priceUnit | dv}}
</template> </template>
@ -137,11 +137,23 @@ export default {
return sums; return sums;
}, },
listUserWithShift, 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(); this.emitChangeNum();
}, },
emitChangeNum() { emitChangeNum() {
console.log('emitChangeNum');
this.$emit('change-num'); this.$emit('change-num');
}, },
handleSelectionChange(selection) { 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: '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: '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: '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: '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: '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}, {key: 'priceQuantity', visible: false, label: '倍数', minWidth: null, sortable: true, overflow: false, align: 'center', width: null},