diff --git a/client/src/components/accounting-payments-table/accounting-payments-table.component.jsx b/client/src/components/accounting-payments-table/accounting-payments-table.component.jsx
index f738cd0ea..edaa05187 100644
--- a/client/src/components/accounting-payments-table/accounting-payments-table.component.jsx
+++ b/client/src/components/accounting-payments-table/accounting-payments-table.component.jsx
@@ -85,6 +85,17 @@ export function AccountingPayablesTableComponent({ bodyshop, loading, payments,
sortOrder: state.sortedInfo.columnKey === "amount" && state.sortedInfo.order,
render: (text, record) => {record.amount}
},
+ {
+ title: t("payments.fields.type"),
+ dataIndex: "type",
+ key: "type",
+ sorter: (a, b) => a.type.localeCompare(b.type),
+ sortOrder: state.sortedInfo.columnKey === "type" && state.sortedInfo.order,
+ filters: bodyshop.md_payment_types.map((s) => {
+ return { text: s, value: [s] };
+ }),
+ onFilter: (value, record) => value.includes(record.type)
+ },
{
title: t("payments.fields.memo"),
dataIndex: "memo",
diff --git a/client/src/components/jobs-close-export-button/jobs-close-export-button.component.jsx b/client/src/components/jobs-close-export-button/jobs-close-export-button.component.jsx
index e84b31595..f22da1eab 100644
--- a/client/src/components/jobs-close-export-button/jobs-close-export-button.component.jsx
+++ b/client/src/components/jobs-close-export-button/jobs-close-export-button.component.jsx
@@ -173,7 +173,7 @@ export function JobsCloseExportButton({
}
});
- if (!!!jobUpdateResponse.errors) {
+ if (!jobUpdateResponse.errors) {
notification.open({
type: "success",
key: "jobsuccessexport",
@@ -222,7 +222,7 @@ export function JobsCloseExportButton({
};
return (
-