summaryrefslogtreecommitdiff
path: root/lib/payment-terms
diff options
context:
space:
mode:
authorjoonhoekim <26rote@gmail.com>2025-08-04 11:27:55 +0000
committerjoonhoekim <26rote@gmail.com>2025-08-04 11:27:55 +0000
commit4f3948a66b34c5b14fabbc4e96245782b544c4d9 (patch)
treeb3f092d7ecc04aacc03e72435f6c568ad23f2cdb /lib/payment-terms
parent305a29e0e245ed9de1a7f4d32e96634116dcda82 (diff)
(김준회) 빌드 오류 해결, non-sap sync 기반이므로 기준정보 생성/수정/삭제 기능 주석 처리
Diffstat (limited to 'lib/payment-terms')
-rw-r--r--lib/payment-terms/table/payment-terms-table-toolbar.tsx4
-rw-r--r--lib/payment-terms/table/payment-terms-table.tsx4
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/payment-terms/table/payment-terms-table-toolbar.tsx b/lib/payment-terms/table/payment-terms-table-toolbar.tsx
index 51ac9b93..72c7b523 100644
--- a/lib/payment-terms/table/payment-terms-table-toolbar.tsx
+++ b/lib/payment-terms/table/payment-terms-table-toolbar.tsx
@@ -19,7 +19,7 @@ export function PaymentTermsTableToolbarActions({ table, onSuccess }: PaymentTer
return (
<div className="flex items-center gap-2">
{/** 1) 선택된 로우가 있으면 삭제 다이얼로그 */}
- {table.getFilteredSelectedRowModel().rows.length > 0 ? (
+ {/* {table.getFilteredSelectedRowModel().rows.length > 0 ? (
<DeletePaymentTermsDialog
paymentTerms={table
.getFilteredSelectedRowModel()
@@ -31,7 +31,7 @@ export function PaymentTermsTableToolbarActions({ table, onSuccess }: PaymentTer
/>
) : null}
- <PaymentTermsAddDialog onSuccess={onSuccess} />
+ <PaymentTermsAddDialog onSuccess={onSuccess} /> */}
{/** 3) Export 버튼 */}
<Button
diff --git a/lib/payment-terms/table/payment-terms-table.tsx b/lib/payment-terms/table/payment-terms-table.tsx
index ddf270ce..288fbad3 100644
--- a/lib/payment-terms/table/payment-terms-table.tsx
+++ b/lib/payment-terms/table/payment-terms-table.tsx
@@ -127,7 +127,7 @@ export function PaymentTermsTable({ promises }: PaymentTermsTableProps) {
</DataTableAdvancedToolbar>
</DataTable>
- <DeletePaymentTermsDialog
+ {/* <DeletePaymentTermsDialog
open={rowAction?.type === "delete"}
onOpenChange={() => setRowAction(null)}
paymentTerms={rowAction?.row.original ? [rowAction?.row.original] : []}
@@ -143,7 +143,7 @@ export function PaymentTermsTable({ promises }: PaymentTermsTableProps) {
onOpenChange={() => setRowAction(null)}
data={rowAction?.row.original ?? null}
onSuccess={refreshData}
- />
+ /> */}
</>
);
} \ No newline at end of file