1、调整导入运单

2、调整对账
This commit is contained in:
2026-09-10 02:01:28 +08:00
parent 70bb94a2e6
commit 6ff672211f
9 changed files with 272 additions and 38 deletions
@@ -50,6 +50,9 @@
:precision="2"
disabled
/>
<span v-else-if="field.prop === 'reconciliationMode'">
{{ reconciliationModeLabel }}
</span>
<span v-else>{{ displayValue(form[field.prop]) }}</span>
</el-form-item>
</el-col>
@@ -1084,6 +1087,7 @@ export default {
const params = {
settlementType: this.settlementType,
keyword: this.formalDialog.query.keyword,
approvalStatus: 'draft',
};
const data = this.unwrapData(
await api.getFormalOptions(
@@ -1098,7 +1102,7 @@ export default {
const fallback = await formalSettlementApi.getList(
this.formalDialog.page.current,
this.formalDialog.page.size,
{ ...params, approvalStatus: 'approved' }
params
);
const fallbackData = this.unwrapData(fallback);
rows = fallbackData.records || [];