From ba8cd44a0ed2c613a5f2cee06bfc9bd0f61f21c7 Mon Sep 17 00:00:00 2001 From: dujinkim Date: Fri, 7 Nov 2025 08:39:04 +0000 Subject: (최겸) 입찰/견적 수정사항 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../vendor/components/pr-items-pricing-table.tsx | 27 +++++++++++++++++----- 1 file changed, 21 insertions(+), 6 deletions(-) (limited to 'lib/bidding/vendor/components/pr-items-pricing-table.tsx') diff --git a/lib/bidding/vendor/components/pr-items-pricing-table.tsx b/lib/bidding/vendor/components/pr-items-pricing-table.tsx index 483bce5c..efa10af2 100644 --- a/lib/bidding/vendor/components/pr-items-pricing-table.tsx +++ b/lib/bidding/vendor/components/pr-items-pricing-table.tsx @@ -32,16 +32,27 @@ import { interface PrItem { id: number + biddingId: number itemNumber: string | null - prNumber: string | null + projectId: number | null + projectInfo: string | null itemInfo: string | null - materialDescription: string | null + shi: string | null + materialGroupNumber: string | null + materialGroupInfo: string | null + materialNumber: string | null + materialInfo: string | null + requestedDeliveryDate: Date | null + annualUnitPrice: string | null + currency: string | null quantity: string | null quantityUnit: string | null totalWeight: string | null weightUnit: string | null - currency: string | null - requestedDeliveryDate: string | null + priceUnit: string | null + purchaseUnit: string | null + materialWeight: string | null + prNumber: string | null hasSpecDocument: boolean | null } @@ -283,8 +294,10 @@ export function PrItemsPricingTable({ 자재내역 수량 단위 + 구매단위 중량 중량단위 + 가격단위 SHI 납품요청일 견적단가 견적금액 @@ -315,18 +328,20 @@ export function PrItemsPricingTable({ -
- {item.materialDescription || '-'} +
+ {item.materialInfo || '-'}
{item.quantity ? parseFloat(item.quantity).toLocaleString() : '-'} {item.quantityUnit || '-'} + {item.purchaseUnit || '-'} {item.totalWeight ? parseFloat(item.totalWeight).toLocaleString() : '-'} {item.weightUnit || '-'} + {item.priceUnit || '-'} {item.requestedDeliveryDate ? formatDate(item.requestedDeliveryDate, 'KR') : '-' -- cgit v1.2.3