mirror of
https://github.com/OCA/contract.git
synced 2025-02-13 17:57:24 +02:00
[RFR] PEP8
This commit is contained in:
@@ -26,10 +26,13 @@
|
|||||||
'category': 'Other',
|
'category': 'Other',
|
||||||
'description': """
|
'description': """
|
||||||
This module add a new feature in contracts to manage recurring invoice
|
This module add a new feature in contracts to manage recurring invoice
|
||||||
=======================================================================================
|
======================================================================
|
||||||
|
|
||||||
This is a backport of the new V8 feature available in trunk and saas. With the V8 release this module will be deprecated.
|
This is a backport of the new V8 feature available in trunk and saas. With
|
||||||
It also add a little feature, you can use #START# and #END# in the contract line to automatically insert the dates of the invoiced period.
|
the V8 release this module will be deprecated.
|
||||||
|
|
||||||
|
It also add a little feature, you can use #START# and #END# in the contract
|
||||||
|
line to automatically insert the dates of the invoiced period.
|
||||||
|
|
||||||
Backport done By Yannick Buron.
|
Backport done By Yannick Buron.
|
||||||
""",
|
""",
|
||||||
@@ -41,7 +44,7 @@ Backport done By Yannick Buron.
|
|||||||
'account_analytic_analysis_recurring_view.xml',
|
'account_analytic_analysis_recurring_view.xml',
|
||||||
],
|
],
|
||||||
'demo': [''],
|
'demo': [''],
|
||||||
'test':[],
|
'test': [],
|
||||||
'installable': True,
|
'installable': True,
|
||||||
'images': [],
|
'images': [],
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -24,62 +24,82 @@ import logging
|
|||||||
import time
|
import time
|
||||||
|
|
||||||
from openerp.osv import osv, fields
|
from openerp.osv import osv, fields
|
||||||
from openerp.osv.orm import intersect, except_orm
|
|
||||||
import openerp.tools
|
|
||||||
from openerp.tools.translate import _
|
from openerp.tools.translate import _
|
||||||
|
|
||||||
from openerp.addons.decimal_precision import decimal_precision as dp
|
from openerp.addons.decimal_precision import decimal_precision as dp
|
||||||
|
|
||||||
_logger = logging.getLogger(__name__)
|
_logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
class account_analytic_invoice_line(osv.osv):
|
class account_analytic_invoice_line(osv.osv):
|
||||||
_name = "account.analytic.invoice.line"
|
_name = "account.analytic.invoice.line"
|
||||||
|
|
||||||
def _amount_line(self, cr, uid, ids, prop, unknow_none, unknow_dict, context=None):
|
def _amount_line(
|
||||||
|
self, cr, uid, ids, prop, unknow_none, unknow_dict, context=None):
|
||||||
res = {}
|
res = {}
|
||||||
for line in self.browse(cr, uid, ids, context=context):
|
for line in self.browse(cr, uid, ids, context=context):
|
||||||
res[line.id] = line.quantity * line.price_unit
|
res[line.id] = line.quantity * line.price_unit
|
||||||
if line.analytic_account_id.pricelist_id:
|
if line.analytic_account_id.pricelist_id:
|
||||||
cur = line.analytic_account_id.pricelist_id.currency_id
|
cur = line.analytic_account_id.pricelist_id.currency_id
|
||||||
res[line.id] = self.pool.get('res.currency').round(cr, uid, cur, res[line.id])
|
res[line.id] = self.pool.get('res.currency').round(
|
||||||
|
cr, uid, cur, res[line.id])
|
||||||
return res
|
return res
|
||||||
|
|
||||||
_columns = {
|
_columns = {
|
||||||
'product_id': fields.many2one('product.product','Product',required=True),
|
'product_id': fields.many2one(
|
||||||
'analytic_account_id': fields.many2one('account.analytic.account', 'Analytic Account'),
|
'product.product', 'Product', required=True),
|
||||||
|
'analytic_account_id': fields.many2one(
|
||||||
|
'account.analytic.account', 'Analytic Account'),
|
||||||
'name': fields.text('Description', required=True),
|
'name': fields.text('Description', required=True),
|
||||||
'quantity': fields.float('Quantity', required=True),
|
'quantity': fields.float('Quantity', required=True),
|
||||||
'uom_id': fields.many2one('product.uom', 'Unit of Measure',required=True),
|
'uom_id': fields.many2one(
|
||||||
|
'product.uom', 'Unit of Measure', required=True),
|
||||||
'price_unit': fields.float('Unit Price', required=True),
|
'price_unit': fields.float('Unit Price', required=True),
|
||||||
'price_subtotal': fields.function(_amount_line, string='Sub Total', type="float",digits_compute= dp.get_precision('Account')),
|
'price_subtotal': fields.function(
|
||||||
|
_amount_line, string='Sub Total',
|
||||||
|
type="float", digits_compute=dp.get_precision('Account')),
|
||||||
}
|
}
|
||||||
_defaults = {
|
_defaults = {
|
||||||
'quantity' : 1,
|
'quantity': 1,
|
||||||
}
|
}
|
||||||
|
|
||||||
def product_id_change(self, cr, uid, ids, product, uom_id, qty=0, name='', partner_id=False, price_unit=False, pricelist_id=False, company_id=None, context=None):
|
def product_id_change(
|
||||||
|
self, cr, uid, ids, product, uom_id, qty=0, name='',
|
||||||
|
partner_id=False, price_unit=False, pricelist_id=False,
|
||||||
|
company_id=None, context=None):
|
||||||
context = context or {}
|
context = context or {}
|
||||||
uom_obj = self.pool.get('product.uom')
|
uom_obj = self.pool.get('product.uom')
|
||||||
company_id = company_id or False
|
company_id = company_id or False
|
||||||
context.update({'company_id': company_id, 'force_company': company_id, 'pricelist_id': pricelist_id})
|
context.update(
|
||||||
|
{'company_id': company_id,
|
||||||
|
'force_company': company_id,
|
||||||
|
'pricelist_id': pricelist_id})
|
||||||
|
|
||||||
if not product:
|
if not product:
|
||||||
return {'value': {'price_unit': 0.0}, 'domain':{'product_uom':[]}}
|
return {
|
||||||
|
'value': {'price_unit': 0.0},
|
||||||
|
'domain': {'product_uom': []}}
|
||||||
if partner_id:
|
if partner_id:
|
||||||
part = self.pool.get('res.partner').browse(cr, uid, partner_id, context=context)
|
part = self.pool.get('res.partner').browse(
|
||||||
|
cr, uid, partner_id, context=context)
|
||||||
if part.lang:
|
if part.lang:
|
||||||
context.update({'lang': part.lang})
|
context.update({'lang': part.lang})
|
||||||
|
|
||||||
result = {}
|
result = {}
|
||||||
res = self.pool.get('product.product').browse(cr, uid, product, context=context)
|
res = self.pool.get('product.product').browse(
|
||||||
result.update({'name':res.partner_ref or False,'uom_id': uom_id or res.uom_id.id or False, 'price_unit': res.list_price or 0.0})
|
cr, uid, product, context=context)
|
||||||
|
result.update(
|
||||||
|
{'name': res.partner_ref or False,
|
||||||
|
'uom_id': uom_id or res.uom_id.id or False,
|
||||||
|
'price_unit': res.list_price or 0.0})
|
||||||
if res.description:
|
if res.description:
|
||||||
result['name'] += '\n'+res.description
|
result['name'] += '\n'+res.description
|
||||||
|
|
||||||
res_final = {'value':result}
|
res_final = {'value': result}
|
||||||
if result['uom_id'] != res.uom_id.id:
|
if result['uom_id'] != res.uom_id.id:
|
||||||
selected_uom = uom_obj.browse(cr, uid, result['uom_id'], context=context)
|
new_price = uom_obj._compute_price(
|
||||||
new_price = uom_obj._compute_price(cr, uid, res.uom_id.id, res_final['value']['price_unit'], result['uom_id'])
|
cr, uid, res.uom_id.id,
|
||||||
|
res_final['value']['price_unit'], result['uom_id'])
|
||||||
res_final['value']['price_unit'] = new_price
|
res_final['value']['price_unit'] = new_price
|
||||||
return res_final
|
return res_final
|
||||||
|
|
||||||
@@ -89,25 +109,32 @@ class account_analytic_account(osv.osv):
|
|||||||
_inherit = "account.analytic.account"
|
_inherit = "account.analytic.account"
|
||||||
|
|
||||||
_columns = {
|
_columns = {
|
||||||
'recurring_invoice_line_ids': fields.one2many('account.analytic.invoice.line', 'analytic_account_id', 'Invoice Lines'),
|
'recurring_invoice_line_ids': fields.one2many(
|
||||||
'recurring_invoices' : fields.boolean('Generate recurring invoices automatically'),
|
'account.analytic.invoice.line', 'analytic_account_id',
|
||||||
'recurring_rule_type': fields.selection([
|
'Invoice Lines'),
|
||||||
('daily', 'Day(s)'),
|
'recurring_invoices': fields.boolean(
|
||||||
|
'Generate recurring invoices automatically'),
|
||||||
|
'recurring_rule_type': fields.selection(
|
||||||
|
[('daily', 'Day(s)'),
|
||||||
('weekly', 'Week(s)'),
|
('weekly', 'Week(s)'),
|
||||||
('monthly', 'Month(s)'),
|
('monthly', 'Month(s)'),
|
||||||
('yearly', 'Year(s)'),
|
('yearly', 'Year(s)'),
|
||||||
], 'Recurrency', help="Invoice automatically repeat at specified interval"),
|
], 'Recurrency',
|
||||||
'recurring_interval': fields.integer('Repeat Every', help="Repeat every (Days/Week/Month/Year)"),
|
help="Invoice automatically repeat at specified interval"),
|
||||||
|
'recurring_interval': fields.integer(
|
||||||
|
'Repeat Every', help="Repeat every (Days/Week/Month/Year)"),
|
||||||
'recurring_next_date': fields.date('Date of Next Invoice'),
|
'recurring_next_date': fields.date('Date of Next Invoice'),
|
||||||
}
|
}
|
||||||
|
|
||||||
_defaults = {
|
_defaults = {
|
||||||
'recurring_interval': 1,
|
'recurring_interval': 1,
|
||||||
'recurring_next_date': lambda *a: time.strftime('%Y-%m-%d'),
|
'recurring_next_date': lambda *a: time.strftime('%Y-%m-%d'),
|
||||||
'recurring_rule_type':'monthly'
|
'recurring_rule_type': 'monthly'
|
||||||
}
|
}
|
||||||
|
|
||||||
def onchange_recurring_invoices(self, cr, uid, ids, recurring_invoices, date_start=False, context=None):
|
def onchange_recurring_invoices(
|
||||||
|
self, cr, uid, ids, recurring_invoices,
|
||||||
|
date_start=False, context=None):
|
||||||
value = {}
|
value = {}
|
||||||
if date_start and recurring_invoices:
|
if date_start and recurring_invoices:
|
||||||
value = {'value': {'recurring_next_date': date_start}}
|
value = {'value': {'recurring_next_date': date_start}}
|
||||||
@@ -122,23 +149,31 @@ class account_analytic_account(osv.osv):
|
|||||||
lang_obj = self.pool.get('res.lang')
|
lang_obj = self.pool.get('res.lang')
|
||||||
|
|
||||||
if not contract.partner_id:
|
if not contract.partner_id:
|
||||||
raise osv.except_osv(_('No Customer Defined!'),_("You must first select a Customer for Contract %s!") % contract.name )
|
raise osv.except_osv(
|
||||||
|
_('No Customer Defined!'),
|
||||||
|
_("You must first select a Customer for Contract %s!") %
|
||||||
|
contract.name)
|
||||||
|
|
||||||
fpos = contract.partner_id.property_account_position or False
|
fpos = contract.partner_id.property_account_position or False
|
||||||
journal_ids = journal_obj.search(cr, uid, [('type', '=','sale'),('company_id', '=', contract.company_id.id or False)], limit=1)
|
journal_ids = journal_obj.search(
|
||||||
|
cr, uid,
|
||||||
|
[('type', '=', 'sale'),
|
||||||
|
('company_id', '=', contract.company_id.id or False)],
|
||||||
|
limit=1)
|
||||||
if not journal_ids:
|
if not journal_ids:
|
||||||
raise osv.except_osv(_('Error!'),
|
raise osv.except_osv(
|
||||||
_('Please define a sale journal for the company "%s".') % (contract.company_id.name or '', ))
|
_('Error!'),
|
||||||
|
_('Please define a sale journal for the company "%s".') %
|
||||||
partner_payment_term = contract.partner_id.property_payment_term and contract.partner_id.property_payment_term.id or False
|
(contract.company_id.name or '', ))
|
||||||
|
|
||||||
|
partner_payment_term = contract.partner_id.property_payment_term.id
|
||||||
|
|
||||||
inv_data = {
|
inv_data = {
|
||||||
'reference': contract.code or False,
|
'reference': contract.code or False,
|
||||||
'account_id': contract.partner_id.property_account_receivable.id,
|
'account_id': contract.partner_id.property_account_receivable.id,
|
||||||
'type': 'out_invoice',
|
'type': 'out_invoice',
|
||||||
'partner_id': contract.partner_id.id,
|
'partner_id': contract.partner_id.id,
|
||||||
'currency_id': contract.partner_id.property_product_pricelist.id or False,
|
'currency_id': contract.partner_id.property_product_pricelist.id,
|
||||||
'journal_id': len(journal_ids) and journal_ids[0] or False,
|
'journal_id': len(journal_ids) and journal_ids[0] or False,
|
||||||
'date_invoice': contract.recurring_next_date,
|
'date_invoice': contract.recurring_next_date,
|
||||||
'origin': contract.name,
|
'origin': contract.name,
|
||||||
@@ -160,10 +195,15 @@ class account_analytic_account(osv.osv):
|
|||||||
tax_id = fpos_obj.map_tax(cr, uid, fpos, taxes)
|
tax_id = fpos_obj.map_tax(cr, uid, fpos, taxes)
|
||||||
|
|
||||||
if 'old_date' in context:
|
if 'old_date' in context:
|
||||||
lang_ids = lang_obj.search(cr, uid, [('code', '=', contract.partner_id.lang)], context=context)
|
lang_ids = lang_obj.search(
|
||||||
format = lang_obj.browse(cr, uid, lang_ids, context=context)[0].date_format
|
cr, uid, [('code', '=', contract.partner_id.lang)],
|
||||||
line.name = line.name.replace('#START#', context['old_date'].strftime(format))
|
context=context)
|
||||||
line.name = line.name.replace('#END#', context['next_date'].strftime(format))
|
format = lang_obj.browse(
|
||||||
|
cr, uid, lang_ids, context=context)[0].date_format
|
||||||
|
line.name = line.name.replace(
|
||||||
|
'#START#', context['old_date'].strftime(format))
|
||||||
|
line.name = line.name.replace(
|
||||||
|
'#END#', context['next_date'].strftime(format))
|
||||||
|
|
||||||
invoice_line_vals = {
|
invoice_line_vals = {
|
||||||
'name': line.name,
|
'name': line.name,
|
||||||
@@ -173,10 +213,11 @@ class account_analytic_account(osv.osv):
|
|||||||
'quantity': line.quantity,
|
'quantity': line.quantity,
|
||||||
'uos_id': line.uom_id.id or False,
|
'uos_id': line.uom_id.id or False,
|
||||||
'product_id': line.product_id.id or False,
|
'product_id': line.product_id.id or False,
|
||||||
'invoice_id' : invoice_id,
|
'invoice_id': invoice_id,
|
||||||
'invoice_line_tax_id': [(6, 0, tax_id)],
|
'invoice_line_tax_id': [(6, 0, tax_id)],
|
||||||
}
|
}
|
||||||
self.pool.get('account.invoice.line').create(cr, uid, invoice_line_vals, context=context)
|
self.pool.get('account.invoice.line').create(
|
||||||
|
cr, uid, invoice_line_vals, context=context)
|
||||||
|
|
||||||
inv_obj.button_compute(cr, uid, [invoice_id], context=context)
|
inv_obj.button_compute(cr, uid, [invoice_id], context=context)
|
||||||
return invoice_id
|
return invoice_id
|
||||||
@@ -185,10 +226,15 @@ class account_analytic_account(osv.osv):
|
|||||||
context = context or {}
|
context = context or {}
|
||||||
current_date = time.strftime('%Y-%m-%d')
|
current_date = time.strftime('%Y-%m-%d')
|
||||||
|
|
||||||
contract_ids = self.search(cr, uid, [('recurring_next_date','<=', current_date), ('state','=', 'open'), ('recurring_invoices','=', True)])
|
contract_ids = self.search(
|
||||||
|
cr, uid,
|
||||||
|
[('recurring_next_date', '<=', current_date),
|
||||||
|
('state', '=', 'open'),
|
||||||
|
('recurring_invoices', '=', True)])
|
||||||
for contract in self.browse(cr, uid, contract_ids, context=context):
|
for contract in self.browse(cr, uid, contract_ids, context=context):
|
||||||
|
|
||||||
next_date = datetime.datetime.strptime(contract.recurring_next_date or current_date, "%Y-%m-%d")
|
next_date = datetime.datetime.strptime(
|
||||||
|
contract.recurring_next_date or current_date, "%Y-%m-%d")
|
||||||
interval = contract.recurring_interval
|
interval = contract.recurring_interval
|
||||||
if contract.recurring_rule_type == 'daily':
|
if contract.recurring_rule_type == 'daily':
|
||||||
old_date = next_date-relativedelta(days=+interval)
|
old_date = next_date-relativedelta(days=+interval)
|
||||||
@@ -201,9 +247,13 @@ class account_analytic_account(osv.osv):
|
|||||||
new_date = next_date+relativedelta(months=+interval)
|
new_date = next_date+relativedelta(months=+interval)
|
||||||
|
|
||||||
context['old_date'] = old_date
|
context['old_date'] = old_date
|
||||||
context['next_date'] = datetime.datetime.strptime(contract.recurring_next_date or current_date,"%Y-%m-%d")
|
context['next_date'] = datetime.datetime.strptime(
|
||||||
invoice_id = self._prepare_invoice(cr, uid, contract, context=context)
|
contract.recurring_next_date or current_date, "%Y-%m-%d")
|
||||||
|
self._prepare_invoice(
|
||||||
|
cr, uid, contract, context=context)
|
||||||
|
|
||||||
self.write(cr, uid, [contract.id], {'recurring_next_date': new_date.strftime('%Y-%m-%d')}, context=context)
|
self.write(
|
||||||
|
cr, uid, [contract.id],
|
||||||
|
{'recurring_next_date': new_date.strftime('%Y-%m-%d')},
|
||||||
|
context=context)
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user