diff options
| author | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-07-09 06:25:43 +0000 |
|---|---|---|
| committer | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-07-09 06:25:43 +0000 |
| commit | bcc7603a7aea83341728557445fb4bc78129cca2 (patch) | |
| tree | 85dd97e53508caaed3c10a9ef94291156668e5ed /db | |
| parent | ccca806e803baf87bbc97cb2c49b0065673b7a6b (diff) | |
(최겸) 구매 결제 조건 -> 지급 조건 용어 변경
Diffstat (limited to 'db')
| -rw-r--r-- | db/schema/contract.ts | 2 | ||||
| -rw-r--r-- | db/schema/rfq.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/db/schema/contract.ts b/db/schema/contract.ts index 226fecfa..f56fc36e 100644 --- a/db/schema/contract.ts +++ b/db/schema/contract.ts @@ -40,7 +40,7 @@ export const contracts = pgTable("contracts", { endDate: date("end_date"), // 계약 종료일/유효 기간 등 // --- PO에 자주 쓰이는 필드 추가 --- - paymentTerms: text("payment_terms"), // 결제 조건(예: 30일 후 현금, 선금/잔금 등) + paymentTerms: text("payment_terms"), // 지급 조건(예: 30일 후 현금, 선금/잔금 등) deliveryTerms: text("delivery_terms"), // 납품 조건(Incoterms 등) deliveryDate: date("delivery_date"), // 납품 기한(납기 예정일) deliveryLocation: varchar("delivery_location", { length: 255 }), // 납품 장소 diff --git a/db/schema/rfq.ts b/db/schema/rfq.ts index 4e35dd10..66357972 100644 --- a/db/schema/rfq.ts +++ b/db/schema/rfq.ts @@ -294,7 +294,7 @@ export const cbeEvaluations = pgTable("cbe_evaluations", { // 통화 currency: varchar("currency", { length: 10 }).default("USD"), - // 결제 조건, 인도 조건, 기타 상업 조건 + // 지급 조건, 인도 조건, 기타 상업 조건 paymentTerms: varchar("payment_terms", { length: 255 }), incoterms: varchar("incoterms", { length: 50 }), deliverySchedule: text("delivery_schedule"), // 정해진 형식이 있다면 varchar, 아니면 text |
