|
|
@ -103,7 +103,7 @@ const DialogFormProyek = ({ openDialog, closeDialog, toggleDialog, idTask, dataT |
|
|
|
const result = await axios.get(CURRENCY_LIST, HEADER).then(res => res).catch(err => err.response) |
|
|
|
const result = await axios.get(CURRENCY_LIST, HEADER).then(res => res).catch(err => err.response) |
|
|
|
const defaultVal = result.data.data.find(val => val.cc == "IDR") |
|
|
|
const defaultVal = result.data.data.find(val => val.cc == "IDR") |
|
|
|
setCurrencyList(result.data.data) |
|
|
|
setCurrencyList(result.data.data) |
|
|
|
setCurrencySymbol(`${defaultVal.cc}|${defaultVal.symbol}|${defaultVal.name}`) |
|
|
|
setCurrencySymbol(`${defaultVal.symbol}`) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
const handleClearData = () => { |
|
|
|
const handleClearData = () => { |
|
|
@ -441,7 +441,7 @@ const DialogFormProyek = ({ openDialog, closeDialog, toggleDialog, idTask, dataT |
|
|
|
<Label className="capitalize">Budget<span style={{ color: "red" }}>*</span></Label> |
|
|
|
<Label className="capitalize">Budget<span style={{ color: "red" }}>*</span></Label> |
|
|
|
<Row> |
|
|
|
<Row> |
|
|
|
<Col md={4}> |
|
|
|
<Col md={4}> |
|
|
|
<Select value={currencySymbol} defaultValue="IDR|Rp|Indonesian rupiah" onChange={onChangeCurrency} placeholder="Select Currency" style={{ width: '100%' }}> |
|
|
|
<Select value={currencySymbol} onChange={onChangeCurrency} placeholder="Select Currency" style={{ width: '100%' }}> |
|
|
|
{currencyList && currencyList.map(res => ( |
|
|
|
{currencyList && currencyList.map(res => ( |
|
|
|
<Option key={res.id} value={`${res.cc}|${res.symbol}|${res.name}`}>{`${res.cc}`}</Option> |
|
|
|
<Option key={res.id} value={`${res.cc}|${res.symbol}|${res.name}`}>{`${res.cc}`}</Option> |
|
|
|
))} |
|
|
|
))} |
|
|
|