deubg
This commit is contained in:
parent
d0af518339
commit
57bab40cc9
|
@ -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;
|
||||||
|
|
|
@ -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);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -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) {
|
||||||
|
// 使用nextTick确保UI更新后再查询价格
|
||||||
|
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}行数据`);
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|
|
@ -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) => {
|
||||||
|
|
|
@ -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) {
|
||||||
|
|
|
@ -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},
|
||||||
|
|
Loading…
Reference in New Issue
Block a user