diff --git a/src/components/material/ReceivingManagement/actions.ts b/src/components/material/ReceivingManagement/actions.ts
index db78735d..9e9fb219 100644
--- a/src/components/material/ReceivingManagement/actions.ts
+++ b/src/components/material/ReceivingManagement/actions.ts
@@ -497,7 +497,7 @@ function transformFrontendToApi(
if (data.remark !== undefined) result.remark = data.remark;
if (data.receivingQty !== undefined) result.receiving_qty = data.receivingQty;
if (data.receivingDate !== undefined) result.receiving_date = data.receivingDate;
- if (data.lotNo !== undefined) result.lot_no = data.lotNo;
+ // lot_no는 API가 자동 채번하므로 프론트에서 전송하지 않음
if (data.supplierMaterialNo !== undefined) result.material_no = data.supplierMaterialNo;
if (data.manufacturer !== undefined) result.manufacturer = data.manufacturer;
if (data.certificateFileId !== undefined) result.certificate_file_id = data.certificateFileId;
@@ -511,7 +511,7 @@ function transformProcessDataToApi(
): Record
{
return {
receiving_qty: data.receivingQty,
- lot_no: data.receivingLot,
+ // lot_no는 API가 자동 채번하므로 프론트에서 전송하지 않음
supplier_lot: data.supplierLot,
receiving_location: data.receivingLocation,
remark: data.remark,
diff --git a/src/components/pricing/PricingListClient.tsx b/src/components/pricing/PricingListClient.tsx
index ba867b9e..4aff63be 100644
--- a/src/components/pricing/PricingListClient.tsx
+++ b/src/components/pricing/PricingListClient.tsx
@@ -13,7 +13,6 @@ import {
Package,
AlertCircle,
CheckCircle2,
- RefreshCw,
} from 'lucide-react';
import { Button } from '@/components/ui/button';
import { Badge } from '@/components/ui/badge';
@@ -326,18 +325,19 @@ export function PricingListClient({
};
// 헤더 액션 (함수로 정의)
- const headerActions = () => (
-
- );
+ // NOTE: 품목 마스터 동기화 버튼 - 실제 로직 미구현 상태로 주석처리
+ // const headerActions = () => (
+ //
+ // );
// UniversalListPage 설정
const pricingConfig: UniversalListConfig = {
@@ -356,7 +356,7 @@ export function PricingListClient({
},
columns: tableColumns,
- headerActions,
+ // headerActions, // 품목 마스터 동기화 버튼 미구현으로 주석처리
stats,
tabs,