Перейти к содержимому
Меню
Чтобы взаимодействовать с сообществом, необходимо зарегистрироваться.
Этот вопрос был отмечен
5 Ответы
12272 Представления

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 - 

Аватар
Отменить
Лучший ответ

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.

Аватар
Отменить
Лучший ответ

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.


Аватар
Отменить
Лучший ответ

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".

Аватар
Отменить
Лучший ответ

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.

Аватар
Отменить

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).

Автор Лучший ответ

Thanks @cesar mateo

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


Аватар
Отменить