|
|
@@ -90,7 +90,7 @@ const columnWidths: Record<string, string> = {
|
|
|
발주처: "w-[15%]",
|
|
|
공사명: "w-[35%]",
|
|
|
계약금액: "w-[15%]",
|
|
|
- 계약일: "w-[11%]",
|
|
|
+ // 계약일: "w-[11%]",
|
|
|
착공일: "w-[11%]",
|
|
|
준공일: "w-[13%]",
|
|
|
};
|
|
|
@@ -152,7 +152,7 @@ const Sheet: React.FC = () => {
|
|
|
<col className={columnWidths["발주처"]} />
|
|
|
<col className={columnWidths["공사명"]} />
|
|
|
<col className={columnWidths["계약금액"]} />
|
|
|
- <col className={columnWidths["계약일"]} />
|
|
|
+ {/*<col className={columnWidths["계약일"]} />*/}
|
|
|
<col className={columnWidths["착공일"]} />
|
|
|
<col className={columnWidths["준공일"]} />
|
|
|
</colgroup>
|
|
|
@@ -161,7 +161,7 @@ const Sheet: React.FC = () => {
|
|
|
<th className="border-b border-r border-gray-200 px-2 py-3 bg-blue-50 font-semibold text-gray-700">발주처</th>
|
|
|
<th className="border-b border-r border-gray-200 px-2 py-3 bg-blue-50 font-semibold text-gray-700">공사명</th>
|
|
|
<th className="border-b border-r border-gray-200 px-2 py-3 bg-blue-50 font-semibold text-gray-700">계약금액</th>
|
|
|
- <th className="border-b border-r border-gray-200 px-2 py-3 bg-blue-50 font-semibold text-gray-700">계약일</th>
|
|
|
+ {/*<th className="border-b border-r border-gray-200 px-2 py-3 bg-blue-50 font-semibold text-gray-700">계약일</th>*/}
|
|
|
<th className="border-b border-r border-gray-200 px-2 py-3 bg-blue-50 font-semibold text-gray-700">착공일</th>
|
|
|
<th className="border-b border-gray-200 px-2 py-3 bg-blue-50 font-semibold text-gray-700">준공일</th>
|
|
|
</tr>
|
|
|
@@ -177,7 +177,7 @@ const Sheet: React.FC = () => {
|
|
|
? new Intl.NumberFormat("ko-KR").format(row["계약금액"])
|
|
|
: row["계약금액"]}
|
|
|
</td>
|
|
|
- <td className="border-b border-r border-gray-200 px-2 py-2 w-[11%] text-center text-gray-600">{row["계약일"]}</td>
|
|
|
+ {/*<td className="border-b border-r border-gray-200 px-2 py-2 w-[11%] text-center text-gray-600">{row["계약일"]}</td>*/}
|
|
|
<td className="border-b border-r border-gray-200 px-2 py-2 w-[11%] text-center text-gray-600">{row["착공일"]}</td>
|
|
|
<td className="border-b border-gray-200 px-2 py-2 w-[13%] text-center text-gray-600">{row["준공일"]}</td>
|
|
|
</tr>
|