Skip to content

Commit

Permalink
MIJN-9914-Chore - Also Add BA (#1682)
Browse files Browse the repository at this point in the history
* Also Add BA

* Re-use existing
  • Loading branch information
timvanoostrom authored Dec 19, 2024
1 parent 720ecda commit 62662be
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
10 changes: 2 additions & 8 deletions src/server/services/afis/afis-facturen.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ const ROUTES = {
},
deelbetalingen: (uri: string) =>
decodeURI(uri).includes(
`IsCleared eq false and InvoiceReference ne '' and (AccountingDocumentType eq 'AB')`
`IsCleared eq false and InvoiceReference ne '' and`
),
};

Expand Down Expand Up @@ -699,13 +699,7 @@ describe('afis-facturen', async () => {
},
};

remoteApi
.get((uri) =>
decodeURI(uri).includes(
`IsCleared eq false and InvoiceReference ne '' and (AccountingDocumentType eq 'AB')`
)
)
.reply(200, deelbetalingenResponse);
remoteApi.get(ROUTES.deelbetalingen).reply(200, deelbetalingenResponse);

const params: AfisFacturenParams = {
state: 'deelbetalingen',
Expand Down
2 changes: 1 addition & 1 deletion src/server/services/afis/afis-facturen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const accountingDocumentTypesByState: Record<
open: ['DR', 'DG', 'DM', 'DE', 'DF', 'DV', 'DW'],
afgehandeld: ['DR', 'DE', 'DM', 'DV', 'DG', 'DF', 'DM', 'DW'],
overgedragen: ['DR', 'DE', 'DM', 'DV', 'DG', 'DF', 'DM', 'DW'],
deelbetalingen: ['AB'],
deelbetalingen: ['AB', 'BA'],
};

const select = `$select=IsCleared,ReverseDocument,Paylink,PostingDate,ProfitCenterName,DocumentReferenceID,AccountingDocument,AmountInBalanceTransacCrcy,NetDueDate,DunningLevel,DunningBlockingReason,SEPAMandate,ClearingDate,PaymentMethod`;
Expand Down

0 comments on commit 62662be

Please sign in to comment.