Skip to content

Commit

Permalink
UINV-534 Invoice line Subscription fields are not populated correctly…
Browse files Browse the repository at this point in the history
… on Invoice line pane
  • Loading branch information
NikitaSedyx authored Feb 7, 2024
1 parent cfffaa0 commit aadd59a
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ const getResultFormatter = ({ search }) => ({
fiscalYear: invoiceLine => invoiceLine.fiscalYear?.code || <NoValue />,
[COLUMN_INVOICE_DATE]: invoiceLine => <FormattedDate value={invoiceLine.invoice?.invoiceDate} />,
vendorCode: invoiceLine => invoiceLine.vendor?.code || <NoValue />,
subscriptionStart: invoiceLine => getFormattedDate(invoiceLine.fiscalYear?.periodStart),
subscriptionEnd: invoiceLine => getFormattedDate(invoiceLine.fiscalYear?.periodEnd),
subscriptionDescription: invoiceLine => invoiceLine.fiscalYear?.description || <NoValue />,
subscriptionStart: invoiceLine => getFormattedDate(invoiceLine.subscriptionStart),
subscriptionEnd: invoiceLine => getFormattedDate(invoiceLine.subscriptionEnd),
subscriptionDescription: invoiceLine => invoiceLine.subscriptionInfo || <NoValue />,
vendorInvoiceNo: invoiceLine => (
invoiceLine.invoice?.vendorInvoiceNo
? (
Expand Down

0 comments on commit aadd59a

Please sign in to comment.