Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion altinkaya_account/i18n/altinkaya_account.pot
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,21 @@ msgstr ""
#. odoo-python
#: code:addons/altinkaya_account/models/res_partner.py:0
#, python-format
msgid "KDV %s oranlı vergi tanımlanmamış!"
msgid "KFARK journal not found!"
msgstr ""

#. module: altinkaya_account
#. odoo-python
#: code:addons/altinkaya_account/models/res_partner.py:0
#, python-format
msgid "VAT tax with %s%% rate not found!"
msgstr ""

#. module: altinkaya_account
#. odoo-python
#: code:addons/altinkaya_account/models/res_partner.py:0
#, python-format
msgid "Currency difference for the following invoices:\n"
msgstr ""

#. module: altinkaya_account
Expand Down
18 changes: 16 additions & 2 deletions altinkaya_account/i18n/tr.po
Original file line number Diff line number Diff line change
Expand Up @@ -501,8 +501,22 @@ msgstr "Yevmiye Adı"
#. odoo-python
#: code:addons/altinkaya_account/models/res_partner.py:0
#, python-format
msgid "KDV %s oranlı vergi tanımlanmamış!"
msgstr ""
msgid "KFARK journal not found!"
msgstr "KFARK günlüğü bulunamadı!"

#. module: altinkaya_account
#. odoo-python
#: code:addons/altinkaya_account/models/res_partner.py:0
#, python-format
msgid "VAT tax with %s%% rate not found!"
msgstr "KDV %%%s oranlı vergi tanımlanmamış!"

#. module: altinkaya_account
#. odoo-python
#: code:addons/altinkaya_account/models/res_partner.py:0
#, python-format
msgid "Currency difference for the following invoices:\n"
msgstr "Aşağıdaki faturaların kur farkıdır:\n"

#. module: altinkaya_account
#: model_terms:ir.ui.view,arch_db:altinkaya_account.view_partner_form
Expand Down
9 changes: 9 additions & 0 deletions altinkaya_account/models/account_full_reconcile.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,3 +73,12 @@ def get_report_data(self):
res = self.env.cr.dictfetchall()

return res

def unlink(self):
"""When removing a full reconciliation, also remove partial reconciliations."""
partial_rec_to_unlink = self.env["account.partial.reconcile"]
for rec in self:
partial_rec_to_unlink |= rec.partial_reconcile_ids
res = super().unlink()
partial_rec_to_unlink.unlink()
return res
Loading
Loading