mirror of
https://github.com/bringout/oca-ocb-sale.git
synced 2026-04-27 22:32:03 +02:00
19.0 vanilla
This commit is contained in:
parent
79f83631d5
commit
73afc09215
6267 changed files with 1534193 additions and 1130106 deletions
|
|
@ -1,6 +1,4 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import project_create_sale_order
|
||||
from . import project_create_invoice
|
||||
from . import sale_make_invoice_advance
|
||||
|
|
|
|||
|
|
@ -1,58 +0,0 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import api, fields, models, _
|
||||
from odoo.exceptions import UserError
|
||||
|
||||
|
||||
class ProjectCreateInvoice(models.TransientModel):
|
||||
_name = 'project.create.invoice'
|
||||
_description = "Create Invoice from project"
|
||||
|
||||
@api.model
|
||||
def default_get(self, fields):
|
||||
result = super(ProjectCreateInvoice, self).default_get(fields)
|
||||
|
||||
active_model = self._context.get('active_model')
|
||||
if active_model != 'project.project':
|
||||
raise UserError(_('You can only apply this action from a project.'))
|
||||
|
||||
active_id = self._context.get('active_id')
|
||||
if 'project_id' in fields and active_id:
|
||||
result['project_id'] = active_id
|
||||
return result
|
||||
|
||||
project_id = fields.Many2one('project.project', "Project", help="Project to make billable", required=True)
|
||||
_candidate_orders = fields.Many2many('sale.order', compute='_compute_candidate_orders')
|
||||
sale_order_id = fields.Many2one(
|
||||
'sale.order', string="Choose the Sales Order to invoice", required=True,
|
||||
domain="[('id', 'in', _candidate_orders)]"
|
||||
)
|
||||
amount_to_invoice = fields.Monetary("Amount to invoice", compute='_compute_amount_to_invoice', currency_field='currency_id', help="Total amount to invoice on the sales order, including all items (services, storables, expenses, ...)")
|
||||
currency_id = fields.Many2one(related='sale_order_id.currency_id', readonly=True)
|
||||
|
||||
@api.depends('project_id.tasks.sale_line_id.order_id.invoice_status')
|
||||
def _compute_candidate_orders(self):
|
||||
for p in self:
|
||||
p._candidate_orders = p.project_id\
|
||||
.mapped('tasks.sale_line_id.order_id')\
|
||||
.filtered(lambda so: so.invoice_status == 'to invoice')
|
||||
|
||||
@api.depends('sale_order_id')
|
||||
def _compute_amount_to_invoice(self):
|
||||
for wizard in self:
|
||||
amount_untaxed = 0.0
|
||||
amount_tax = 0.0
|
||||
for line in wizard.sale_order_id.order_line.filtered(lambda sol: sol.invoice_status == 'to invoice'):
|
||||
amount_untaxed += line.price_reduce * line.qty_to_invoice
|
||||
amount_tax += line.price_tax
|
||||
wizard.amount_to_invoice = amount_untaxed + amount_tax
|
||||
|
||||
def action_create_invoice(self):
|
||||
if not self.sale_order_id and self.sale_order_id.invoice_status != 'to invoice':
|
||||
raise UserError(_("The selected Sales Order should contain something to invoice."))
|
||||
action = self.env["ir.actions.actions"]._for_xml_id("sale.action_view_sale_advance_payment_inv")
|
||||
action['context'] = {
|
||||
'active_ids': self.sale_order_id.ids
|
||||
}
|
||||
return action
|
||||
|
|
@ -1,31 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<odoo>
|
||||
|
||||
<record id="project_create_invoice_view_form" model="ir.ui.view">
|
||||
<field name="name">project.create.invoice.view.form</field>
|
||||
<field name="model">project.create.invoice</field>
|
||||
<field name="arch" type="xml">
|
||||
<form string="Create Sales Order from Project">
|
||||
<group>
|
||||
<field name="project_id" readonly="1"/>
|
||||
<field name="_candidate_orders" invisible="1"/>
|
||||
<field name="sale_order_id" options="{'no_create_edit': True}" context="{'sale_show_partner_name': True}"/>
|
||||
<field name="amount_to_invoice"/>
|
||||
</group>
|
||||
<footer>
|
||||
<button string="Create Invoice" type="object" name="action_create_invoice" class="oe_highlight" data-hotkey="q"/>
|
||||
<button string="Cancel" special="cancel" data-hotkey="z" type="object" class="btn btn-secondary oe_inline"/>
|
||||
</footer>
|
||||
</form>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="project_project_action_multi_create_invoice" model="ir.actions.act_window">
|
||||
<field name="name">Create Invoice</field>
|
||||
<field name="res_model">project.create.invoice</field>
|
||||
<field name="view_mode">form</field>
|
||||
<field name="view_id" ref="project_create_invoice_view_form"/>
|
||||
<field name="target">new</field>
|
||||
</record>
|
||||
|
||||
</odoo>
|
||||
|
|
@ -1,273 +0,0 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import api, fields, models, _
|
||||
from odoo.exceptions import UserError
|
||||
|
||||
|
||||
class ProjectCreateSalesOrder(models.TransientModel):
|
||||
_name = 'project.create.sale.order'
|
||||
_description = "Create SO from project"
|
||||
|
||||
@api.model
|
||||
def default_get(self, fields):
|
||||
result = super(ProjectCreateSalesOrder, self).default_get(fields)
|
||||
|
||||
active_model = self._context.get('active_model')
|
||||
if active_model != 'project.project':
|
||||
raise UserError(_("You can only apply this action from a project."))
|
||||
|
||||
active_id = self._context.get('active_id')
|
||||
if 'project_id' in fields and active_id:
|
||||
project = self.env['project.project'].browse(active_id)
|
||||
if project.sale_order_id:
|
||||
raise UserError(_("The project has already a sale order."))
|
||||
result['project_id'] = active_id
|
||||
if not result.get('partner_id', False):
|
||||
result['partner_id'] = project.partner_id.id
|
||||
if project.pricing_type != 'task_rate' and not result.get('line_ids', False):
|
||||
if project.pricing_type == 'employee_rate':
|
||||
default_product = self.env.ref('sale_timesheet.time_product', False)
|
||||
result['line_ids'] = [
|
||||
(0, 0, {
|
||||
'employee_id': e.employee_id.id,
|
||||
'product_id': e.timesheet_product_id.id or default_product.id,
|
||||
'price_unit': e.price_unit if e.timesheet_product_id else default_product.lst_price
|
||||
}) for e in project.sale_line_employee_ids]
|
||||
employee_from_timesheet = project.task_ids.timesheet_ids.employee_id - project.sale_line_employee_ids.employee_id
|
||||
result['line_ids'] += [
|
||||
(0, 0, {
|
||||
'employee_id': e.id,
|
||||
'product_id': default_product.id,
|
||||
'price_unit': default_product.lst_price
|
||||
}) for e in employee_from_timesheet]
|
||||
return result
|
||||
|
||||
project_id = fields.Many2one('project.project', "Project", domain=[('sale_line_id', '=', False)], help="Project for which we are creating a sales order", required=True)
|
||||
company_id = fields.Many2one(related='project_id.company_id')
|
||||
partner_id = fields.Many2one('res.partner', string="Customer", required=True, help="Customer of the sales order")
|
||||
commercial_partner_id = fields.Many2one(related='partner_id.commercial_partner_id')
|
||||
|
||||
sale_order_id = fields.Many2one(
|
||||
'sale.order', string="Sales Order",
|
||||
domain="['|', '|', ('partner_id', '=', partner_id), ('partner_id', 'child_of', commercial_partner_id), ('partner_id', 'parent_of', partner_id)]")
|
||||
|
||||
line_ids = fields.One2many('project.create.sale.order.line', 'wizard_id', string='Lines')
|
||||
info_invoice = fields.Char(compute='_compute_info_invoice')
|
||||
|
||||
@api.depends('sale_order_id')
|
||||
def _compute_info_invoice(self):
|
||||
for line in self:
|
||||
domain = self.env['sale.order.line']._timesheet_compute_delivered_quantity_domain()
|
||||
timesheet = self.env['account.analytic.line'].read_group(domain + [('task_id', 'in', line.project_id.tasks.ids), ('so_line', '=', False), ('timesheet_invoice_id', '=', False)], ['unit_amount'], ['task_id'])
|
||||
unit_amount = round(sum(t.get('unit_amount', 0) for t in timesheet), 2) if timesheet else 0
|
||||
if not unit_amount:
|
||||
line.info_invoice = False
|
||||
continue
|
||||
company_uom = self.env.company.timesheet_encode_uom_id
|
||||
label = _("hours")
|
||||
if company_uom == self.env.ref('uom.product_uom_day'):
|
||||
label = _("days")
|
||||
line.info_invoice = _("%(amount)s %(label)s will be added to the new Sales Order.", amount=unit_amount, label=label)
|
||||
|
||||
@api.onchange('partner_id')
|
||||
def _onchange_partner_id(self):
|
||||
self.sale_order_id = False
|
||||
|
||||
def action_create_sale_order(self):
|
||||
# if project linked to SO line or at least on tasks with SO line, then we consider project as billable.
|
||||
if self.project_id.sale_line_id:
|
||||
raise UserError(_("The project is already linked to a sales order item."))
|
||||
# at least one line
|
||||
if not self.line_ids:
|
||||
raise UserError(_("At least one line should be filled."))
|
||||
|
||||
if self.line_ids.employee_id:
|
||||
# all employee having timesheet should be in the wizard map
|
||||
timesheet_employees = self.env['account.analytic.line'].search([('task_id', 'in', self.project_id.tasks.ids)]).mapped('employee_id')
|
||||
map_employees = self.line_ids.mapped('employee_id')
|
||||
missing_meployees = timesheet_employees - map_employees
|
||||
if missing_meployees:
|
||||
raise UserError(_('The Sales Order cannot be created because you did not enter some employees that entered timesheets on this project. Please list all the relevant employees before creating the Sales Order.\nMissing employee(s): %s') % (', '.join(missing_meployees.mapped('name'))))
|
||||
|
||||
# check here if timesheet already linked to SO line
|
||||
timesheet_with_so_line = self.env['account.analytic.line'].search_count([('task_id', 'in', self.project_id.tasks.ids), ('so_line', '!=', False)])
|
||||
if timesheet_with_so_line:
|
||||
raise UserError(_('The sales order cannot be created because some timesheets of this project are already linked to another sales order.'))
|
||||
|
||||
# create SO according to the chosen billable type
|
||||
sale_order = self._create_sale_order()
|
||||
|
||||
view_form_id = self.env.ref('sale.view_order_form').id
|
||||
action = self.env["ir.actions.actions"]._for_xml_id("sale.action_orders")
|
||||
action.update({
|
||||
'views': [(view_form_id, 'form')],
|
||||
'view_mode': 'form',
|
||||
'name': sale_order.name,
|
||||
'res_id': sale_order.id,
|
||||
})
|
||||
return action
|
||||
|
||||
def _create_sale_order(self):
|
||||
""" Private implementation of generating the sales order """
|
||||
sale_order = self.env['sale.order'].create({
|
||||
'project_id': self.project_id.id,
|
||||
'partner_id': self.partner_id.id,
|
||||
'analytic_account_id': self.project_id.analytic_account_id.id,
|
||||
'client_order_ref': self.project_id.name,
|
||||
'company_id': self.project_id.company_id.id,
|
||||
})
|
||||
# rewrite the user as the onchange_partner_id erases it
|
||||
sale_order.write({'user_id': self.project_id.user_id.id})
|
||||
|
||||
# create the sale lines, the map (optional), and assign existing timesheet to sale lines
|
||||
self._make_billable(sale_order)
|
||||
|
||||
# confirm SO
|
||||
sale_order.action_confirm()
|
||||
return sale_order
|
||||
|
||||
def _make_billable(self, sale_order):
|
||||
if not self.line_ids.employee_id: # Then we configure the project with pricing type is equal to project rate
|
||||
self._make_billable_at_project_rate(sale_order)
|
||||
else: # Then we configure the project with pricing type is equal to employee rate
|
||||
self._make_billable_at_employee_rate(sale_order)
|
||||
|
||||
def _make_billable_at_project_rate(self, sale_order):
|
||||
self.ensure_one()
|
||||
task_left = self.project_id.tasks.filtered(lambda task: not task.sale_line_id)
|
||||
for wizard_line in self.line_ids:
|
||||
task_ids = self.project_id.tasks.filtered(lambda task: not task.sale_line_id and task.timesheet_product_id == wizard_line.product_id)
|
||||
task_left -= task_ids
|
||||
# trying to simulate the SO line created a task, according to the product configuration
|
||||
# To avoid, generating a task when confirming the SO
|
||||
task_id = False
|
||||
if task_ids and wizard_line.product_id.service_tracking in ['task_in_project', 'task_global_project']:
|
||||
task_id = task_ids.ids[0]
|
||||
|
||||
# create SO line
|
||||
sale_order_line = self.env['sale.order.line'].create({
|
||||
'order_id': sale_order.id,
|
||||
'product_id': wizard_line.product_id.id,
|
||||
'price_unit': wizard_line.price_unit,
|
||||
'project_id': self.project_id.id, # prevent to re-create a project on confirmation
|
||||
'task_id': task_id,
|
||||
'product_uom_qty': 0.0,
|
||||
})
|
||||
|
||||
# link the tasks to the SO line
|
||||
task_ids.write({
|
||||
'sale_line_id': sale_order_line.id,
|
||||
'partner_id': sale_order.partner_id.id,
|
||||
'email_from': sale_order.partner_id.email,
|
||||
})
|
||||
|
||||
# assign SOL to timesheets
|
||||
search_domain = [('task_id', 'in', task_ids.ids), ('so_line', '=', False)]
|
||||
self.env['account.analytic.line'].search(search_domain).write({
|
||||
'so_line': sale_order_line.id
|
||||
})
|
||||
sale_order_line.with_context({'no_update_planned_hours': True}).write({
|
||||
'product_uom_qty': sale_order_line.qty_delivered
|
||||
})
|
||||
# Avoid recomputing price_unit
|
||||
self.env.remove_to_compute(self.env['sale.order.line']._fields['price_unit'], sale_order_line)
|
||||
|
||||
self.project_id.write({
|
||||
'sale_order_id': sale_order.id,
|
||||
'sale_line_id': sale_order_line.id, # we take the last sale_order_line created
|
||||
'partner_id': self.partner_id.id,
|
||||
})
|
||||
|
||||
if task_left:
|
||||
task_left.sale_line_id = False
|
||||
|
||||
def _make_billable_at_employee_rate(self, sale_order):
|
||||
# trying to simulate the SO line created a task, according to the product configuration
|
||||
# To avoid, generating a task when confirming the SO
|
||||
task_id = self.env['project.task'].search([('project_id', '=', self.project_id.id)], order='create_date DESC', limit=1).id
|
||||
project_id = self.project_id.id
|
||||
|
||||
lines_already_present = dict([(l.employee_id.id, l) for l in self.project_id.sale_line_employee_ids])
|
||||
|
||||
non_billable_tasks = self.project_id.tasks.filtered(lambda task: not task.sale_line_id)
|
||||
|
||||
map_entries = self.env['project.sale.line.employee.map']
|
||||
EmployeeMap = self.env['project.sale.line.employee.map'].sudo()
|
||||
|
||||
# create SO lines: create on SOL per product/price. So many employee can be linked to the same SOL
|
||||
map_product_price_sol = {} # (product_id, price) --> SOL
|
||||
for wizard_line in self.line_ids:
|
||||
map_key = (wizard_line.product_id.id, wizard_line.price_unit)
|
||||
if map_key not in map_product_price_sol:
|
||||
values = {
|
||||
'order_id': sale_order.id,
|
||||
'product_id': wizard_line.product_id.id,
|
||||
'price_unit': wizard_line.price_unit,
|
||||
'product_uom_qty': 0.0,
|
||||
}
|
||||
if wizard_line.product_id.service_tracking in ['task_in_project', 'task_global_project']:
|
||||
values['task_id'] = task_id
|
||||
if wizard_line.product_id.service_tracking in ['task_in_project', 'project_only']:
|
||||
values['project_id'] = project_id
|
||||
|
||||
sale_order_line = self.env['sale.order.line'].create(values)
|
||||
map_product_price_sol[map_key] = sale_order_line
|
||||
|
||||
if wizard_line.employee_id.id not in lines_already_present:
|
||||
map_entries |= EmployeeMap.create({
|
||||
'project_id': self.project_id.id,
|
||||
'sale_line_id': map_product_price_sol[map_key].id,
|
||||
'employee_id': wizard_line.employee_id.id,
|
||||
})
|
||||
else:
|
||||
map_entries |= lines_already_present[wizard_line.employee_id.id]
|
||||
lines_already_present[wizard_line.employee_id.id].write({
|
||||
'sale_line_id': map_product_price_sol[map_key].id
|
||||
})
|
||||
|
||||
# link the project to the SO
|
||||
self.project_id.write({
|
||||
'sale_order_id': sale_order.id,
|
||||
'sale_line_id': sale_order.order_line[0].id,
|
||||
'partner_id': self.partner_id.id,
|
||||
})
|
||||
non_billable_tasks.write({
|
||||
'partner_id': sale_order.partner_id.id,
|
||||
'email_from': sale_order.partner_id.email,
|
||||
})
|
||||
|
||||
# assign SOL to timesheets
|
||||
for map_entry in map_entries:
|
||||
search_domain = [('employee_id', '=', map_entry.employee_id.id), ('so_line', '=', False), ('task_id', 'in', self.project_id.tasks.ids)]
|
||||
self.env['account.analytic.line'].search(search_domain).write({
|
||||
'so_line': map_entry.sale_line_id.id
|
||||
})
|
||||
map_entry.sale_line_id.with_context({'no_update_planned_hours': True}).write({
|
||||
'product_uom_qty': map_entry.sale_line_id.qty_delivered,
|
||||
})
|
||||
# Avoid recomputing price_unit
|
||||
self.env.remove_to_compute(self.env['sale.order.line']._fields['price_unit'], map_entry.sale_line_id)
|
||||
return map_entries
|
||||
|
||||
|
||||
class ProjectCreateSalesOrderLine(models.TransientModel):
|
||||
_name = 'project.create.sale.order.line'
|
||||
_description = 'Create SO Line from project'
|
||||
_order = 'id,create_date'
|
||||
|
||||
wizard_id = fields.Many2one('project.create.sale.order', required=True)
|
||||
product_id = fields.Many2one('product.product', domain=[('detailed_type', '=', 'service'), ('invoice_policy', '=', 'delivery'), ('service_type', '=', 'timesheet')], string="Service",
|
||||
help="Product of the sales order item. Must be a service invoiced based on timesheets on tasks.")
|
||||
price_unit = fields.Float("Unit Price", help="Unit price of the sales order item.")
|
||||
currency_id = fields.Many2one('res.currency', string="Currency")
|
||||
employee_id = fields.Many2one('hr.employee', string="Employee", help="Employee that has timesheets on the project.")
|
||||
|
||||
_sql_constraints = [
|
||||
('unique_employee_per_wizard', 'UNIQUE(wizard_id, employee_id)', "An employee cannot be selected more than once in the mapping. Please remove duplicate(s) and try again."),
|
||||
]
|
||||
|
||||
@api.onchange('product_id')
|
||||
def _onchange_product_id(self):
|
||||
self.price_unit = self.product_id.lst_price or 0
|
||||
self.currency_id = self.product_id.currency_id
|
||||
|
|
@ -1,43 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<odoo>
|
||||
|
||||
<record id="project_create_sale_order_view_form" model="ir.ui.view">
|
||||
<field name="name">project.create.sale.order.wizard.form</field>
|
||||
<field name="model">project.create.sale.order</field>
|
||||
<field name="arch" type="xml">
|
||||
<form string="Create a Sales Order">
|
||||
<group>
|
||||
<group>
|
||||
<field name="project_id" readonly="1"/>
|
||||
<field name="company_id" invisible="1"/>
|
||||
<field name="partner_id" domain="['|', ('company_id', '=', False), ('company_id', '=', company_id)]"/>
|
||||
</group>
|
||||
</group>
|
||||
<field name="line_ids" nolabel="1">
|
||||
<tree editable="bottom">
|
||||
<field name="employee_id" options="{'no_create_edit': True, 'no_create': True}"/>
|
||||
<field name="product_id" options="{'no_create_edit': True, 'no_create': True}"/>
|
||||
<field name="price_unit" widget='monetary' options="{'currency_field': 'currency_id', 'field_digits': True}"/>
|
||||
<field name="currency_id" invisible="1"/>
|
||||
</tree>
|
||||
</field>
|
||||
<group attrs="{'invisible': [('info_invoice', '=', False)]}">
|
||||
<field name="info_invoice" nolabel="1"/>
|
||||
</group>
|
||||
<footer>
|
||||
<button string="Create Sales Order" type="object" name="action_create_sale_order" class="oe_highlight" data-hotkey="q"/>
|
||||
<button string="Cancel" special="cancel" data-hotkey="z" type="object" class="btn btn-secondary oe_inline"/>
|
||||
</footer>
|
||||
</form>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="project_project_action_multi_create_sale_order" model="ir.actions.act_window">
|
||||
<field name="name">Create a Sales Order</field>
|
||||
<field name="res_model">project.create.sale.order</field>
|
||||
<field name="view_mode">form</field>
|
||||
<field name="view_id" ref="project_create_sale_order_view_form"/>
|
||||
<field name="target">new</field>
|
||||
</record>
|
||||
|
||||
</odoo>
|
||||
|
|
@ -13,7 +13,7 @@ class SaleAdvancePaymentInv(models.TransientModel):
|
|||
date_end_invoice_timesheet = fields.Date(
|
||||
string="End Date",
|
||||
help="Only timesheets not yet invoiced (and validated, if applicable) from this period will be invoiced. If the period is not indicated, all timesheets not yet invoiced (and validated, if applicable) will be invoiced without distinction.")
|
||||
invoicing_timesheet_enabled = fields.Boolean(compute='_compute_invoicing_timesheet_enabled', store=True)
|
||||
invoicing_timesheet_enabled = fields.Boolean(compute='_compute_invoicing_timesheet_enabled', store=True, export_string_translation=False)
|
||||
|
||||
#=== COMPUTE METHODS ===#
|
||||
|
||||
|
|
@ -46,6 +46,6 @@ class SaleAdvancePaymentInv(models.TransientModel):
|
|||
return sale_orders.with_context(
|
||||
timesheet_start_date=self.date_start_invoice_timesheet,
|
||||
timesheet_end_date=self.date_end_invoice_timesheet
|
||||
)._create_invoices(final=self.deduct_down_payments)
|
||||
)._create_invoices(final=self.deduct_down_payments, grouped=not self.consolidated_billing)
|
||||
|
||||
return super()._create_invoices(sale_orders)
|
||||
|
|
|
|||
|
|
@ -6,25 +6,24 @@
|
|||
<field name="model">sale.advance.payment.inv</field>
|
||||
<field name="inherit_id" ref="sale.view_sale_advance_payment_inv"/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//form" position="attributes">
|
||||
<form position="attributes">
|
||||
<attribute name="disable_autofocus">true</attribute>
|
||||
</xpath>
|
||||
</form>
|
||||
<group name="down_payment_specification" position="after">
|
||||
<field name="invoicing_timesheet_enabled" invisible="1"/>
|
||||
<group name="timesheet_invoice_date_range"
|
||||
attrs="{'invisible': [ '|', ('invoicing_timesheet_enabled', '=', False), ('advance_payment_method', '!=', 'delivered')]}">
|
||||
<label for="date_start_invoice_timesheet" string="Timesheets Period" attrs="{'invisible': [ '|', ('invoicing_timesheet_enabled', '=', False), ('advance_payment_method', '!=', 'delivered')]}"/>
|
||||
<div class="o_row" attrs="{'invisible': [ '|',('invoicing_timesheet_enabled', '=', False), ('advance_payment_method', '!=', 'delivered')]}">
|
||||
<field name="date_start_invoice_timesheet"
|
||||
class="oe_inline" widget="daterange"
|
||||
options="{'related_end_date': 'date_end_invoice_timesheet'}"
|
||||
title="Only timesheets not yet invoiced (and validated, if applicable) from this period will be invoiced. If the period is not indicated, all timesheets not yet invoiced (and validated, if applicable) will be invoiced without distinction."/>
|
||||
<i class="fa fa-long-arrow-right mx-2" aria-label="Arrow icon" title="Arrow"/>
|
||||
<field name="date_end_invoice_timesheet"
|
||||
class="oe_inline" widget="daterange"
|
||||
options="{'related_start_date': 'date_start_invoice_timesheet'}"
|
||||
title="Only timesheets not yet invoiced (and validated, if applicable) from this period will be invoiced. If the period is not indicated, all timesheets not yet invoiced (and validated, if applicable) will be invoiced without distinction."/>
|
||||
</div>
|
||||
<group
|
||||
name="timesheet_invoice_date_range"
|
||||
invisible="not invoicing_timesheet_enabled or advance_payment_method != 'delivered'">
|
||||
<field
|
||||
class="w-75 w-md-50 w-lg-25"
|
||||
name="date_start_invoice_timesheet"
|
||||
string="Timesheets Period"
|
||||
widget="daterange"
|
||||
required="date_start_invoice_timesheet or date_end_invoice_timesheet"
|
||||
options="{'end_date_field': 'date_end_invoice_timesheet', 'always_range': 'true'}"
|
||||
title="Only timesheets not yet invoiced (and validated, if applicable) from this period will be invoiced. If the period is not indicated, all timesheets not yet invoiced (and validated, if applicable) will be invoiced without distinction."
|
||||
/>
|
||||
<field name="date_end_invoice_timesheet" invisible="1" />
|
||||
</group>
|
||||
</group>
|
||||
</field>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue