fix: refs #8581 update field references for supplier withholding in InvoiceInDescriptorMenu
This commit is contained in:
parent
9a5c1240c9
commit
dfb5cfb513
|
@ -113,8 +113,8 @@ async function cloneInvoice() {
|
||||||
const isAgricultural = () => {
|
const isAgricultural = () => {
|
||||||
if (!config.value) return false;
|
if (!config.value) return false;
|
||||||
return (
|
return (
|
||||||
invoiceIn.value?.supplier?.sageFarmerWithholdingFk ===
|
invoiceIn.value?.supplier?.sageWithholdingFk ===
|
||||||
config?.value[0]?.sageWithholdingFk
|
config?.value[0]?.sageFarmerWithholdingFk
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
function showPdfInvoice() {
|
function showPdfInvoice() {
|
||||||
|
@ -174,7 +174,7 @@ const createInvoiceInCorrection = async () => {
|
||||||
/>
|
/>
|
||||||
<FetchData
|
<FetchData
|
||||||
url="InvoiceInConfigs"
|
url="InvoiceInConfigs"
|
||||||
:where="{ fields: ['sageWithholdingFk'] }"
|
:where="{ fields: ['sageFarmerWithholdingFk'] }"
|
||||||
auto-load
|
auto-load
|
||||||
@on-fetch="(data) => (config = data)"
|
@on-fetch="(data) => (config = data)"
|
||||||
/>
|
/>
|
||||||
|
|
Loading…
Reference in New Issue