2018-03-15 17:28:21 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
# Copyright 2018 Youssef El Ouahby <youssef@yaltik.com>
|
|
|
|
# Copyright 2018 Fabien Bourgeois <fabien@yaltik.com>
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Affero General Public License as
|
|
|
|
# published by the Free Software Foundation, either version 3 of the
|
|
|
|
# License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Affero General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
""" GOLEM Resource Reservation Adaptation"""
|
|
|
|
|
2018-03-16 18:38:18 +01:00
|
|
|
|
2018-03-15 17:28:21 +01:00
|
|
|
from odoo import models, fields, api, _
|
2018-03-26 11:11:16 +02:00
|
|
|
from odoo.exceptions import ValidationError
|
2018-03-15 17:28:21 +01:00
|
|
|
|
|
|
|
|
|
|
|
class GolemResourceReservation(models.Model):
|
|
|
|
""" GOLEM Resource Reservation Adaptation """
|
|
|
|
_inherit = 'golem.resource.reservation'
|
|
|
|
|
2018-03-26 11:37:31 +02:00
|
|
|
resource_product_id = fields.Many2one(related='resource_id.product_tmpl_id')
|
2018-03-16 16:13:18 +01:00
|
|
|
invoice_id = fields.Many2one('account.invoice')
|
2018-03-26 11:01:34 +02:00
|
|
|
invoicing_state = fields.Selection(related="invoice_id.state",
|
|
|
|
string="Invoicing Status", default="None")
|
2018-03-16 16:13:18 +01:00
|
|
|
|
2018-03-16 16:04:33 +01:00
|
|
|
|
2018-03-15 17:28:21 +01:00
|
|
|
@api.multi
|
|
|
|
def create_invoice(self):
|
2018-03-26 11:01:34 +02:00
|
|
|
""" Invoice creation """
|
2018-03-15 17:28:21 +01:00
|
|
|
for reservation in self:
|
|
|
|
inv_obj = self.env['account.invoice']
|
|
|
|
partner_id = reservation.partner_id
|
|
|
|
product = reservation.resource_id.product_tmpl_id
|
|
|
|
amount = product.standard_price
|
|
|
|
|
2018-03-26 11:11:16 +02:00
|
|
|
if not product:
|
|
|
|
raise ValidationError(_('You can not create an invoice without '
|
|
|
|
'linked product on the resource reserved.'))
|
2018-03-16 16:04:33 +01:00
|
|
|
|
2018-03-26 11:11:16 +02:00
|
|
|
account_id = product.property_account_income_id.id or \
|
|
|
|
product.categ_id.property_account_income_categ_id.id
|
2018-03-16 16:04:33 +01:00
|
|
|
|
2018-03-15 17:28:21 +01:00
|
|
|
if not account_id:
|
2018-03-26 11:11:16 +02:00
|
|
|
raise ValidationError(
|
2018-03-26 11:22:36 +02:00
|
|
|
_('There is no income account defined for this product: "{}"'
|
|
|
|
'. You have to configure it on the product form.'.format(product.name)))
|
2018-03-16 16:13:18 +01:00
|
|
|
|
2018-03-16 18:38:18 +01:00
|
|
|
reservation.invoice_id = inv_obj.create({
|
2018-03-26 11:22:36 +02:00
|
|
|
'origin': reservation.name,
|
2018-03-15 17:28:21 +01:00
|
|
|
'type': 'out_invoice',
|
|
|
|
'reference': False,
|
|
|
|
'account_id': partner_id.property_account_receivable_id.id,
|
|
|
|
'partner_id': partner_id.id,
|
|
|
|
'invoice_line_ids': [(0, 0, {
|
|
|
|
'name': reservation.resource_id.name,
|
2018-03-26 11:22:36 +02:00
|
|
|
'origin': reservation.name,
|
2018-03-15 17:28:21 +01:00
|
|
|
'account_id': account_id,
|
|
|
|
'price_unit': amount,
|
|
|
|
'quantity': 1.0,
|
|
|
|
'discount': 0.0,
|
|
|
|
'uom_id': product.uom_id.id,
|
|
|
|
'product_id': product.id,
|
2018-03-26 11:22:36 +02:00
|
|
|
})]
|
2018-03-15 17:28:21 +01:00
|
|
|
})
|