feat: 공급업체 및 거래처 관리 페이지에서 거래유형 라벨 수정 및 메인 설정 로직 개선
This commit is contained in:
@@ -1788,12 +1788,12 @@ export default function SupplierManagementPage() {
|
||||
/>
|
||||
</div>
|
||||
<div className="space-y-1.5">
|
||||
<Label className="text-sm">거래 유형</Label>
|
||||
<Label className="text-sm">공급업체 유형</Label>
|
||||
<Select
|
||||
value={supplierForm.division || "__none__"}
|
||||
onValueChange={(v) => setSupplierForm((p) => ({ ...p, division: v === "__none__" ? "" : v }))}
|
||||
>
|
||||
<SelectTrigger className="h-9"><SelectValue placeholder="거래 유형" /></SelectTrigger>
|
||||
<SelectTrigger className="h-9"><SelectValue placeholder="공급업체 유형" /></SelectTrigger>
|
||||
<SelectContent>
|
||||
<SelectItem value="__none__">선택 안 함</SelectItem>
|
||||
{(categoryOptions["division"] || []).map((o) => (
|
||||
|
||||
Reference in New Issue
Block a user