refactor: refs #7202 modified procedure to include customsAgent field when creating an invoice

This commit is contained in:
Jon Elias 2024-10-01 10:39:57 +02:00
parent 698ef3dec3
commit a6799cba0f
1 changed files with 7 additions and 4 deletions

View File

@ -105,7 +105,8 @@ BEGIN
clientFk,
dued,
companyFk,
siiTypeInvoiceOutFk
siiTypeInvoiceOutFk,
customsAgentFk
)
SELECT
1,
@ -118,9 +119,11 @@ BEGIN
vCplusCorrectingInvoiceTypeFk,
IF(vSerial = vSimplifiedSerial,
vCplusSimplifiedInvoiceTypeFk,
vCplusStandardInvoiceTypeFk))
FROM client
WHERE id = vClientFk;
vCplusStandardInvoiceTypeFk)),
a.customsAgentFk
FROM client c
JOIN address a ON a.id = c.defaultAddressFk
WHERE c.id = vClientFk;
SET vNewInvoiceId = LAST_INSERT_ID();