Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

4935 Change ledger number column to "invoice no." #5393

Merged
merged 2 commits into from
Nov 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions client/packages/common/src/intl/locales/en/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -738,7 +738,7 @@
"label.initialise-store-properties": "Initialise store properties for GAPS",
"label.initialised": "Initialised",
"label.installation-date": "Installation date",
"label.invoice-number": "Number",
"label.invoice-number": "Invoice Number",
"label.is-vaccine": "Vaccine",
"label.issue": "Issue",
"label.item-variant": "Item Variant",
Expand Down Expand Up @@ -1666,4 +1666,4 @@
"warning.caps-lock": "Warning: Caps lock is on",
"warning.field-not-parsed": "{{field}} not parsed",
"warning.nothing-to-supply": "Nothing left to supply!"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export const useLedgerColumns = (
},
{
key: ColumnKey.Number,
label: 'label.number',
label: 'label.invoice-number',
accessor: ({ rowData }) => rowData.invoiceNumber,
sortable: false,
},
Expand Down
Loading