When I post a direct entry of cash or bank through Accounting > Journal Entries, I am unable to find the Cash or Bank Journal there. It shows only the journals that have Miscellaneous type. How can I fix it so that I can get the Cash and Bank type Journal there?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Akuntansi
- Inventaris
- PoS
- Project
- MRP
Pertanyaan ini telah diberikan tanda
Hello,
We have a module that solves this problem.
Here is the link: https://apps.odoo.com/apps/modules/18.0/rrm_all_journal
Kind regards,
Hi,
By default in odoo, if you create a Journal entry directly form Journal Entries, it will take the miscellaneous type of Journal. Bank and Cash Journals are used for the Payment.
If you want to have option to select all the journals you can customize by either remove this domain for the field journal_id from account.move model or you can modify the function _compute_suitable_journal_ids to not checking the type of journal as below:
@api.depends('company_id', 'invoice_filter_type_domain')
def _compute_suitable_journal_ids(self):
for m in self:
journal_type = m.invoice_filter_type_domain or 'general'
company = m.company_id or self.env.company
m.suitable_journal_ids = self.env['account.journal'].search([
*self.env['account.journal']._check_company_domain(company)
])
Hope this will help you
Thanks
Hi,
Please check this:
https://www.odoo.com/forum/help-1/why-bank-type-journal-is-not-showing-in-journal-entries-213299
Hope it helps
For manual Journal entry, it will support only the journal with type "Miscellaneous". There is a domain applied for the journal in journal Item.
If you want to change the domain / listing.. please over ride following function.
@api.depends('company_id', 'invoice_filter_type_domain')
def _compute_suitable_journal_ids(self):
for m in self:
journal_type = m.invoice_filter_type_domain or 'general'
company = m.company_id or self.env.company
m.suitable_journal_ids = self.env['account.journal'].search([
*self.env['account.journal']._check_company_domain(company),
('type', '=', journal_type),
])
Menikmati diskusi? Jangan hanya membaca, ikuti!
Buat akun sekarang untuk menikmati fitur eksklufi dan agar terlibat dengan komunitas kami!
DaftarPost Terkait | Replies | Tampilan | Aktivitas | |
---|---|---|---|---|
Odoo10 - how to delete bank entry in Accounting
Diselesaikan
|
|
5
Mar 17
|
10118 | |
|
1
Mei 16
|
14248 | ||
|
2
Jun 23
|
4730 | ||
|
1
Apr 22
|
3347 | ||
|
1
Sep 17
|
6290 |