mirror of
https://github.com/OCA/contract.git
synced 2025-02-13 17:57:24 +02:00
Merge pull request #241 from sys-odoo/10.0_contract_lang_date_format_issue_199
[FIX] Issue-199: OCA-Contract V10, if not set Partner Language so languag…
This commit is contained in:
@@ -9,7 +9,7 @@
|
||||
|
||||
{
|
||||
'name': 'Contracts Management - Recurring',
|
||||
'version': '10.0.4.2.0',
|
||||
'version': '10.0.4.2.1',
|
||||
'category': 'Contract Management',
|
||||
'license': 'AGPL-3',
|
||||
'author': "OpenERP SA, "
|
||||
|
||||
@@ -198,8 +198,8 @@ class AccountAnalyticAccount(models.Model):
|
||||
contract = line.analytic_account_id
|
||||
if 'old_date' in self.env.context and 'next_date' in self.env.context:
|
||||
lang_obj = self.env['res.lang']
|
||||
lang = lang_obj.search(
|
||||
[('code', '=', contract.partner_id.lang)])
|
||||
code = contract.partner_id.lang or self.company_id.partner_id.lang
|
||||
lang = lang_obj.search([('code', '=', code)])
|
||||
date_format = lang.date_format or '%m/%d/%Y'
|
||||
name = self._insert_markers(
|
||||
line, self.env.context['old_date'],
|
||||
|
||||
Reference in New Issue
Block a user