Files
geg-gas-web/src/components/common/priceComposeListModal.vue

125 lines
5.2 KiB
Vue
Raw Normal View History

2026-02-06 17:33:38 +08:00
<template>
<div>
<BasicModal v-bind="$attrs" @register="registerModal" width="60%" :title="getTitle" @ok="handleSubmit">
<a-table :columns="columns" :data-source="tableData" :scroll="{x: 300}" :pagination="false">
<template #bodyCell="{ column, record, index }">
2026-02-10 15:08:56 +08:00
<template v-if="column.dataIndex === 'priceDesc'">
{{ record.uomName + (record.uomCode == 'M3' ? record.rateQtyM3 : record.rateQtyGj) + record.priceName }}
</template>
2026-02-10 17:45:43 +08:00
<template v-if="column.dataIndex === 'qtySettleGj' && !isDisable">
2026-02-06 17:33:38 +08:00
<a-input-number v-model:value="record.qtySettleGj" :min="0" :precision="3" @change="numChange('qtySettleGj', record, index)" style="width: 100%" />
</template>
2026-02-10 17:45:43 +08:00
<template v-if="column.dataIndex === 'qtySettleM3'&& !isDisable">
2026-02-06 17:33:38 +08:00
<a-input-number v-model:value="record.qtySettleM3" :min="0" :precision="3" @change="numChange('qtySettleM3', record, index)" style="width: 100%" />
</template>
2026-02-10 17:45:43 +08:00
<template v-if="column.dataIndex === 'priceM3'&& !isDisable">
2026-02-06 17:33:38 +08:00
<a-input-number v-model:value="record.priceM3" :min="0" :precision="4" @change="numChange('priceM3', record, index)" style="width: 100%" />
</template>
2026-02-10 17:45:43 +08:00
<template v-if="column.dataIndex === 'priceGj'&& !isDisable">
2026-02-06 17:33:38 +08:00
<a-input-number v-model:value="record.priceGj" :min="0" :precision="4" @change="numChange('priceGj', record, index)" style="width: 100%" />
</template>
2026-02-10 17:45:43 +08:00
<template v-if="column.dataIndex === 'amount'&& !isDisable">
2026-02-06 17:33:38 +08:00
<a-input-number v-model:value="record.amount" :min="0" :precision="2" @change="numChange('amount', record, index)" style="width: 100%" />
</template>
</template>
</a-table>
</BasicModal>
</div>
</template>
<script lang="ts" setup>
import { ref, computed, unref, nextTick } from 'vue';
import { BasicModal, useModalInner, useModal } from '/@/components/Modal';
import { useMessage } from '/@/hooks/web/useMessage';
import { useI18n } from '/@/hooks/web/useI18n';
2026-02-10 15:08:56 +08:00
import { getLngPngSettleHdrDtlList} from '/@/api/dayPlan/PngSettleHdr';
2026-02-12 14:07:35 +08:00
import { getLngPngSettleHdrDtlListPur} from '/@/api/dayPlan/PngSettleHdrPur';
2026-02-10 17:45:43 +08:00
import { DataFormat, FormatOption, DATE_FORMAT, FormatType } from '/@/utils/dataFormat';
2026-02-06 17:33:38 +08:00
const { t } = useI18n();
2026-02-10 15:08:56 +08:00
const tableData = ref([])
2026-02-06 17:33:38 +08:00
const curRecord = ref({})
2026-02-10 17:45:43 +08:00
const isDisable = ref(false)
2026-02-06 17:33:38 +08:00
const columns= [
{ title: t('序号'), dataIndex: 'index', key: 'index', customRender: (column) => `${column.index + 1}` ,width: 80},
{ title: t('价格描述'), dataIndex: 'priceDesc', width:130},
{ title: t('数量(吉焦)'), dataIndex: 'qtySettleGj', width: 120},
{ title: t('数量(方)'), dataIndex: 'qtySettleM3', width: 120},
{ title: t('价格(元/吉焦)'), dataIndex: 'priceGj', width: 120},
2026-02-11 16:58:15 +08:00
{ title: t('价格(元/方)'), dataIndex: 'priceM3', width: 120},
2026-02-06 17:33:38 +08:00
{ title: t('金额(元)'), dataIndex: 'amount', width: 120},
];
const emit = defineEmits(['success', 'register']);
2026-02-12 14:07:35 +08:00
const props = defineProps({
pageType: String
});
2026-02-06 17:33:38 +08:00
const { notification } = useMessage();
const isUpdate = ref(true);
const [registerModal, { setModalProps, closeModal }] = useModalInner(async (data) => {
setModalProps({ confirmLoading: false });
curRecord.value = data.record || {}
isUpdate.value = !!data?.isUpdate;
2026-02-10 17:45:43 +08:00
isDisable.value = data.isDisable
2026-02-12 14:07:35 +08:00
if (!(curRecord.value.lngPngSettleSalesDtlList || []).length || !(curRecord.value.lngPngSettlePurDtlList || []).length) {
2026-02-10 15:08:56 +08:00
getList()
2026-02-12 14:07:35 +08:00
} else {
if (props.pageType == 'supplier') {
tableData.value = curRecord.value.lngPngSettlePurDtlList || []
} else {
tableData.value = curRecord.value.lngPngSettleSalesDtlList || []
}
2026-02-10 17:45:43 +08:00
tableData.value = DataFormat.format(tableData.value, [
FormatOption.createQty('qtySettleGj'),
FormatOption.createQty('qtySettleM3'),
FormatOption.createAmt('amount'),
FormatOption.createQty('priceGj',4),
FormatOption.createQty('priceM3',4),
]);
2026-02-10 15:08:56 +08:00
}
2026-02-06 17:33:38 +08:00
});
const getTitle = computed(() => (!unref(isUpdate) ? t('价格组成') : t('')));
const numChange = (k, record, idx) => {
2026-02-10 15:08:56 +08:00
if (record.uomCode == 'M3') {
2026-02-06 17:33:38 +08:00
if (k=='amount') {
return
}
record.amount = ((Number(record.qtySettleM3) || 0) * (Number(record.priceM3) || 0)).toFixed(2)
}
2026-02-10 15:08:56 +08:00
if (record.uomCode == 'GJ') {
2026-02-06 17:33:38 +08:00
if (k=='amount') {
return
}
record.amount = ((Number(record.qtySettleGj) || 0) * (Number(record.priceGj) || 0)).toFixed(2)
}
2026-02-10 15:08:56 +08:00
}
const getList = async () => {
2026-02-12 14:07:35 +08:00
let request = props.pageType=='supplier'?getLngPngSettleHdrDtlListPur: getLngPngSettleHdrDtlList
let obj = {}
if (props.pageType=='supplier') {
obj.salesPurId = curRecord.value.salesPurId
} else {
obj.salesId = curRecord.value.salesId
}
let res = await request(obj)
2026-02-10 15:08:56 +08:00
tableData.value = res || []
2026-02-06 17:33:38 +08:00
}
async function handleSubmit() {
closeModal();
emit('success', tableData.value, curRecord.value);
}
</script>
<style >
</style>
<style lang="less" scoped>
</style>