mirror of
https://github.com/OCA/bank-payment.git
synced 2025-02-02 10:37:31 +02:00
[FIX] check partner_id on statement line is defined before browsing further
[FIX] translation typo
This commit is contained in:
@@ -1844,7 +1844,7 @@ class account_bank_statement_line(osv.osv):
|
||||
# Define the voucher
|
||||
voucher = {
|
||||
'journal_id': st_line.statement_id.journal_id.id,
|
||||
'partner_id': st_line.partner_id.id,
|
||||
'partner_id': st_line.partner_id and st_line.partner_id.id,
|
||||
'company_id': st_line.company_id.id,
|
||||
'type':voucher_type,
|
||||
'company_id': st_line.company_id.id,
|
||||
|
||||
@@ -1192,7 +1192,7 @@ msgstr "remote_owner_custno"
|
||||
#: view:account.banking.imported.file:0
|
||||
#: field:account.banking.imported.file,log:0
|
||||
msgid "Import Log"
|
||||
msgstr "Impotlog"
|
||||
msgstr "Importlog"
|
||||
|
||||
#. module: account_banking
|
||||
#: field:banking.import.line,date:0
|
||||
|
||||
Reference in New Issue
Block a user