mirror of
https://github.com/OCA/contract.git
synced 2025-02-13 17:57:24 +02:00
[IMP] add departmeent on hours block and add hours block button on project form view
This commit is contained in:
@@ -20,3 +20,4 @@
|
|||||||
##############################################################################
|
##############################################################################
|
||||||
import hours_block
|
import hours_block
|
||||||
import report
|
import report
|
||||||
|
import project
|
||||||
@@ -40,11 +40,13 @@ you can track and follow how much has been used.
|
|||||||
"depends": [
|
"depends": [
|
||||||
"account",
|
"account",
|
||||||
"hr_timesheet_invoice",
|
"hr_timesheet_invoice",
|
||||||
"analytic"
|
"analytic",
|
||||||
|
"project",
|
||||||
],
|
],
|
||||||
"data": [
|
"data": [
|
||||||
"hours_block_view.xml",
|
"hours_block_view.xml",
|
||||||
"hours_block_menu.xml",
|
"hours_block_menu.xml",
|
||||||
|
"project_view.xml",
|
||||||
"report.xml",
|
"report.xml",
|
||||||
"security/hours_block_security.xml",
|
"security/hours_block_security.xml",
|
||||||
"security/ir.model.access.csv",
|
"security/ir.model.access.csv",
|
||||||
|
|||||||
@@ -294,6 +294,14 @@ class AccountHoursBlock(orm.Model):
|
|||||||
string="Total",
|
string="Total",
|
||||||
store=True,
|
store=True,
|
||||||
readonly=True),
|
readonly=True),
|
||||||
|
'department_id': fields.related(
|
||||||
|
'invoice_id', 'department_id',
|
||||||
|
type='many2one',
|
||||||
|
relation='hr.department',
|
||||||
|
string='Department',
|
||||||
|
store=True,
|
||||||
|
readonly=True),
|
||||||
|
|
||||||
'state': fields.related(
|
'state': fields.related(
|
||||||
'invoice_id', 'state',
|
'invoice_id', 'state',
|
||||||
type='selection',
|
type='selection',
|
||||||
|
|||||||
@@ -6,6 +6,7 @@
|
|||||||
Hours block menu
|
Hours block menu
|
||||||
-->
|
-->
|
||||||
<record model="ir.actions.act_window" id="action_all_block_hour">
|
<record model="ir.actions.act_window" id="action_all_block_hour">
|
||||||
|
<field name="context">{'search_default_running': 1, 'search_default_group_department_id': 1}</field>
|
||||||
<field name="name">Hours Blocks</field>
|
<field name="name">Hours Blocks</field>
|
||||||
<field name="res_model">account.hours.block</field>
|
<field name="res_model">account.hours.block</field>
|
||||||
<field name="view_type">form</field>
|
<field name="view_type">form</field>
|
||||||
|
|||||||
@@ -18,15 +18,18 @@
|
|||||||
<separator orientation="vertical"/>
|
<separator orientation="vertical"/>
|
||||||
<field name="number"/>
|
<field name="number"/>
|
||||||
<field name="partner_id"/>
|
<field name="partner_id"/>
|
||||||
|
<field name="department_id" string="Department"/>
|
||||||
<field name="user_id" select="1" widget="selection" string="Salesman">
|
<field name="user_id" select="1" widget="selection" string="Salesman">
|
||||||
<filter domain="[('user_id','=',uid)]" help="My invoices" icon="terp-personal" separator="1"/>
|
<filter domain="[('user_id','=',uid)]" help="My invoices" icon="terp-personal" separator="1"/>
|
||||||
</field>
|
</field>
|
||||||
|
|
||||||
<field name="company_id" widget="selection"/>
|
<field name="company_id" widget="selection"/>
|
||||||
</group>
|
</group>
|
||||||
<newline/>
|
<newline/>
|
||||||
<group expand="0" string="Group By...">
|
<group expand="0" string="Group By...">
|
||||||
<filter string="Partner" icon="terp-partner" domain="[]" context="{'group_by':'partner_id'}"/>
|
<filter string="Partner" icon="terp-partner" domain="[]" context="{'group_by':'partner_id'}"/>
|
||||||
<filter string="Responsible" icon="terp-personal" domain="[]" context="{'group_by':'user_id'}"/>
|
<filter string="Responsible" icon="terp-personal" domain="[]" context="{'group_by':'user_id'}"/>
|
||||||
|
<filter string="Department" icon="terp-personal" domain="[]" context="{'group_by':'department_id'}"/>
|
||||||
<filter string="Invoice State" icon="terp-stock_effects-object-colorize" domain="[]" context="{'group_by':'state'}"/>
|
<filter string="Invoice State" icon="terp-stock_effects-object-colorize" domain="[]" context="{'group_by':'state'}"/>
|
||||||
</group>
|
</group>
|
||||||
</search>
|
</search>
|
||||||
@@ -68,6 +71,7 @@
|
|||||||
<field name="partner_id" groups="base.group_user"/>
|
<field name="partner_id" groups="base.group_user"/>
|
||||||
<field name="user_id"/>
|
<field name="user_id"/>
|
||||||
<field name="company_id" groups="base.group_multi_company" widget="selection"/>
|
<field name="company_id" groups="base.group_multi_company" widget="selection"/>
|
||||||
|
<field name="department_id" widget="selection"/>
|
||||||
|
|
||||||
<field name="journal_id" invisible="1"/>
|
<field name="journal_id" invisible="1"/>
|
||||||
<field name="period_id" invisible="1" groups="account.group_account_user"/>
|
<field name="period_id" invisible="1" groups="account.group_account_user"/>
|
||||||
@@ -101,6 +105,7 @@
|
|||||||
<field name="journal_id" invisible="1"/>
|
<field name="journal_id" invisible="1"/>
|
||||||
<field name="period_id" invisible="1" groups="account.group_account_user"/>
|
<field name="period_id" invisible="1" groups="account.group_account_user"/>
|
||||||
<field name="company_id" groups="base.group_multi_company" widget="selection"/>
|
<field name="company_id" groups="base.group_multi_company" widget="selection"/>
|
||||||
|
<field name="department_id" widget="selection"/>
|
||||||
<field name="user_id"/>
|
<field name="user_id"/>
|
||||||
<field name="currency_id"/>
|
<field name="currency_id"/>
|
||||||
<field name="residual" sum="Residual Amount"/>
|
<field name="residual" sum="Residual Amount"/>
|
||||||
|
|||||||
33
analytic_hours_block/project.py
Normal file
33
analytic_hours_block/project.py
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
from osv import orm
|
||||||
|
from openerp.tools.translate import _
|
||||||
|
|
||||||
|
|
||||||
|
class project_project(orm.Model):
|
||||||
|
_inherit = 'project.project'
|
||||||
|
|
||||||
|
def hours_block_tree_view(self, cr, uid, ids, context):
|
||||||
|
invoice_line_obj = self.pool.get('account.invoice.line')
|
||||||
|
hours_block_obj = self.pool.get('account.hours.block')
|
||||||
|
project = self.browse(cr, uid , ids)[0]
|
||||||
|
invoice_line_ids = invoice_line_obj.search(cr, uid, [('account_analytic_id', '=', project.analytic_account_id.id)])
|
||||||
|
invoice_lines = invoice_line_obj.browse(cr, uid, invoice_line_ids)
|
||||||
|
invoice_ids = [x.invoice_id.id for x in invoice_lines]
|
||||||
|
res_ids = hours_block_obj.search(cr, uid, [('invoice_id','in',invoice_ids)])
|
||||||
|
domain=False
|
||||||
|
if res_ids:
|
||||||
|
domain = [('id', 'in', res_ids)]
|
||||||
|
else:
|
||||||
|
raise orm.except_orm(_('Warning'), _("No Hours Block for this project"))
|
||||||
|
|
||||||
|
return {
|
||||||
|
'name': _('Hours Blocks'),
|
||||||
|
'domain': domain,
|
||||||
|
'res_model': 'account.hours.block',
|
||||||
|
'type': 'ir.actions.act_window',
|
||||||
|
'view_id': False,
|
||||||
|
'view_mode': 'tree,form',
|
||||||
|
'view_type': 'form',
|
||||||
|
'limit': 80,
|
||||||
|
'res_id' : res_ids or False,
|
||||||
|
}
|
||||||
19
analytic_hours_block/project_view.xml
Normal file
19
analytic_hours_block/project_view.xml
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
<?xml version="1.0" ?>
|
||||||
|
<openerp>
|
||||||
|
<data>
|
||||||
|
|
||||||
|
<record model="ir.ui.view" id="edit_project_hours_block_link">
|
||||||
|
<field name="name">project.project.form.hours.block.link</field>
|
||||||
|
<field name="model">project.project</field>
|
||||||
|
<field name="inherit_id" ref="project.edit_project"/>
|
||||||
|
<field name="type">form</field>
|
||||||
|
<field name="arch" type="xml">
|
||||||
|
<xpath expr="//button[@name='attachment_tree_view']" position="after">
|
||||||
|
<button name="hours_block_tree_view" string="Hours Block" type="object"/>
|
||||||
|
</xpath>
|
||||||
|
</field>
|
||||||
|
</record>
|
||||||
|
|
||||||
|
|
||||||
|
</data>
|
||||||
|
</openerp>
|
||||||
Reference in New Issue
Block a user