summaryrefslogtreecommitdiff
path: root/lib/po
diff options
context:
space:
mode:
authordujinkim <dujin.kim@dtsolution.co.kr>2025-07-09 12:19:05 +0000
committerdujinkim <dujin.kim@dtsolution.co.kr>2025-07-09 12:19:05 +0000
commit6d654b1ba2c19e0bf1745b636908e3b00a0f02c7 (patch)
treef6d48c0d3a65b428a828acea5db65db8e7bf0db8 /lib/po
parent44794a8628997c0d979adb5bd6711cd848b3e397 (diff)
(대표님) 20250709 변경사항 (약 18시 30분까지)
Diffstat (limited to 'lib/po')
-rw-r--r--lib/po/service.ts2
-rw-r--r--lib/po/table/item-dialog.tsx2
-rw-r--r--lib/po/table/po-table-columns.tsx2
3 files changed, 3 insertions, 3 deletions
diff --git a/lib/po/service.ts b/lib/po/service.ts
index f62b57fa..99033854 100644
--- a/lib/po/service.ts
+++ b/lib/po/service.ts
@@ -289,7 +289,7 @@ export async function requestSignatures(
},
{
tabLabel: "remark",
- value: `결제 조건: ${contract.paymentTerms}
+ value: `지급 조건: ${contract.paymentTerms}
납품 조건: ${contract.deliveryTerms}
납품 기한: ${contract.deliveryDate}
납품 장소: ${contract.deliveryLocation}
diff --git a/lib/po/table/item-dialog.tsx b/lib/po/table/item-dialog.tsx
index a6690e75..ce4e4741 100644
--- a/lib/po/table/item-dialog.tsx
+++ b/lib/po/table/item-dialog.tsx
@@ -147,7 +147,7 @@ export function ItemsDialog({ open, onOpenChange, po }: ItemsDialogProps) {
<div className="mt-3 pt-2 border-t text-xs text-muted-foreground flex items-center">
<Clock className="mr-1 h-3 w-3" />
- Updated: {formatDate(item.updatedAt)}
+ Updated: {formatDate(item.updatedAt, "KR")}
</div>
</CardContent>
</Card>
diff --git a/lib/po/table/po-table-columns.tsx b/lib/po/table/po-table-columns.tsx
index 6834e543..7edd2435 100644
--- a/lib/po/table/po-table-columns.tsx
+++ b/lib/po/table/po-table-columns.tsx
@@ -250,7 +250,7 @@ export function getColumns({ setRowAction }: GetColumnsProps): ColumnDef<Contrac
// 날짜 포맷, 숫자 포맷 등 처리
if (cfg.type === "date") {
const dateVal = cell.getValue() as Date
- return formatDate(dateVal)
+ return formatDate(dateVal, "KR")
}
// ...
return row.getValue(cfg.id) ?? ""