Skip to Content
Meniu
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
Această întrebare a fost marcată
5 Răspunsuri
12266 Vizualizări

How can I change the currency, whenever i try to do it this pops up -   You cannot change the currency of the company since some journal items already exist - 

Imagine profil
Abandonează
Cel mai bun răspuns

Hi,

When transactions with the currency are already made, such as creating accounting journals, it no longer allows you to change the company's currency.

Thank you.

Imagine profil
Abandonează
Cel mai bun răspuns

One dirty solution could be temporary change company_id of some registers using psql.


update account_journal set company_id = 'temp_company_id' where company_id = 'current_company_id';

update account_move set company_id = 'temp_company_id' where company_id = 'current_company_id';

update account_move_line set company_id = 'temp_company_id' where company_id = 'current_company_id';


After that you can change the currency of the company.

At the end you can return to the previous value of "company_id" of the modified registers.


Imagine profil
Abandonează
Cel mai bun răspuns

Hi,

Thank you for your solution.

I am getting this error while deleting a paid invoice:

ERROR: update or delete on table "account_move_line" violates foreign key constraint "account_partial_reconcile_debit_move_id_fkey" on table "accoun t_partial_reconcile"
DETAIL: Key (id)=(45) is still referenced from table "account_partial_reconcile".

Imagine profil
Abandonează
Cel mai bun răspuns

yea u can go to psql and use command
delete from account_move_line;
and delete all the transactions (ONLY IF YOU DONT NEED THOSE DUMMY ENTRIES)
Then you can change currency.

Imagine profil
Abandonează

This is not a proper solution.

What if those entries are real-time entries and are reconciled and you don't want to delete them?

didnt you see-> (ONLY IF YOU DONT NEED THOSE DUMMY ENTRIES).

Autor Cel mai bun răspuns

Thanks @cesar mateo

can i delete those transactions or make it go back to how it is, so i can change the currency?


Imagine profil
Abandonează