Change Currency

How do i change currency of a specific field? i want to change the Amount, Total, Grand Total USD to USD, my deafault Currency is PHP, should i use custom script or something to do in the Option of the field?

I think this can be done in global defaults/setting where you set the defaults.

i want my default currency to be php i just want that specific field to be USD

You can make different price lists. If you need only for clients, not suppliers, you need to make another selling price list:
https://erpnext.org/docs/user/manual/en/setting-up/price-lists

try this on .js side i hope it will help you …
const formatter = new Intl.NumberFormat(‘en-US’, {
style: ‘currency’,
currency: ‘USD’,
minimumFractionDigits: 2
})
var total = ( parseFloat(frm.doc.total));
frm.set_value(“Total USD”,formatter.format(total));

Hello, I am interested how the currency can be swapped if needed, also needed for example the incoterms, payment terms (exw, cif, dap, ddp ddu … payment % before, after, advance …