[IMP] replaced all oe_form_topbar with the new <header> style

bzr revid: fp@tinyerp.com-20120604121139-zqoqbou9v2fdue5h
This commit is contained in:
Fabien Pinckaers 2012-06-04 14:11:39 +02:00
parent 623fd428bd
commit 48f8823bad
55 changed files with 185 additions and 193 deletions

View File

@ -143,14 +143,14 @@
<field name="priority">2</field> <field name="priority">2</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button name="invoice_open" states="draft,proforma2" string="Validate"/> <button name="invoice_open" states="draft,proforma2" string="Validate"/>
<button name="%(action_account_invoice_refund)d" type='action' string='Ask Refund' states='open,paid'/> <button name="%(action_account_invoice_refund)d" type='action' string='Ask Refund' states='open,paid'/>
<button name="invoice_cancel" states="draft,proforma2,sale,open" string="Cancel" groups="base.group_no_one"/> <button name="invoice_cancel" states="draft,proforma2,sale,open" string="Cancel" groups="base.group_no_one"/>
<button name="action_cancel_draft" states="cancel" string="Set to Draft" type="object"/> <button name="action_cancel_draft" states="cancel" string="Set to Draft" type="object"/>
<button name='%(action_account_state_open)d' type='action' string='Re-Open' groups="account.group_account_invoice" attrs="{'invisible':['|', ('state','&lt;&gt;','paid'), ('reconciled', '=', True)]}" help="This button only appears when the state of the invoice is 'paid' (showing that it has been fully reconciled) and auto-computed boolean 'reconciled' is False (depicting that it's not the case anymore). In other words, the invoice has been dereconciled and it does not fit anymore the 'paid' state. You should press this button to re-open it and let it continue its normal process after having resolved the eventual exceptions it may have created."/> <button name='%(action_account_state_open)d' type='action' string='Re-Open' groups="account.group_account_invoice" attrs="{'invisible':['|', ('state','&lt;&gt;','paid'), ('reconciled', '=', True)]}" help="This button only appears when the state of the invoice is 'paid' (showing that it has been fully reconciled) and auto-computed boolean 'reconciled' is False (depicting that it's not the case anymore). In other words, the invoice has been dereconciled and it does not fit anymore the 'paid' state. You should press this button to re-open it and let it continue its normal process after having resolved the eventual exceptions it may have created."/>
<field name="state" widget="statusbar" nolabel="1" statusbar_visible="draft,open,paid" statusbar_colors='{"proforma":"blue","proforma2":"blue"}'/> <field name="state" widget="statusbar" nolabel="1" statusbar_visible="draft,open,paid" statusbar_colors='{"proforma":"blue","proforma2":"blue"}'/>
</div> </header>
<sheet string="Supplier Invoice" layout="auto"> <sheet string="Supplier Invoice" layout="auto">
<group col="8" colspan="4" class="oe_form_header"> <group col="8" colspan="4" class="oe_form_header">
<field name="journal_id" on_change="onchange_journal_id(journal_id)" widget="selection"/> <field name="journal_id" on_change="onchange_journal_id(journal_id)" widget="selection"/>
@ -256,7 +256,7 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button name="action_invoice_sent" type="object" string="Send by Email" states="open" attrs="{'invisible':['|',('sent','=',True), ('state', '=', 'draft')]}"/> <button name="action_invoice_sent" type="object" string="Send by Email" states="open" attrs="{'invisible':['|',('sent','=',True), ('state', '=', 'draft')]}"/>
<button name="invoice_print" string="Print Invoice" type="object" states="open" attrs="{'invisible':['|',('sent','=',True), ('state', '=', 'draft')]}"/> <button name="invoice_print" string="Print Invoice" type="object" states="open" attrs="{'invisible':['|',('sent','=',True), ('state', '=', 'draft')]}"/>
<button name="invoice_open" states="draft,proforma2" string="Validate"/> <button name="invoice_open" states="draft,proforma2" string="Validate"/>
@ -267,7 +267,7 @@
<button name='%(action_account_state_open)d' type='action' string='Re-Open' groups="account.group_account_invoice" attrs="{'invisible':['|', ('state','&lt;&gt;','paid'), ('reconciled', '=', True)]}" help="This button only appears when the state of the invoice is 'paid' (showing that it has been fully reconciled) and auto-computed boolean 'reconciled' is False (depicting that it's not the case anymore). In other words, the invoice has been dereconciled and it does not fit anymore the 'paid' state. You should press this button to re-open it and let it continue its normal process after having resolved the eventual exceptions it may have created."/> <button name='%(action_account_state_open)d' type='action' string='Re-Open' groups="account.group_account_invoice" attrs="{'invisible':['|', ('state','&lt;&gt;','paid'), ('reconciled', '=', True)]}" help="This button only appears when the state of the invoice is 'paid' (showing that it has been fully reconciled) and auto-computed boolean 'reconciled' is False (depicting that it's not the case anymore). In other words, the invoice has been dereconciled and it does not fit anymore the 'paid' state. You should press this button to re-open it and let it continue its normal process after having resolved the eventual exceptions it may have created."/>
<!--button name="%(account_invoices)d" string="Print Invoice" type="action" states="open,paid,proforma,sale,proforma2"/--> <!--button name="%(account_invoices)d" string="Print Invoice" type="action" states="open,paid,proforma,sale,proforma2"/-->
<field name="state" widget="statusbar" nolabel="1" statusbar_visible="draft,open,paid" statusbar_colors='{"proforma":"blue","proforma2":"blue"}'/> <field name="state" widget="statusbar" nolabel="1" statusbar_visible="draft,open,paid" statusbar_colors='{"proforma":"blue","proforma2":"blue"}'/>
</div> </header>
<sheet string="Invoice" layout="auto"> <sheet string="Invoice" layout="auto">
<group colspan="4" col="8" class="oe_form_header"> <group colspan="4" col="8" class="oe_form_header">
<field name="journal_id" groups="base.group_user" on_change="onchange_journal_id(journal_id, context)" widget="selection"/> <field name="journal_id" groups="base.group_user" on_change="onchange_journal_id(journal_id, context)" widget="selection"/>

View File

@ -12,11 +12,11 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button name="create_period" states="draft" string="Create Monthly Periods" type="object"/> <button name="create_period" states="draft" string="Create Monthly Periods" type="object"/>
<button name="create_period3" states="draft" string="Create 3 Months Periods" type="object"/> <button name="create_period3" states="draft" string="Create 3 Months Periods" type="object"/>
<field name="state" select="1" widget="statusbar" nolabel="1" /> <field name="state" select="1" widget="statusbar" nolabel="1" />
</div> </header>
<sheet string="Fiscalyear" layout="auto"> <sheet string="Fiscalyear" layout="auto">
<group class="oe_form_header"> <group class="oe_form_header">
<field name="name"/> <field name="name"/>
@ -94,10 +94,10 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button name="action_draft" states="done" string="Set to Draft" type="object" groups="account.group_account_manager"/> <button name="action_draft" states="done" string="Set to Draft" type="object" groups="account.group_account_manager"/>
<field name="state" widget="statusbar" nolabel="1"/> <field name="state" widget="statusbar" nolabel="1"/>
</div> </header>
<sheet string="Period" layout="auto"> <sheet string="Period" layout="auto">
<group class="oe_form_header"> <group class="oe_form_header">
<field name="name"/> <field name="name"/>
@ -595,12 +595,12 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button name="button_confirm_bank" states="draft" string="Confirm" type="object" /> <button name="button_confirm_bank" states="draft" string="Confirm" type="object" />
<button name="button_dummy" states="draft" string="Compute" type="object"/> <button name="button_dummy" states="draft" string="Compute" type="object"/>
<button name="button_cancel" states="confirm" string="Cancel" type="object"/> <button name="button_cancel" states="confirm" string="Cancel" type="object"/>
<field name="state" widget="statusbar" nolabel="1" statusbar_visible="draft,confirm"/> <field name="state" widget="statusbar" nolabel="1" statusbar_visible="draft,confirm"/>
</div> </header>
<sheet string="Bank Statement" layout="auto"> <sheet string="Bank Statement" layout="auto">
<group col="7" colspan="4" class="oe_form_header"> <group col="7" colspan="4" class="oe_form_header">
<field name="name" select="1"/> <field name="name" select="1"/>
@ -657,12 +657,12 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button name="button_confirm_bank" states="draft" string="Confirm" type="object" /> <button name="button_confirm_bank" states="draft" string="Confirm" type="object" />
<button name="button_dummy" states="draft" string="Compute" type="object"/> <button name="button_dummy" states="draft" string="Compute" type="object"/>
<button name="button_cancel" states="confirm" string="Cancel" type="object"/> <button name="button_cancel" states="confirm" string="Cancel" type="object"/>
<field name="state" widget="statusbar" nolabel="1" statusbar_visible="draft,confirm"/> <field name="state" widget="statusbar" nolabel="1" statusbar_visible="draft,confirm"/>
</div> </header>
<sheet string="Bank Statement" layout="auto"> <sheet string="Bank Statement" layout="auto">
<group col="7" colspan="4" class="oe_form_header"> <group col="7" colspan="4" class="oe_form_header">
<field name="name" select="1"/> <field name="name" select="1"/>
@ -1349,11 +1349,11 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button name="button_validate" states="draft" string="Post" type="object"/> <button name="button_validate" states="draft" string="Post" type="object"/>
<button name="button_cancel" states="posted" string="Cancel" type="object"/> <button name="button_cancel" states="posted" string="Cancel" type="object"/>
<field name="state" select="1" widget="statusbar" nolabel="1" /> <field name="state" select="1" widget="statusbar" nolabel="1" />
</div> </header>
<sheet string="Journal Entries" layout="auto"> <sheet string="Journal Entries" layout="auto">
<group colspan="4" col="6" class="oe_form_header"> <group colspan="4" col="6" class="oe_form_header">
<field name="name" readonly="True"/> <field name="name" readonly="True"/>
@ -2617,12 +2617,12 @@ action = pool.get('res.config').next(cr, uid, [], context)
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button name="button_confirm_cash" states="open" string="Close CashBox" type="object"/> <button name="button_confirm_cash" states="open" string="Close CashBox" type="object"/>
<button name="button_open" states="draft" string="Open CashBox" type="object"/> <button name="button_open" states="draft" string="Open CashBox" type="object"/>
<button name="button_cancel" states="confirm,open" string="Cancel" type="object" groups="base.group_extended"/> <button name="button_cancel" states="confirm,open" string="Cancel" type="object" groups="base.group_extended"/>
<field name="state" widget="statusbar" nolabel="1" statusbar_visible="draft,confirm"/> <field name="state" widget="statusbar" nolabel="1" statusbar_visible="draft,confirm"/>
</div> </header>
<sheet string="Statement" layout="auto"> <sheet string="Statement" layout="auto">
<group col="6" colspan="4" class="oe_form_header"> <group col="6" colspan="4" class="oe_form_header">
<field name="name" select="1"/> <field name="name" select="1"/>

View File

@ -16,10 +16,10 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form string="Configure Accounting" layout="manual"> <form string="Configure Accounting" layout="manual">
<div class="oe_form_topbar"> <header>
<button string="Apply" type="object" name="execute"/> <button string="Apply" type="object" name="execute"/>
<button string="Cancel" special="cancel"/> <button string="Cancel" special="cancel"/>
</div> </header>
<sheet layout="auto"> <sheet layout="auto">
<field name="has_default_company" invisible="1" /> <field name="has_default_company" invisible="1" />
<field name="has_chart_of_accounts" invisible="1"/> <field name="has_chart_of_accounts" invisible="1"/>

View File

@ -105,14 +105,14 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button string="Confirm" name="confirm" states="draft" type="workflow" /> <button string="Confirm" name="confirm" states="draft" type="workflow" />
<button string="Approve" name="validate" states="confirm" type="workflow"/> <button string="Approve" name="validate" states="confirm" type="workflow"/>
<button string="Done" name="done" states="validate" type="workflow" /> <button string="Done" name="done" states="validate" type="workflow" />
<button name="draft" states="cancel" string="Reset to Draft" type="workflow"/> <button name="draft" states="cancel" string="Reset to Draft" type="workflow"/>
<button string="Cancel" name="cancel" states="confirm,validate" type="workflow"/> <button string="Cancel" name="cancel" states="confirm,validate" type="workflow"/>
<field name="state" select="1" widget="statusbar" nolabel="1" statusbar_visible="draft,confirm"/> <field name="state" select="1" widget="statusbar" nolabel="1" statusbar_visible="draft,confirm"/>
</div> </header>
<sheet string="Budget" layout="auto"> <sheet string="Budget" layout="auto">
<group class="oe_form_header"> <group class="oe_form_header">
<field name="name" colspan="1" select="1" attrs="{'readonly':[('state','!=','draft')]}"/> <field name="name" colspan="1" select="1" attrs="{'readonly':[('state','!=','draft')]}"/>

View File

@ -101,13 +101,13 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button name="open" states="draft" string="Confirm Payments" /> <button name="open" states="draft" string="Confirm Payments" />
<button name="set_done" states="open" string="Make Payments" type="object"/> <button name="set_done" states="open" string="Make Payments" type="object"/>
<button name="set_to_draft" states="cancel" string="Set to draft" type="object"/> <button name="set_to_draft" states="cancel" string="Set to draft" type="object"/>
<button name="cancel" states="draft,open" string="Cancel"/> <button name="cancel" states="draft,open" string="Cancel"/>
<field name="state" select="1" widget="statusbar" nolabel="1" statusbar_visible="draft,open"/> <field name="state" select="1" widget="statusbar" nolabel="1" statusbar_visible="draft,open"/>
</div> </header>
<sheet string="Payment order" layout="auto"> <sheet string="Payment order" layout="auto">
<group col="6" colspan="4" class="oe_form_header"> <group col="6" colspan="4" class="oe_form_header">
<field name="reference"/> <field name="reference"/>

View File

@ -40,13 +40,13 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button name="proforma_voucher" string="Post" states="draft"/> <button name="proforma_voucher" string="Post" states="draft"/>
<button name="cancel_voucher" string="Cancel" type="object" states="posted" confirm="Are you sure to unreconcile this record?"/> <button name="cancel_voucher" string="Cancel" type="object" states="posted" confirm="Are you sure to unreconcile this record?"/>
<button name="cancel_voucher" string="Cancel" states="draft,proforma" /> <button name="cancel_voucher" string="Cancel" states="draft,proforma" />
<button name="action_cancel_draft" type="object" states="cancel" string="Set to Draft"/> <button name="action_cancel_draft" type="object" states="cancel" string="Set to Draft"/>
<field name="state" widget="statusbar" nolabel="1" statusbar_visible="draft,posted" statusbar_colors='{"proforma":"blue"}'/> <field name="state" widget="statusbar" nolabel="1" statusbar_visible="draft,posted" statusbar_colors='{"proforma":"blue"}'/>
</div> </header>
<sheet string="Accounting Voucher" layout="auto"> <sheet string="Accounting Voucher" layout="auto">
<group col="6" colspan="4" class="oe_form_header"> <group col="6" colspan="4" class="oe_form_header">
<field name="partner_id" required="1" on_change="onchange_journal_voucher(line_ids, tax_id, amount, partner_id, journal_id, type)"/> <field name="partner_id" required="1" on_change="onchange_journal_voucher(line_ids, tax_id, amount, partner_id, journal_id, type)"/>

View File

@ -144,13 +144,13 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button name="proforma_voucher" string="Validate" states="draft" invisible="context.get('line_type', False)"/> <button name="proforma_voucher" string="Validate" states="draft" invisible="context.get('line_type', False)"/>
<button name="cancel_voucher" string="Cancel" states="draft,proforma" invisible="context.get('line_type', False)"/> <button name="cancel_voucher" string="Cancel" states="draft,proforma" invisible="context.get('line_type', False)"/>
<button name="cancel_voucher" string="Unreconcile" type="object" states="posted" invisible="context.get('line_type', False)" confirm="Are you sure to unreconcile and cancel this record ?"/> <button name="cancel_voucher" string="Unreconcile" type="object" states="posted" invisible="context.get('line_type', False)" confirm="Are you sure to unreconcile and cancel this record ?"/>
<button name="action_cancel_draft" type="object" states="cancel" string="Set to Draft" invisible="context.get('line_type', False)"/> <button name="action_cancel_draft" type="object" states="cancel" string="Set to Draft" invisible="context.get('line_type', False)"/>
<field name="state" widget="statusbar" nolabel="1" statusbar_visible="draft,posted" statusbar_colors='{"proforma":"blue"}'/> <field name="state" widget="statusbar" nolabel="1" statusbar_visible="draft,posted" statusbar_colors='{"proforma":"blue"}'/>
</div> </header>
<sheet string="Bill Payment" layout="auto"> <sheet string="Bill Payment" layout="auto">
<group col="6" colspan="4" class="oe_form_header"> <group col="6" colspan="4" class="oe_form_header">
<field name="partner_id" required="1" invisible="context.get('line_type', False)" on_change="onchange_partner_id(partner_id, journal_id, amount, currency_id, type, date, context)" context="{'invoice_currency':currency_id, 'default_customer': 0, 'search_default_supplier': 1, 'default_supplier': 1}" string="Supplier"/> <field name="partner_id" required="1" invisible="context.get('line_type', False)" on_change="onchange_partner_id(partner_id, journal_id, amount, currency_id, type, date, context)" context="{'invoice_currency':currency_id, 'default_customer': 0, 'search_default_supplier': 1, 'default_supplier': 1}" string="Supplier"/>
@ -295,13 +295,13 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button name="proforma_voucher" string="Validate" states="draft" invisible="context.get('line_type', False)"/> <button name="proforma_voucher" string="Validate" states="draft" invisible="context.get('line_type', False)"/>
<button name="cancel_voucher" string="Cancel" states="draft,proforma" invisible="context.get('line_type', False)"/> <button name="cancel_voucher" string="Cancel" states="draft,proforma" invisible="context.get('line_type', False)"/>
<button name="cancel_voucher" string="Unreconcile" type="object" states="posted" invisible="context.get('line_type', False)" confirm="Are you sure to unreconcile and cancel this record ?"/> <button name="cancel_voucher" string="Unreconcile" type="object" states="posted" invisible="context.get('line_type', False)" confirm="Are you sure to unreconcile and cancel this record ?"/>
<button name="action_cancel_draft" type="object" states="cancel" string="Set to Draft" invisible="context.get('line_type', False)"/> <button name="action_cancel_draft" type="object" states="cancel" string="Set to Draft" invisible="context.get('line_type', False)"/>
<field name="state" widget="statusbar" nolabel="1" statusbar_visible="draft,posted" statusbar_colors='{"proforma":"blue"}'/> <field name="state" widget="statusbar" nolabel="1" statusbar_visible="draft,posted" statusbar_colors='{"proforma":"blue"}'/>
</div> </header>
<sheet string="Customer Payment" layout="auto"> <sheet string="Customer Payment" layout="auto">
<group col="6" colspan="4" class="oe_form_header"> <group col="6" colspan="4" class="oe_form_header">
<field name="partner_id" domain="[('customer','=',True)]" required="1" invisible="context.get('line_type', False)" on_change="onchange_partner_id(partner_id, journal_id, amount, currency_id, type, date, context)" string="Customer" context="{'search_default_customer': 1}"/> <field name="partner_id" domain="[('customer','=',True)]" required="1" invisible="context.get('line_type', False)" on_change="onchange_partner_id(partner_id, journal_id, amount, currency_id, type, date, context)" string="Customer" context="{'search_default_customer': 1}"/>

View File

@ -81,14 +81,14 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button name="proforma_voucher" string="Validate" states="draft"/> <button name="proforma_voucher" string="Validate" states="draft"/>
<button name="%(act_pay_voucher)d" context="{'narration':narration, 'title':'Customer Payment', 'type':'receipt', 'partner_id':partner_id, 'reference':reference, 'amount':amount}" type="action" string="Pay" attrs="{'invisible':['|',('pay_now','=','pay_now'),'|',('state','=','draft'), ('paid','=',True)]}"/> <button name="%(act_pay_voucher)d" context="{'narration':narration, 'title':'Customer Payment', 'type':'receipt', 'partner_id':partner_id, 'reference':reference, 'amount':amount}" type="action" string="Pay" attrs="{'invisible':['|',('pay_now','=','pay_now'),'|',('state','=','draft'), ('paid','=',True)]}"/>
<button name="cancel_voucher" string="Cancel" states="draft,proforma" /> <button name="cancel_voucher" string="Cancel" states="draft,proforma" />
<button name="cancel_voucher" string="Cancel" type="object" states="posted" confirm="Are you sure to confirm this record ?"/> <button name="cancel_voucher" string="Cancel" type="object" states="posted" confirm="Are you sure to confirm this record ?"/>
<button name="action_cancel_draft" type="object" states="cancel" string="Set to Draft"/> <button name="action_cancel_draft" type="object" states="cancel" string="Set to Draft"/>
<field name="state" widget="statusbar" nolabel="1" statusbar_visible="draft,posted" statusbar_colors='{"proforma":"blue"}'/> <field name="state" widget="statusbar" nolabel="1" statusbar_visible="draft,posted" statusbar_colors='{"proforma":"blue"}'/>
</div> </header>
<sheet string="Sales Receipt" layout="auto"> <sheet string="Sales Receipt" layout="auto">
<group col="6" colspan="4" class="oe_form_header"> <group col="6" colspan="4" class="oe_form_header">
<field name="partner_id" domain="[('customer','=',True)]" required="1" on_change="onchange_partner_id(partner_id, journal_id, amount, currency_id, type, date, context)" string="Customer" context="{'search_default_customer': 1}"/> <field name="partner_id" domain="[('customer','=',True)]" required="1" on_change="onchange_partner_id(partner_id, journal_id, amount, currency_id, type, date, context)" string="Customer" context="{'search_default_customer': 1}"/>
@ -207,14 +207,14 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button name="proforma_voucher" string="Validate" states="draft"/> <button name="proforma_voucher" string="Validate" states="draft"/>
<button name="%(act_pay_bills)d" context="{'narration':narration, 'title':'Bill Payment', 'type':'payment', 'partner_id': partner_id, 'reference':reference}" type="action" string="Pay Bill" attrs="{'invisible':['|',('pay_now','=','pay_now'),'|',('state','=','draft'), ('paid','=',True)]}"/> <button name="%(act_pay_bills)d" context="{'narration':narration, 'title':'Bill Payment', 'type':'payment', 'partner_id': partner_id, 'reference':reference}" type="action" string="Pay Bill" attrs="{'invisible':['|',('pay_now','=','pay_now'),'|',('state','=','draft'), ('paid','=',True)]}"/>
<button name="cancel_voucher" string="Cancel" states="draft,proforma" /> <button name="cancel_voucher" string="Cancel" states="draft,proforma" />
<button name="cancel_voucher" string="Cancel" type="object" states="posted" confirm="Are you sure to confirm this record ?"/> <button name="cancel_voucher" string="Cancel" type="object" states="posted" confirm="Are you sure to confirm this record ?"/>
<button name="action_cancel_draft" type="object" states="cancel" string="Set to Draft"/> <button name="action_cancel_draft" type="object" states="cancel" string="Set to Draft"/>
<field name="state" widget="statusbar" nolabel="1" statusbar_visible="draft,posted" statusbar_colors='{"proforma":"blue"}'/> <field name="state" widget="statusbar" nolabel="1" statusbar_visible="draft,posted" statusbar_colors='{"proforma":"blue"}'/>
</div> </header>
<sheet string="Supplier Voucher" layout="auto"> <sheet string="Supplier Voucher" layout="auto">
<field name="pay_now" invisible="1"/> <field name="pay_now" invisible="1"/>
<group col="6" colspan="4" class="oe_form_header"> <group col="6" colspan="4" class="oe_form_header">

View File

@ -9,7 +9,7 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button name="do_tentative" <button name="do_tentative"
states="needs-action,declined,accepted" states="needs-action,declined,accepted"
string="Uncertain" type="object" string="Uncertain" type="object"
@ -27,7 +27,7 @@
states="needs-action,tentative,accepted" states="needs-action,tentative,accepted"
type="object" /> type="object" />
<field name="state" widget="statusbar" nolabel="1" statusbar_visible="tentative,needs-action,accepted" statusbar_colors='{"proforma":"blue"}'/> <field name="state" widget="statusbar" nolabel="1" statusbar_visible="tentative,needs-action,accepted" statusbar_colors='{"proforma":"blue"}'/>
</div> </header>
<sheet string="Invitation details" layout="auto"> <sheet string="Invitation details" layout="auto">
<group col="6" colspan="4"> <group col="6" colspan="4">
<field name="email" string="Invitation To"/> <field name="email" string="Invitation To"/>
@ -211,7 +211,7 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button name="do_confirm" <button name="do_confirm"
string="Confirm" string="Confirm"
states="tentative,cancelled" states="tentative,cancelled"
@ -228,7 +228,7 @@
type="object" type="object"
/> />
<field name="state" widget="statusbar" nolabel="1" statusbar_visible="tentative,confirmed" statusbar_colors='{"proforma":"blue"}'/> <field name="state" widget="statusbar" nolabel="1" statusbar_visible="tentative,confirmed" statusbar_colors='{"proforma":"blue"}'/>
</div> </header>
<sheet string="Events" layout="auto"> <sheet string="Events" layout="auto">
<group col="6" colspan="4"> <group col="6" colspan="4">
<field name="name" select="1" string="Summary" <field name="name" select="1" string="Summary"

View File

@ -46,10 +46,10 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form string="Configure Sales" layout="manual"> <form string="Configure Sales" layout="manual">
<div class="oe_form_topbar"> <header>
<button string="Apply" type="object" name="execute"/> <button string="Apply" type="object" name="execute"/>
<button string="Cancel" special="cancel"/> <button string="Cancel" special="cancel"/>
</div> </header>
<sheet layout="auto"> <sheet layout="auto">
<group> <group>
<group name="config_sale" colspan="4"/> <group name="config_sale" colspan="4"/>

View File

@ -7,10 +7,10 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form string="General Settings" layout="manual"> <form string="General Settings" layout="manual">
<div class="oe_form_topbar"> <header>
<button string="Apply" type="object" name="execute"/> <button string="Apply" type="object" name="execute"/>
<button string="Cancel" special="cancel"/> <button string="Cancel" special="cancel"/>
</div> </header>
<sheet layout="auto"> <sheet layout="auto">
<separator string="Company Settings" colspan="4"/> <separator string="Company Settings" colspan="4"/>
<field name="module_multi_company"/> <field name="module_multi_company"/>

View File

@ -61,7 +61,7 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form string="Leads Form" layout="manual"> <form string="Leads Form" layout="manual">
<div class="oe_form_topbar"> <header>
<button name="%(crm.action_crm_lead2opportunity_partner)d" string="Convert to Opportunity" type="action" <button name="%(crm.action_crm_lead2opportunity_partner)d" string="Convert to Opportunity" type="action"
states="draft,open,pending" help="Convert to Opportunity"/> states="draft,open,pending" help="Convert to Opportunity"/>
<button name="case_escalate" string="Escalate" type="object" <button name="case_escalate" string="Escalate" type="object"
@ -72,7 +72,7 @@
states="draft,open,pending"/> states="draft,open,pending"/>
<field name="stage_id" widget="statusbar" <field name="stage_id" widget="statusbar"
on_change="onchange_stage_id(stage_id)"/> on_change="onchange_stage_id(stage_id)"/>
</div> </header>
<sheet layout="auto"> <sheet layout="auto">
<group colspan="4" col="7"> <group colspan="4" col="7">
<field name="name"/> <field name="name"/>
@ -371,7 +371,7 @@
<field name="priority">20</field> <field name="priority">20</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form string="Opportunities" validate="0"> <form string="Opportunities" validate="0">
<header class="oe_form_topbar"> <header>
<button name="case_mark_won" string="Mark Won" states="open,pending" type="object" /> <button name="case_mark_won" string="Mark Won" states="open,pending" type="object" />
<button name="case_open" string="Open" states="draft,pending" type="object" /> <button name="case_open" string="Open" states="draft,pending" type="object" />
<button name="case_pending" string="Pending" states="draft,open" type="object" /> <button name="case_pending" string="Pending" states="draft,open" type="object" />

View File

@ -26,7 +26,7 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form string="Meetings" layout="manual"> <form string="Meetings" layout="manual">
<div class="oe_form_topbar oe_form_topbar_hifirst"> <header>
<button name="case_open" string="Confirm" type="object" <button name="case_open" string="Confirm" type="object"
states="draft"/> states="draft"/>
<button name="case_close" string="Done" type="object" <button name="case_close" string="Done" type="object"
@ -36,7 +36,7 @@
<button name="case_cancel" string="Cancel" type="object" <button name="case_cancel" string="Cancel" type="object"
states="draft,open"/> states="draft,open"/>
<field name="state" widget="statusbar" statusbar_visible="draft,open,done"/> <field name="state" widget="statusbar" statusbar_visible="draft,open,done"/>
</div> </header>
<sheet layout="auto"> <sheet layout="auto">
<group col="6" colspan="4"> <group col="6" colspan="4">
<field name="name" select="1" string="Title" <field name="name" select="1" string="Title"

View File

@ -63,7 +63,7 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button name="case_open" string="Confirm" type="object" <button name="case_open" string="Confirm" type="object"
states="draft,pending" icon="gtk-go-forward"/> states="draft,pending" icon="gtk-go-forward"/>
<button name="case_close" string="Held" type="object" <button name="case_close" string="Held" type="object"
@ -73,7 +73,7 @@
<button name="case_cancel" string="Cancel" type="object" <button name="case_cancel" string="Cancel" type="object"
states="draft,open,pending" icon="gtk-cancel"/> states="draft,open,pending" icon="gtk-cancel"/>
<field name="state" widget="statusbar" nolabel="1" statusbar_visible="draft,open,done"/> <field name="state" widget="statusbar" nolabel="1" statusbar_visible="draft,open,done"/>
</div> </header>
<sheet string="Phone Call" layout="auto"> <sheet string="Phone Call" layout="auto">
<group colspan="6" col="7"> <group colspan="6" col="7">
<field name="name" required="1"/> <field name="name" required="1"/>

View File

@ -2,7 +2,7 @@
<openerp> <openerp>
<data> <data>
<!-- Opportunity to Phonecall view --> <!-- Opportunity to Phonecall view -->
<record model="ir.ui.view" id="opportunity2phonecall_view"> <record model="ir.ui.view" id="opportunity2phonecall_view">
<field name="name">crm.opportunity2phonecall.form</field> <field name="name">crm.opportunity2phonecall.form</field>
@ -10,36 +10,36 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form string="Schedule/Log a Call" layout="manual"> <form string="Schedule/Log a Call" layout="manual">
<div class="oe_form_topbar"> <header>
<button name="action_schedule" type="object" string="Log call" icon="gtk-ok" attrs="{'invisible' : [('action', '!=', 'log')]}" /> <button name="action_schedule" type="object" string="Log call" icon="gtk-ok" attrs="{'invisible' : [('action', '!=', 'log')]}" />
<button name="action_schedule" type="object" string="Schedule Call" icon="gtk-ok" attrs="{'invisible' : [('action', '!=', 'schedule')]}" /> <button name="action_schedule" type="object" string="Schedule Call" icon="gtk-ok" attrs="{'invisible' : [('action', '!=', 'schedule')]}" />
<button name="action_cancel" string="_Cancel" icon="gtk-cancel" special="cancel" /> <button name="action_cancel" string="_Cancel" icon="gtk-cancel" special="cancel" />
</div> </header>
<group> <group>
<group> <group>
<field name="action"/> <field name="action"/>
<field name="name"/> <field name="name"/>
<field name="date" string="Planned Date" attrs="{'invisible': [('action','=','log')]}"/> <field name="date" string="Planned Date" attrs="{'invisible': [('action','=','log')]}"/>
</group> </group>
<group> <group>
<field name="partner_id" readonly="True"/> <field name="partner_id" readonly="True"/>
<field name="categ_id" string="Type" <field name="categ_id" string="Type"
widget="selection" widget="selection"
domain="[('object_id.model', '=', 'crm.phonecall')]" domain="[('object_id.model', '=', 'crm.phonecall')]"
groups="base.group_no_one"/> groups="base.group_no_one"/>
<field name="phone"/> <field name="phone"/>
<field name="user_id" attrs="{'invisible': [('action','=','log')]}"/> <field name="user_id" attrs="{'invisible': [('action','=','log')]}"/>
<field name="section_id" widget="selection" attrs="{'invisible': [('action','=','log')]}"/> <field name="section_id" widget="selection" attrs="{'invisible': [('action','=','log')]}"/>
</group> </group>
</group> </group>
<field name="note"/> <field name="note"/>
</form> </form>
</field> </field>
</record> </record>
<!-- Opportunity to Phonecall action --> <!-- Opportunity to Phonecall action -->
<record model="ir.actions.act_window" id="opportunity2phonecall_act"> <record model="ir.actions.act_window" id="opportunity2phonecall_act">
<field name="name">Schedule/Log Call</field> <field name="name">Schedule/Log Call</field>
<field name="res_model">crm.opportunity2phonecall</field> <field name="res_model">crm.opportunity2phonecall</field>
<field name="view_type">form</field> <field name="view_type">form</field>

View File

@ -89,7 +89,7 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button name="case_open" string="Open" type="object" <button name="case_open" string="Open" type="object"
states="draft,pending"/> states="draft,pending"/>
<button name="case_close" string="Done" type="object" <button name="case_close" string="Done" type="object"
@ -106,7 +106,7 @@
states="draft,open,pending"/> states="draft,open,pending"/>
<field name="stage_id" widget="statusbar" <field name="stage_id" widget="statusbar"
on_change="onchange_stage_id(stage_id)"/> on_change="onchange_stage_id(stage_id)"/>
</div> </header>
<sheet string="Claims" layout="auto"> <sheet string="Claims" layout="auto">
<group> <group>
<field name="name" /> <field name="name" />

View File

@ -62,7 +62,7 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button name="case_close" string="Done" states="open,pending" type="object" /> <button name="case_close" string="Done" states="open,pending" type="object" />
<button name="case_open" string="Open" states="draft,pending" type="object" /> <button name="case_open" string="Open" states="draft,pending" type="object" />
<button name="case_pending" string="Pending" states="draft,open" type="object" /> <button name="case_pending" string="Pending" states="draft,open" type="object" />
@ -70,7 +70,7 @@
<button name="case_reset" string="Reset to Draft" states="done,cancel" type="object" /> <button name="case_reset" string="Reset to Draft" states="done,cancel" type="object" />
<button name="case_cancel" string="Cancel" states="draft,open,pending" type="object" /> <button name="case_cancel" string="Cancel" states="draft,open,pending" type="object" />
<field name="state" widget="statusbar" nolabel="1" statusbar_visible="draft,open,done" statusbar_colors='{"pending":"blue"}'/> <field name="state" widget="statusbar" nolabel="1" statusbar_visible="draft,open,done" statusbar_colors='{"pending":"blue"}'/>
</div> </header>
<sheet string="Funds Form" layout="auto"> <sheet string="Funds Form" layout="auto">
<group colspan="4" col="6" class="oe_form_header"> <group colspan="4" col="6" class="oe_form_header">
<field name="name" select="1" string="Name"/> <field name="name" select="1" string="Name"/>

View File

@ -29,7 +29,7 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button name="case_open" string="Open" type="object" <button name="case_open" string="Open" type="object"
states="draft,pending"/> states="draft,pending"/>
<button name="case_close" string="Close" type="object" <button name="case_close" string="Close" type="object"
@ -43,7 +43,7 @@
<button name="case_cancel" string="Cancel" type="object" <button name="case_cancel" string="Cancel" type="object"
states="draft,open,pending"/> states="draft,open,pending"/>
<field name="state" select="1" nolabel="1" widget="statusbar" statusbar_visible="draft,open,done" statusbar_colors='{"pending":"blue"}'/> <field name="state" select="1" nolabel="1" widget="statusbar" statusbar_visible="draft,open,done" statusbar_colors='{"pending":"blue"}'/>
</div> </header>
<sheet string="Helpdesk Support" layout="auto"> <sheet string="Helpdesk Support" layout="auto">
<group colspan="4" col="7" class="oe_form_header"> <group colspan="4" col="7" class="oe_form_header">
<field name="name" select="1" string="Query"/> <field name="name" select="1" string="Query"/>

View File

@ -266,7 +266,7 @@
<field name="model">stock.picking</field> <field name="model">stock.picking</field>
<field name="inherit_id" ref="stock.view_picking_out_form"/> <field name="inherit_id" ref="stock.view_picking_out_form"/>
<field name="arch" type="xml"> <field name="arch" type="xml">
<xpath expr="/form/div[@class='oe_form_topbar']/button[@string='Create Invoice']" position="after"> <header>
<button name="%(report_shipping)d" string="Delivery Order" states="done" type="action" icon="gtk-print"/> <button name="%(report_shipping)d" string="Delivery Order" states="done" type="action" icon="gtk-print"/>
</xpath> </xpath>
</field> </field>

View File

@ -51,13 +51,13 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form string="Events" layout="manual"> <form string="Events" layout="manual">
<div class="oe_form_topbar"> <header>
<button string="Confirm Event" name="button_confirm" states="draft" type="object"/> <button string="Confirm Event" name="button_confirm" states="draft" type="object"/>
<button string="Event Ended" name="button_done" states="confirm" type="object"/> <button string="Event Ended" name="button_done" states="confirm" type="object"/>
<button string="Set To Draft" name="button_draft" states="cancel,done" type="object"/> <button string="Set To Draft" name="button_draft" states="cancel,done" type="object"/>
<button string="Cancel Event" name="button_cancel" states="draft,confirm" type="object"/> <button string="Cancel Event" name="button_cancel" states="draft,confirm" type="object"/>
<field name="state" widget="statusbar" statusbar_visible="draft,confirm,done"/> <field name="state" widget="statusbar" statusbar_visible="draft,confirm,done"/>
</div> </header>
<sheet layout="manual"> <sheet layout="manual">
@ -352,13 +352,13 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button name="registration_open" string="Confirm" states="draft" type="object"/> <button name="registration_open" string="Confirm" states="draft" type="object"/>
<button name="button_reg_close" string="Attended" states="open" type="object"/> <button name="button_reg_close" string="Attended" states="open" type="object"/>
<button string="Set To Unconfirmed" name="do_draft" states="cancel,done" type="object"/> <button string="Set To Unconfirmed" name="do_draft" states="cancel,done" type="object"/>
<button name="button_reg_cancel" string="Cancel Registration" states="draft,open" type="object"/> <button name="button_reg_cancel" string="Cancel Registration" states="draft,open" type="object"/>
<field name="state" select="1" nolabel="1" colspan="2" widget="statusbar" statusbar_visible="draft,open,done"/> <field name="state" select="1" nolabel="1" colspan="2" widget="statusbar" statusbar_visible="draft,open,done"/>
</div> </header>
<sheet string="Registration" layout="auto"> <sheet string="Registration" layout="auto">
<group col="6" colspan="4"> <group col="6" colspan="4">
<field name="event_id" on_change="onchange_event(event_id, context)" domain="[('state','in',('draft','confirm'))]"/> <field name="event_id" on_change="onchange_event(event_id, context)" domain="[('state','in',('draft','confirm'))]"/>

View File

@ -346,12 +346,12 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button name="job_recruitement" string="In Recruitement" states="open" type="object"/> <button name="job_recruitement" string="In Recruitement" states="open" type="object"/>
<button name="job_open" string="In Position" states="old,recruit" type="object"/> <button name="job_open" string="In Position" states="old,recruit" type="object"/>
<button name="job_old" string="Mark as Old" states="open,recruit" type="object"/> <button name="job_old" string="Mark as Old" states="open,recruit" type="object"/>
<field name="state" widget="statusbar" statusbar_visible="recruit,open"/> <field name="state" widget="statusbar" statusbar_visible="recruit,open"/>
</div> </header>
<sheet string="Job" layout="auto"> <sheet string="Job" layout="auto">
<group col="6" colspan="4"> <group col="6" colspan="4">
<field name="name" /> <field name="name" />

View File

@ -15,10 +15,10 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form string ="Configure Human Resources" layout="manual"> <form string ="Configure Human Resources" layout="manual">
<div class="oe_form_topbar"> <header>
<button string="Apply" type="object" name="execute"/> <button string="Apply" type="object" name="execute"/>
<button string="Cancel" special="cancel"/> <button string="Cancel" special="cancel"/>
</div> </header>
<sheet layout="auto"> <sheet layout="auto">
<separator string="Additional Features" colspan="4"/> <separator string="Additional Features" colspan="4"/>
<field name="module_hr_expense"/> <field name="module_hr_expense"/>

View File

@ -155,14 +155,14 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button name="button_plan_in_progress" string="Start Appraisal" states="draft" type="object"/> <button name="button_plan_in_progress" string="Start Appraisal" states="draft" type="object"/>
<button name="button_final_validation" string="Validate Appraisal" states="wait" type="object"/> <button name="button_final_validation" string="Validate Appraisal" states="wait" type="object"/>
<button name="button_done" string="Done" states="progress" type="object"/> <button name="button_done" string="Done" states="progress" type="object"/>
<button name="button_draft" string="Reset to Draft" states="cancel" type="object"/> <button name="button_draft" string="Reset to Draft" states="cancel" type="object"/>
<button name="button_cancel" string="Cancel" states="draft,wait,progress" type="object"/> <button name="button_cancel" string="Cancel" states="draft,wait,progress" type="object"/>
<field name="state" widget="statusbar" statusbar_visible="draft,progress,wait,done" statusbar_colors='{"progress":"blue"}'/> <field name="state" widget="statusbar" statusbar_visible="draft,progress,wait,done" statusbar_colors='{"progress":"blue"}'/>
</div> </header>
<sheet string="Appraisal" layout="auto"> <sheet string="Appraisal" layout="auto">
<group col="4" colspan="3"> <group col="4" colspan="3">
<separator string="Appraisal Data" colspan="4"/> <separator string="Appraisal Data" colspan="4"/>

View File

@ -64,14 +64,14 @@
<field name="model">hr.expense.expense</field> <field name="model">hr.expense.expense</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button name="confirm" states="draft" string="Submit to Manager" type="workflow"/> <button name="confirm" states="draft" string="Submit to Manager" type="workflow"/>
<button name="validate" states="confirm" string="Approve" type="workflow" groups="base.group_hr_user"/> <button name="validate" states="confirm" string="Approve" type="workflow" groups="base.group_hr_user"/>
<button name="draft" states="confirm,cancelled" string="Set to Draft" type="workflow" groups="base.group_hr_user"/> <button name="draft" states="confirm,cancelled" string="Set to Draft" type="workflow" groups="base.group_hr_user"/>
<button name="invoice" states="accepted" string="Invoice" type="object" groups="base.group_hr_user"/> <button name="invoice" states="accepted" string="Invoice" type="object" groups="base.group_hr_user"/>
<button name="refuse" states="confirm,accepted" string="Refuse" type="workflow" groups="base.group_hr_user" /> <button name="refuse" states="confirm,accepted" string="Refuse" type="workflow" groups="base.group_hr_user" />
<field name="state" widget="statusbar" statusbar_visible="draft,confirm,accepted" statusbar_colors='{"confirm":"blue","cancelled":"red"}'/> <field name="state" widget="statusbar" statusbar_visible="draft,confirm,accepted" statusbar_colors='{"confirm":"blue","cancelled":"red"}'/>
</div> </header>
<sheet string="Expenses Sheet" layout="auto"> <sheet string="Expenses Sheet" layout="auto">
<group colspan="4" col="6"> <group colspan="4" col="6">
<field name="employee_id" on_change="onchange_employee_id(employee_id)"/> <field name="employee_id" on_change="onchange_employee_id(employee_id)"/>

View File

@ -64,14 +64,14 @@
<field name="priority">1</field> <field name="priority">1</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button string="Submit to Manager" name="confirm" states="draft" type="workflow"/> <button string="Submit to Manager" name="confirm" states="draft" type="workflow"/>
<button string="Approve" name="validate" states="confirm" type="workflow" groups="base.group_hr_user"/> <button string="Approve" name="validate" states="confirm" type="workflow" groups="base.group_hr_user"/>
<button string="Validate" name="second_validate" states="validate1" type="workflow" groups="base.group_hr_user"/> <button string="Validate" name="second_validate" states="validate1" type="workflow" groups="base.group_hr_user"/>
<button string="Refuse" name="refuse" states="confirm,validate1" type="workflow" groups="base.group_hr_user,base.group_hr_manager"/> <button string="Refuse" name="refuse" states="confirm,validate1" type="workflow" groups="base.group_hr_user,base.group_hr_manager"/>
<button string="Reset to New" name="set_to_draft" states="refuse,validate" type="object" groups="base.group_hr_user"/> <button string="Reset to New" name="set_to_draft" states="refuse,validate" type="object" groups="base.group_hr_user"/>
<field name="state" widget="statusbar" statusbar_visible="draft,confirm,validate" statusbar_colors='{"confirm":"blue","validate1":"blue","refuse":"red"}'/> <field name="state" widget="statusbar" statusbar_visible="draft,confirm,validate" statusbar_colors='{"confirm":"blue","validate1":"blue","refuse":"red"}'/>
</div> </header>
<sheet string="Leave Request" layout="auto"> <sheet string="Leave Request" layout="auto">
<group col="8" colspan="4"> <group col="8" colspan="4">
<field name="name" attrs="{'readonly':[('state','!=','draft'),('state','!=','confirm')]}"/> <field name="name" attrs="{'readonly':[('state','!=','draft'),('state','!=','confirm')]}"/>
@ -113,14 +113,14 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button string="Submit to Manager" name="confirm" states="draft" type="workflow"/> <button string="Submit to Manager" name="confirm" states="draft" type="workflow"/>
<button string="Approve" name="validate" states="confirm" type="workflow" groups="base.group_hr_user"/> <button string="Approve" name="validate" states="confirm" type="workflow" groups="base.group_hr_user"/>
<button string="Validate" name="second_validate" states="validate1" type="workflow" groups="base.group_hr_user"/> <button string="Validate" name="second_validate" states="validate1" type="workflow" groups="base.group_hr_user"/>
<button string="Refuse" name="refuse" states="confirm,validate1" type="workflow" groups="base.group_hr_user"/> <button string="Refuse" name="refuse" states="confirm,validate1" type="workflow" groups="base.group_hr_user"/>
<button string="Reset to New" name="set_to_draft" states="cancel,validate,refuse" type="object" groups="base.group_hr_user"/> <button string="Reset to New" name="set_to_draft" states="cancel,validate,refuse" type="object" groups="base.group_hr_user"/>
<field name="state" widget="statusbar" statusbar_visible="draft,confirm,validate" statusbar_colors='{"confirm":"blue","validate1":"blue","refuse":"red"}'/> <field name="state" widget="statusbar" statusbar_visible="draft,confirm,validate" statusbar_colors='{"confirm":"blue","validate1":"blue","refuse":"red"}'/>
</div> </header>
<sheet string="Allocation Request" layout="auto"> <sheet string="Allocation Request" layout="auto">
<group col="8" colspan="4" class="oe_form_header"> <group col="8" colspan="4" class="oe_form_header">
<field name="name"/> <field name="name"/>

View File

@ -261,14 +261,14 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button string="Confirm" name="hr_verify_sheet" states="draft"/> <button string="Confirm" name="hr_verify_sheet" states="draft"/>
<button string="Refund" name="refund_sheet" states="confirm,done" type='object'/> <button string="Refund" name="refund_sheet" states="confirm,done" type='object'/>
<button string="Set to Draft" name="draft" states="cancel"/> <button string="Set to Draft" name="draft" states="cancel"/>
<button string="Compute Sheet" name="compute_sheet" type="object" states="draft"/> <button string="Compute Sheet" name="compute_sheet" type="object" states="draft"/>
<button string="Cancel" name="cancel_sheet" states="draft,hr_check,confirm,verify"/> <button string="Cancel" name="cancel_sheet" states="draft,hr_check,confirm,verify"/>
<field name="state" widget="statusbar" statusbar_visible="draft,confirm"/> <field name="state" widget="statusbar" statusbar_visible="draft,confirm"/>
</div> </header>
<sheet string="Payslip" layout="auto"> <sheet string="Payslip" layout="auto">
<group col="6" colspan="4" class="oe_form_header"> <group col="6" colspan="4" class="oe_form_header">
<field name="employee_id" on_change="onchange_employee_id(date_from, date_to, employee_id, contract_id)"/> <field name="employee_id" on_change="onchange_employee_id(date_from, date_to, employee_id, contract_id)"/>
@ -722,12 +722,12 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button name="close_payslip_run" type="object" string="Close" states="draft"/> <button name="close_payslip_run" type="object" string="Close" states="draft"/>
<button name="%(action_hr_payslip_by_employees)d" type="action" states="draft" string="Generate Payslips" /> <button name="%(action_hr_payslip_by_employees)d" type="action" states="draft" string="Generate Payslips" />
<button string="Set to Draft" name="draft_payslip_run" type="object" states="close"/> <button string="Set to Draft" name="draft_payslip_run" type="object" states="close"/>
<field name="state" widget="statusbar"/> <field name="state" widget="statusbar"/>
</div> </header>
<sheet string="Payslips Batches" layout="auto"> <sheet string="Payslips Batches" layout="auto">
<group col="6" colspan="4" class="oe_form_header"> <group col="6" colspan="4" class="oe_form_header">
<field name="name" colspan="4"/> <field name="name" colspan="4"/>

View File

@ -71,7 +71,7 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button name="%(action_hr_recruitment_hired_employee)d" string="Hire" type="action" <button name="%(action_hr_recruitment_hired_employee)d" string="Hire" type="action"
states="open,pending"/> states="open,pending"/>
<button name="case_open" string="Open" type="object" <button name="case_open" string="Open" type="object"
@ -87,7 +87,7 @@
<button name="stage_next" string="Next" type="object" <button name="stage_next" string="Next" type="object"
states="open" icon="gtk-go-forward"/> states="open" icon="gtk-go-forward"/>
<field name="stage_id" widget="statusbar"/> <field name="stage_id" widget="statusbar"/>
</div> </header>
<sheet string="Jobs - Recruitment Form" layout="auto"> <sheet string="Jobs - Recruitment Form" layout="auto">
<group colspan="4" col="4"> <group colspan="4" col="4">
<field name="name" string="Subject"/> <field name="name" string="Subject"/>

View File

@ -23,14 +23,14 @@
</group> </group>
</group> </group>
<xpath expr="/form/sheet" position='before'> <xpath expr="/form/sheet" position='before'>
<div class="oe_form_topbar"> <header>
<button name="set_pending" string="Pending" type="object" states="open"/> <button name="set_pending" string="Pending" type="object" states="open"/>
<button name="set_close" string="Close" type="object" states="open,pending"/> <button name="set_close" string="Close" type="object" states="open,pending"/>
<button name="set_open" string="Re-open project" type="object" states="pending,cancelled,close,draft"/> <button name="set_open" string="Re-open project" type="object" states="pending,cancelled,close,draft"/>
<button name="set_cancel" string="Cancel" type="object" states="open,pending"/> <button name="set_cancel" string="Cancel" type="object" states="open,pending"/>
<field name="state" readonly="1" widget="statusbar" <field name="state" readonly="1" widget="statusbar"
statusbar_visible="open,pending,close" statusbar_colors='{"pending":"red", "template":"blue"}'/> statusbar_visible="open,pending,close" statusbar_colors='{"pending":"red", "template":"blue"}'/>
</div> </header>
</xpath> </xpath>
</field> </field>
</record> </record>

View File

@ -61,13 +61,13 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button name="button_confirm" states="draft" string="Submited to Manager" type="object"/> <button name="button_confirm" states="draft" string="Submited to Manager" type="object"/>
<button name="done" states="confirm" string="Approve" type="workflow" groups="base.group_hr_user"/> <button name="done" states="confirm" string="Approve" type="workflow" groups="base.group_hr_user"/>
<button name="action_set_to_draft" states="done" string="Set to Draft" type="object"/> <button name="action_set_to_draft" states="done" string="Set to Draft" type="object"/>
<button name="cancel" states="confirm" string="Refuse" type="workflow" groups="base.group_hr_user"/> <button name="cancel" states="confirm" string="Refuse" type="workflow" groups="base.group_hr_user"/>
<field name="state" widget="statusbar" statusbar_visible="new,confirm,done"/> <field name="state" widget="statusbar" statusbar_visible="new,confirm,done"/>
</div> </header>
<sheet string="Timesheet" layout="auto"> <sheet string="Timesheet" layout="auto">
<group colspan="4" col="6" class="oe_form_header"> <group colspan="4" col="6" class="oe_form_header">
<field name="employee_id" on_change="onchange_employee_id(employee_id)"/> <field name="employee_id" on_change="onchange_employee_id(employee_id)"/>

View File

@ -183,12 +183,12 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button name="idea_open" string="Open" states="draft"/> <button name="idea_open" string="Open" states="draft"/>
<button name="idea_close" string="Accept" states="open"/> <button name="idea_close" string="Accept" states="open"/>
<button name="idea_cancel" string="Refuse" states="open" /> <button name="idea_cancel" string="Refuse" states="open" />
<field name="state" widget="statusbar" statusbar_visible="draft,open,close"/> <field name="state" widget="statusbar" statusbar_visible="draft,open,close"/>
</div> </header>
<sheet string="New Idea" layout="auto"> <sheet string="New Idea" layout="auto">
<group col="6" colspan="4" class="oe_form_header"> <group col="6" colspan="4" class="oe_form_header">
<field name="name" select="1" /> <field name="name" select="1" />

View File

@ -7,10 +7,10 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form string="Configure Knowledge" layout="manual"> <form string="Configure Knowledge" layout="manual">
<div class="oe_form_topbar"> <header>
<button string="Apply" type="object" name="execute"/> <button string="Apply" type="object" name="execute"/>
<button string="Cancel" special="cancel"/> <button string="Cancel" special="cancel"/>
</div> </header>
<sheet layout="auto"> <sheet layout="auto">
<separator string="Wiki" colspan="4"/> <separator string="Wiki" colspan="4"/>
<field name="module_wiki_faq"/> <field name="module_wiki_faq"/>

View File

@ -24,11 +24,11 @@
<field name="model">lunch.order</field> <field name="model">lunch.order</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button name="%(action_lunch_order_confirm)d" string="Confirm Order" type="action" attrs="{'invisible':[('state','=','confirmed')]}"/> <button name="%(action_lunch_order_confirm)d" string="Confirm Order" type="action" attrs="{'invisible':[('state','=','confirmed')]}"/>
<button name="%(action_lunch_order_cancel)d" string="Cancel Order" type="action"/> <button name="%(action_lunch_order_cancel)d" string="Cancel Order" type="action"/>
<field name="state" widget="statusbar" statusbar_visible="draft,confirmed"/> <field name="state" widget="statusbar" statusbar_visible="draft,confirmed"/>
</div> </header>
<sheet string="Order" layout="auto"> <sheet string="Order" layout="auto">
<field name="user_id" select="1"/> <field name="user_id" select="1"/>
<field name="date" select="1"/> <field name="date" select="1"/>

View File

@ -7,10 +7,10 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form string="Configure Marketing" layout="manual"> <form string="Configure Marketing" layout="manual">
<div class="oe_form_topbar"> <header>
<button string="Apply" type="object" name="execute"/> <button string="Apply" type="object" name="execute"/>
<button string="Cancel" special="cancel"/> <button string="Cancel" special="cancel"/>
</div> </header>
<sheet layout="auto"> <sheet layout="auto">
<separator string="Campaigns" colspan="4"/> <separator string="Campaigns" colspan="4"/>
<field name="module_marketing_campaign"/> <field name="module_marketing_campaign"/>

View File

@ -16,13 +16,13 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button name="state_running_set" string="Run" states="draft"/> <button name="state_running_set" string="Run" states="draft"/>
<button name="state_done_set" string="Done" states="running"/> <button name="state_done_set" string="Done" states="running"/>
<button name="state_draft_set" string="Set to Draft" states="done,cancelled"/> <button name="state_draft_set" string="Set to Draft" states="done,cancelled"/>
<button name="state_cancel_set" string="Cancel" states="running"/> <button name="state_cancel_set" string="Cancel" states="running"/>
<field name="state" readonly="1" widget="statusbar" statusbar_visible="draft,running,done"/> <field name="state" readonly="1" widget="statusbar" statusbar_visible="draft,running,done"/>
</div> </header>
<sheet string="Campaign" layout="auto"> <sheet string="Campaign" layout="auto">
<group colspan="4" col="6"> <group colspan="4" col="6">
<group colspan="2" col="2"> <group colspan="2" col="2">
@ -137,13 +137,13 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button name="state_running_set" string="Run" states="draft"/> <button name="state_running_set" string="Run" states="draft"/>
<button name="state_done_set" string="Close" states="running"/> <button name="state_done_set" string="Close" states="running"/>
<button name="state_draft_set" string="Set to Draft" states="done,cancelled"/> <button name="state_draft_set" string="Set to Draft" states="done,cancelled"/>
<button name="state_cancel_set" string="Cancel" states="running"/> <button name="state_cancel_set" string="Cancel" states="running"/>
<field name="state" readonly="1" widget="statusbar" statusbar_visible="draft,running,done"/> <field name="state" readonly="1" widget="statusbar" statusbar_visible="draft,running,done"/>
</div> </header>
<sheet string="Segments" layout="auto"> <sheet string="Segments" layout="auto">
<group colspan="2" col="2"> <group colspan="2" col="2">
<separator string="Segment" colspan="4"/> <separator string="Segment" colspan="4"/>
@ -358,12 +358,12 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button string="Process" states="todo" name="process" type="object"/> <button string="Process" states="todo" name="process" type="object"/>
<button string="Reset" states="exception,cancelled" name="button_draft" type="object"/> <button string="Reset" states="exception,cancelled" name="button_draft" type="object"/>
<button string="Cancel" states="todo,exception" name="button_cancel" type="object"/> <button string="Cancel" states="todo,exception" name="button_cancel" type="object"/>
<field name="state" readonly="True" widget="statusbar" statusbar_visible="todo,done" statusbar_colors='{"exception":"red"}'/> <field name="state" readonly="True" widget="statusbar" statusbar_visible="todo,done" statusbar_colors='{"exception":"red"}'/>
</div> </header>
<sheet string="Marketing Campaign Activities" layout="auto"> <sheet string="Marketing Campaign Activities" layout="auto">
<group colspan="4" col="6"> <group colspan="4" col="6">
<group colspan="2" col="2"> <group colspan="2" col="2">

View File

@ -632,7 +632,7 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button name="button_confirm" states="draft" string="Confirm Production"/> <button name="button_confirm" states="draft" string="Confirm Production"/>
<button name="button_produce" states="ready" string="Start Production"/> <button name="button_produce" states="ready" string="Start Production"/>
<button name="%(act_mrp_product_produce)d" states="in_production" string="Produce" type="action"/> <button name="%(act_mrp_product_produce)d" states="in_production" string="Produce" type="action"/>
@ -641,7 +641,7 @@
<button name="button_cancel" states="draft,ready,in_production,picking_except" string="Cancel"/> <button name="button_cancel" states="draft,ready,in_production,picking_except" string="Cancel"/>
<button name="action_cancel" type="object" states="confirmed" string="Cancel"/> <button name="action_cancel" type="object" states="confirmed" string="Cancel"/>
<field name="state" widget="statusbar" statusbar_visible="draft,ready,in_production,done" statusbar_colors='{"picking_except":"red","confirmed":"blue"}'/> <field name="state" widget="statusbar" statusbar_visible="draft,ready,in_production,done" statusbar_colors='{"picking_except":"red","confirmed":"blue"}'/>
</div> </header>
<sheet string="Manufacturing Orders" layout="auto"> <sheet string="Manufacturing Orders" layout="auto">
<group colspan="4" col="7"> <group colspan="4" col="7">
<field name="name" string="Reference"/> <field name="name" string="Reference"/>

View File

@ -7,10 +7,10 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form string="Configure Manufacturing" layout="manual"> <form string="Configure Manufacturing" layout="manual">
<div class="oe_form_topbar"> <header>
<button string="Apply" type="object" name="execute"/> <button string="Apply" type="object" name="execute"/>
<button string="Cancel" special="cancel"/> <button string="Cancel" special="cancel"/>
</div> </header>
<sheet layout="auto"> <sheet layout="auto">
<separator string="Manufacturing Order" colspan="4"/> <separator string="Manufacturing Order" colspan="4"/>
<field name="module_mrp_operations"/> <field name="module_mrp_operations"/>

View File

@ -68,7 +68,7 @@
<field name="inherit_id" eval="False"/> <field name="inherit_id" eval="False"/>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button name="button_start_working" string="Start" states="draft"/> <button name="button_start_working" string="Start" states="draft"/>
<button name="button_resume" string="Resume" states="pause"/> <button name="button_resume" string="Resume" states="pause"/>
<button name="button_done" string="Finished" states="startworking"/> <button name="button_done" string="Finished" states="startworking"/>
@ -76,7 +76,7 @@
<button name="button_draft" string="Set Draft" states="cancel"/> <button name="button_draft" string="Set Draft" states="cancel"/>
<button name="button_cancel" string="Cancel" states="draft,startworking"/> <button name="button_cancel" string="Cancel" states="draft,startworking"/>
<field name="state" widget="statusbar" statusbar_visible="draft,startworking"/> <field name="state" widget="statusbar" statusbar_visible="draft,startworking"/>
</div> </header>
<sheet string="Work Orders" layout="auto"> <sheet string="Work Orders" layout="auto">
<group col="6" colspan="4" class="oe_form_header"> <group col="6" colspan="4" class="oe_form_header">
<field colspan="4" name="name" select="1"/> <field colspan="4" name="name" select="1"/>

View File

@ -28,7 +28,7 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button name="repair_confirm" states="draft" string="Confirm Repair"/> <button name="repair_confirm" states="draft" string="Confirm Repair"/>
<button name="repair_ready" states="confirmed" string="Start Repair"/> <button name="repair_ready" states="confirmed" string="Start Repair"/>
<button name="action_repair_start" states="ready" string="Start Repair"/> <button name="action_repair_start" states="ready" string="Start Repair"/>
@ -41,7 +41,7 @@
<button name="%(action_cancel_repair)d" states="invoice_except" string="Cancel Repair" type="action"/> <button name="%(action_cancel_repair)d" states="invoice_except" string="Cancel Repair" type="action"/>
<button name="cancel" states="draft" string="Cancel Repair"/> <button name="cancel" states="draft" string="Cancel Repair"/>
<field name="state" widget="statusbar" statusbar_visible="draft,confirmed,ready" /> <field name="state" widget="statusbar" statusbar_visible="draft,confirmed,ready" />
</div> </header>
<sheet string="Repairs order" layout="auto"> <sheet string="Repairs order" layout="auto">
<group col="6" colspan="4" class="oe_form_header"> <group col="6" colspan="4" class="oe_form_header">
<field name="name"/> <field name="name"/>

View File

@ -17,13 +17,13 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button name="%(action_pos_payment)d" string="Payment" type="action" states="draft"/> <button name="%(action_pos_payment)d" string="Payment" type="action" states="draft"/>
<button name="%(action_report_pos_receipt)d" string="Reprint" type="action" states="paid,done,invoiced"/> <button name="%(action_report_pos_receipt)d" string="Reprint" type="action" states="paid,done,invoiced"/>
<button name="refund" string="Return Products" type="object" <button name="refund" string="Return Products" type="object"
attrs="{'invisible':[('state','=','draft')]}"/> attrs="{'invisible':[('state','=','draft')]}"/>
<field name="state" widget="statusbar" statusbar_visible="draft,paid,done" statusbar_colors='{"cancel":"red"}'/> <field name="state" widget="statusbar" statusbar_visible="draft,paid,done" statusbar_colors='{"cancel":"red"}'/>
</div> </header>
<sheet string="PoS Orders" layout="auto"> <sheet string="PoS Orders" layout="auto">
<group col="7" colspan="4" class="oe_form_header"> <group col="7" colspan="4" class="oe_form_header">
<field name="name"/> <field name="name"/>

View File

@ -47,13 +47,13 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button name="button_confirm" states="draft" string="Confirm"/> <button name="button_confirm" states="draft" string="Confirm"/>
<button name="button_check" states="confirmed" string="Run Procurement"/> <button name="button_check" states="confirmed" string="Run Procurement"/>
<button name="button_restart" states="exception" string="Retry"/> <button name="button_restart" states="exception" string="Retry"/>
<button name="button_cancel" states="draft,exception,waiting" string="Cancel"/> <button name="button_cancel" states="draft,exception,waiting" string="Cancel"/>
<field name="state" readonly="1" widget="statusbar" statusbar_visible="draft,confirmed" /> <field name="state" readonly="1" widget="statusbar" statusbar_visible="draft,confirmed" />
</div> </header>
<sheet string="Procurement" layout="auto"> <sheet string="Procurement" layout="auto">
<group col="2" colspan="2" class="oe_form_header"> <group col="2" colspan="2" class="oe_form_header">
<separator colspan="2" string="References"/> <separator colspan="2" string="References"/>

View File

@ -19,7 +19,7 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form string="Project" layout="manual"> <form string="Project" layout="manual">
<div class="oe_form_topbar"> <header>
<button name="set_done" string="Done" type="object" states="open,pending"/> <button name="set_done" string="Done" type="object" states="open,pending"/>
<button name="set_open" string="Re-open project" type="object" states="pending,cancelled,close"/> <button name="set_open" string="Re-open project" type="object" states="pending,cancelled,close"/>
<button name="set_pending" string="Pending" type="object" states="open"/> <button name="set_pending" string="Pending" type="object" states="open"/>
@ -28,7 +28,7 @@
<button name="reset_project" string="Reset as Project" type="object" states="template"/> <button name="reset_project" string="Reset as Project" type="object" states="template"/>
<button name="set_cancel" string="Cancel" type="object" states="open,pending"/> <button name="set_cancel" string="Cancel" type="object" states="open,pending"/>
<field name="state" widget="statusbar" statusbar_visible="open,close" statusbar_colors='{"pending":"blue"}' readonly="1"/> <field name="state" widget="statusbar" statusbar_visible="open,close" statusbar_colors='{"pending":"blue"}' readonly="1"/>
</div> </header>
<sheet string="Project" layout="auto"> <sheet string="Project" layout="auto">
<group colspan="6" col="6"> <group colspan="6" col="6">
<field name="name" string="Project Name" select="1"/> <field name="name" string="Project Name" select="1"/>
@ -301,7 +301,7 @@
<field eval="2" name="priority"/> <field eval="2" name="priority"/>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form string="Project" layout="manual"> <form string="Project" layout="manual">
<div class="oe_form_topbar"> <header>
<button name="do_open" string="Start Task" type="object" <button name="do_open" string="Start Task" type="object"
states="draft,pending"/> states="draft,pending"/>
<button name="%(action_project_task_reevaluate)d" string="Reactivate" type="action" <button name="%(action_project_task_reevaluate)d" string="Reactivate" type="action"
@ -321,7 +321,7 @@
<button name="stage_next" string="Next Stage" type="object" <button name="stage_next" string="Next Stage" type="object"
states="open,pending" icon="gtk-go-forward" attrs="{'invisible': [('stage_id','=', False)]}"/> states="open,pending" icon="gtk-go-forward" attrs="{'invisible': [('stage_id','=', False)]}"/>
<field name="stage_id" widget="statusbar"/> <field name="stage_id" widget="statusbar"/>
</div> </header>
<sheet string="Task edition" layout="auto"> <sheet string="Task edition" layout="auto">
<group colspan="6" col="6"> <group colspan="6" col="6">
<field name="name" select="1"/> <field name="name" select="1"/>

View File

@ -8,10 +8,10 @@
<field name="priority" eval="20"/> <field name="priority" eval="20"/>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form string="Configure Project" layout="manual"> <form string="Configure Project" layout="manual">
<div class="oe_form_topbar"> <header>
<button string="Apply" type="object" name="execute"/> <button string="Apply" type="object" name="execute"/>
<button string="Cancel" special="cancel"/> <button string="Cancel" special="cancel"/>
</div> </header>
<sheet layout="auto"> <sheet layout="auto">
<separator string="Project" colspan="4"/> <separator string="Project" colspan="4"/>
<field name="module_project_mrp"/> <field name="module_project_mrp"/>

View File

@ -51,7 +51,7 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button name="case_open" string="Open" type="object" <button name="case_open" string="Open" type="object"
states="draft,pending"/> states="draft,pending"/>
<button name="case_close" string="Done" type="object" <button name="case_close" string="Done" type="object"
@ -71,7 +71,7 @@
<button name="case_cancel" string="Cancel" type="object" <button name="case_cancel" string="Cancel" type="object"
states="draft,open,pending"/> states="draft,open,pending"/>
<field name="stage_id" widget="statusbar"/> <field name="stage_id" widget="statusbar"/>
</div> </header>
<sheet string="Issue Tracker Form" layout="auto"> <sheet string="Issue Tracker Form" layout="auto">
<group colspan="4" col="6"> <group colspan="4" col="6">
<field name="name"/> <field name="name"/>

View File

@ -142,14 +142,14 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button string="Start Phase" name="set_open" states="pending,draft"/> <button string="Start Phase" name="set_open" states="pending,draft"/>
<button string="Done" name="set_done" states="pending,open"/> <button string="Done" name="set_done" states="pending,open"/>
<button string="Pending" name="set_pending" states="open"/> <button string="Pending" name="set_pending" states="open"/>
<button string="Draft" name="set_draft" states="open"/> <button string="Draft" name="set_draft" states="open"/>
<button string="Cancel" name="set_cancel" states="draft,open,pending"/> <button string="Cancel" name="set_cancel" states="draft,open,pending"/>
<field name="state" widget="statusbar" statusbar_visible="draft,open,done" statusbar_colors='{"pending":"blue"}'/> <field name="state" widget="statusbar" statusbar_visible="draft,open,done" statusbar_colors='{"pending":"blue"}'/>
</div> </header>
<sheet string="Project Phase" layout="auto"> <sheet string="Project Phase" layout="auto">
<group colspan="6" col="6"> <group colspan="6" col="6">
<group colspan="6" col="7" > <group colspan="6" col="7" >

View File

@ -27,13 +27,13 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button name="action_open" states="draft" string="Open" type="object" /> <button name="action_open" states="draft" string="Open" type="object" />
<button name="action_done" states="open" string="Done" type="object" /> <button name="action_done" states="open" string="Done" type="object" />
<button name="action_draft" states="done,cancel" string="Reset to Draft" type="object" /> <button name="action_draft" states="done,cancel" string="Reset to Draft" type="object" />
<button name="action_cancel" states="draft,open" string="Cancel" type="object" /> <button name="action_cancel" states="draft,open" string="Cancel" type="object" />
<field name="state" widget="statusbar" statusbar_visible="draft,open"/> <field name="state" widget="statusbar" statusbar_visible="draft,open"/>
</div> </header>
<sheet string="Planning by Account" layout="auto"> <sheet string="Planning by Account" layout="auto">
<group col="6" colspan="4" class="oe_form_header"> <group col="6" colspan="4" class="oe_form_header">
<field name="name" select="1" /> <field name="name" select="1" />

View File

@ -53,7 +53,7 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button type="object" string="Open" name="button_open" states="draft,pending"/> <button type="object" string="Open" name="button_open" states="draft,pending"/>
<button type="object" string="Close" name="button_close" states="open,pending"/> <button type="object" string="Close" name="button_close" states="open,pending"/>
<button type="object" string="Pending" name="button_pending" states="open"/> <button type="object" string="Pending" name="button_pending" states="open"/>
@ -61,7 +61,7 @@
<button type="object" string="Set to Draft" name="button_draft" states="cancel,done"/> <button type="object" string="Set to Draft" name="button_draft" states="cancel,done"/>
<button type="object" string="Cancel" name="button_cancel" states="draft,open,pending"/> <button type="object" string="Cancel" name="button_cancel" states="draft,open,pending"/>
<field name="state" widget="statusbar" statusbar_visible="draft,open"/> <field name="state" widget="statusbar" statusbar_visible="draft,open"/>
</div> </header>
<sheet string="Product backlog" layout="auto"> <sheet string="Product backlog" layout="auto">
<group colspan="4" col="8" class="oe_form_header"> <group colspan="4" col="8" class="oe_form_header">
<field name="name" select="1"/> <field name="name" select="1"/>
@ -225,7 +225,7 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button type="object" string="Open" name="button_open" states="draft,pending"/> <button type="object" string="Open" name="button_open" states="draft,pending"/>
<button type="object" string="Close" name="button_close" states="open,pending"/> <button type="object" string="Close" name="button_close" states="open,pending"/>
<button type="object" string="Pending" name="button_pending" states="open"/> <button type="object" string="Pending" name="button_pending" states="open"/>
@ -233,7 +233,7 @@
string="Burndown Chart" type="action"/> string="Burndown Chart" type="action"/>
<button type="object" string="Set to Draft" name="button_draft" states="cancel,done"/> <button type="object" string="Set to Draft" name="button_draft" states="cancel,done"/>
<field name="state" readonly="1" widget="statusbar" statusbar_visible="draft,open"/> <field name="state" readonly="1" widget="statusbar" statusbar_visible="draft,open"/>
</div> </header>
<sheet string="Scrum Sprint" layout="auto"> <sheet string="Scrum Sprint" layout="auto">
<group colspan="4" col="6" class="oe_form_header"> <group colspan="4" col="6" class="oe_form_header">
<field name="name" select="1"/> <field name="name" select="1"/>

View File

@ -131,7 +131,7 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button name="purchase_confirm" states="draft,sent" string="Confirm Order" class="oe_form_button_hi"/> <button name="purchase_confirm" states="draft,sent" string="Confirm Order" class="oe_form_button_hi"/>
<button name="wkf_send_rfq" states="draft" string="Send RFQ" type="object" context="{'send_rfq':True}"/> <button name="wkf_send_rfq" states="draft" string="Send RFQ" type="object" context="{'send_rfq':True}"/>
<button name="wkf_send_rfq" states="confirmed" string="Resend Purchase Order" type="object"/> <button name="wkf_send_rfq" states="confirmed" string="Resend Purchase Order" type="object"/>
@ -145,7 +145,7 @@
<button name="action_cancel_draft" states="cancel,sent,confirmed" string="Set to Draft" type="object"/> <button name="action_cancel_draft" states="cancel,sent,confirmed" string="Set to Draft" type="object"/>
<button name="purchase_cancel" states="draft,confirmed,wait_auth,sent" string="Cancel"/> <button name="purchase_cancel" states="draft,confirmed,wait_auth,sent" string="Cancel"/>
<field name="state" widget="statusbar" statusbar_visible="draft,approved,done" statusbar_colors='{"except_picking":"red","except_invoice":"red","confirmed":"blue","wait":"blue"}' readonly="1"/> <field name="state" widget="statusbar" statusbar_visible="draft,approved,done" statusbar_colors='{"except_picking":"red","except_invoice":"red","confirmed":"blue","wait":"blue"}' readonly="1"/>
</div> </header>
<sheet string="Purchase Order" layout="auto"> <sheet string="Purchase Order" layout="auto">
<group col="6" colspan="4"> <group col="6" colspan="4">
<field name="name"/> <field name="name"/>

View File

@ -7,10 +7,10 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form string="Configure Purchases" layout="manual"> <form string="Configure Purchases" layout="manual">
<div class="oe_form_topbar"> <header>
<button string="Apply" type="object" name="execute"/> <button string="Apply" type="object" name="execute"/>
<button string="Cancel" special="cancel"/> <button string="Cancel" special="cancel"/>
</div> </header>
<sheet layout="auto"> <sheet layout="auto">
<separator string="Invoicing" colspan="4"/> <separator string="Invoicing" colspan="4"/>
<field name="default_invoice_method"/> <field name="default_invoice_method"/>

View File

@ -33,13 +33,13 @@
<field name="model">purchase.requisition</field> <field name="model">purchase.requisition</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button name="tender_in_progress" states="draft" string="Start" type="object" /> <button name="tender_in_progress" states="draft" string="Start" type="object" />
<button name="tender_reset" states="done,cancel" string="Reset to Draft" type="object" /> <button name="tender_reset" states="done,cancel" string="Reset to Draft" type="object" />
<button name="tender_done" states="in_progress" string="Done" type="object" /> <button name="tender_done" states="in_progress" string="Done" type="object" />
<button name="tender_cancel" states="draft,in_progress" string="Cancel" type="object" /> <button name="tender_cancel" states="draft,in_progress" string="Cancel" type="object" />
<field name="state" readonly="1" widget="statusbar" statusbar_visible="draft,in_progress,done" statusbar_colors='{"in_progress":"blue"}'/> <field name="state" readonly="1" widget="statusbar" statusbar_visible="draft,in_progress,done" statusbar_colors='{"in_progress":"blue"}'/>
</div> </header>
<sheet string="Purchase Requisition" layout="auto"> <sheet string="Purchase Requisition" layout="auto">
<group colspan="4" col="6"> <group colspan="4" col="6">
<field name="name"/> <field name="name"/>

View File

@ -97,7 +97,7 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button name="invoice_recreate" states="invoice_except" string="Recreate Invoice"/> <button name="invoice_recreate" states="invoice_except" string="Recreate Invoice"/>
<button name="invoice_corrected" states="invoice_except" string="Ignore Exception"/> <button name="invoice_corrected" states="invoice_except" string="Ignore Exception"/>
<button name="ship_recreate" states="shipping_except" string="Recreate Delivery Order"/> <button name="ship_recreate" states="shipping_except" string="Recreate Delivery Order"/>
@ -119,7 +119,7 @@
<button name="ship_cancel" states="shipping_except" string="Cancel"/> <button name="ship_cancel" states="shipping_except" string="Cancel"/>
<button name="invoice_cancel" states="invoice_except" string="Cancel"/> <button name="invoice_cancel" states="invoice_except" string="Cancel"/>
<field name="state" widget="statusbar" statusbar_visible="draft,sent,progress,invoiced,done" statusbar_colors='{"shipping_except":"red","invoice_except":"red","waiting_date":"blue"}'/> <field name="state" widget="statusbar" statusbar_visible="draft,sent,progress,invoiced,done" statusbar_colors='{"shipping_except":"red","invoice_except":"red","waiting_date":"blue"}'/>
</div> </header>
<sheet string="Sales Order" layout="auto"> <sheet string="Sales Order" layout="auto">
<group col="6" colspan="4" class="oe_form_header"> <group col="6" colspan="4" class="oe_form_header">
<group col="4" colspan="4"> <group col="4" colspan="4">

View File

@ -8,10 +8,10 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form string ="Configure Warehouse" layout="manual"> <form string ="Configure Warehouse" layout="manual">
<div class="oe_form_topbar"> <header>
<button string="Apply" type="object" name="execute"/> <button string="Apply" type="object" name="execute"/>
<button string="Cancel" special="cancel"/> <button string="Cancel" special="cancel"/>
</div> </header>
<sheet layout="auto"> <sheet layout="auto">
<separator string="Traceability" colspan="4"/> <separator string="Traceability" colspan="4"/>
<field name="group_stock_production_lot"/> <field name="group_stock_production_lot"/>

View File

@ -109,16 +109,13 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button name="action_confirm" states="draft" string="Confirm Inventory" type="object"/> <button name="action_confirm" states="draft" string="Confirm Inventory" type="object"/>
<button name="action_done" states="confirm" string="Validate Inventory" type="object"/> <button name="action_done" states="confirm" string="Validate Inventory" type="object"/>
<button name="action_cancel_draft" states="cancel" string="Set to Draft" type="object"/> <button name="action_cancel_draft" states="cancel" string="Set to Draft" type="object"/>
<button name="action_cancel_inventory" states="draft,confirm,done" string="Cancel Inventory" type="object"/> <button name="action_cancel_inventory" states="draft,confirm,done" string="Cancel Inventory" type="object"/>
<div class="oe_right"> <field name="state" widget="statusbar" nolabel="1" statusbar_visible="draft,confirm"/>
<field name="state" widget="statusbar" nolabel="1" statusbar_visible="draft,confirm"/> </header>
</div>
<div class="oe_clear"/>
</div>
<sheet string="Physical Inventory" layout="auto"> <sheet string="Physical Inventory" layout="auto">
<group class="oe_form_header"> <group class="oe_form_header">
<field name="name"/> <field name="name"/>
@ -708,7 +705,7 @@
<field eval="12" name="priority"/> <field eval="12" name="priority"/>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button name="draft_force_assign" states="draft" string="Confirm" type="object"/> <button name="draft_force_assign" states="draft" string="Confirm" type="object"/>
<button name="draft_validate" states="draft" string="Confirm &amp; Transfer" type="object"/> <button name="draft_validate" states="draft" string="Confirm &amp; Transfer" type="object"/>
<!-- <button name="action_assign" states="confirmed" string="Check Availability" type="object"/> --> <!-- <button name="action_assign" states="confirmed" string="Check Availability" type="object"/> -->
@ -717,10 +714,8 @@
<button name="%(action_stock_invoice_onshipping)d" string="Create Invoice" attrs="{'invisible': ['|','|',('state','&lt;&gt;','done'),('invoice_state','=','invoiced'),('invoice_state','=','none')]}" type="action" /> <button name="%(action_stock_invoice_onshipping)d" string="Create Invoice" attrs="{'invisible': ['|','|',('state','&lt;&gt;','done'),('invoice_state','=','invoiced'),('invoice_state','=','none')]}" type="action" />
<button name="%(act_stock_return_picking)d" string="Reverse Transfer" states="done" type="action" /> <button name="%(act_stock_return_picking)d" string="Reverse Transfer" states="done" type="action" />
<button name="button_cancel" states="assigned,confirmed,draft" string="_Cancel"/> <button name="button_cancel" states="assigned,confirmed,draft" string="_Cancel"/>
<div class="oe_right"> <field name="state" nolabel="1" widget="statusbar" statusbar_visible="draft,assigned,done" statusbar_colors='{"shipping_except":"red","invoice_except":"red","waiting_date":"blue"}'/>
<field name="state" nolabel="1" widget="statusbar" statusbar_visible="draft,assigned,done" statusbar_colors='{"shipping_except":"red","invoice_except":"red","waiting_date":"blue"}'/> </header>
</div>
</div>
<sheet string="Internal Picking List" layout="auto"> <sheet string="Internal Picking List" layout="auto">
<group colspan="4" col="6"> <group colspan="4" col="6">
<group colspan="4" col="4"> <group colspan="4" col="4">
@ -928,18 +923,18 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<data> <data>
<xpath expr="/form/div[@class='oe_form_topbar']/button[@name='%(act_stock_return_picking)d']" position="replace"> <xpath expr="/form/header/button[@name='%(act_stock_return_picking)d']" position="replace">
<button name="%(report_picking_list_out)d" string="Print Delivery Slip" type="action" states="done"/> <button name="%(report_picking_list_out)d" string="Print Delivery Slip" type="action" states="done"/>
<button name="%(act_stock_return_picking)d" string="Return Products" states="done" type="action" /> <button name="%(act_stock_return_picking)d" string="Return Products" states="done" type="action" />
</xpath> </xpath>
<xpath expr="/form/div[@class='oe_form_topbar']/button[@name='draft_validate']" position="replace"> <xpath expr="/form/header/button[@name='draft_validate']" position="replace">
<button name="draft_validate" states="draft" string="Confirm &amp; Deliver" type="object"/> <button name="draft_validate" states="draft" string="Confirm &amp; Deliver" type="object"/>
<button name="action_assign" states="confirmed" string="Check Availability" type="object"/> <button name="action_assign" states="confirmed" string="Check Availability" type="object"/>
</xpath> </xpath>
<xpath expr="/form/div[@class='oe_form_topbar']/button[@name='action_process']" position="replace"> <xpath expr="/form/header/button[@name='action_process']" position="replace">
<button name="action_process" states="assigned" string="Deliver" type="object" icon="gtk-go-forward"/> <button name="action_process" states="assigned" string="Deliver" type="object" icon="gtk-go-forward"/>
</xpath> </xpath>
<xpath expr="/form/div[@class='oe_form_topbar']/div[@class='oe_right']/field[@name='state']" position="replace"> <xpath expr="/form/header/div[@class='oe_right']/field[@name='state']" position="replace">
<field name="state" nolabel="1" readonly="1" widget="statusbar" statusbar_visible="draft,confirmed,assigned,done" statusbar_colors='{"auto":"blue", "confirmed":"blue"}'/> <field name="state" nolabel="1" readonly="1" widget="statusbar" statusbar_visible="draft,confirmed,assigned,done" statusbar_colors='{"auto":"blue", "confirmed":"blue"}'/>
</xpath> </xpath>
<xpath expr="/form/sheet/group/group/field[@name='partner_id']" position="replace"> <xpath expr="/form/sheet/group/group/field[@name='partner_id']" position="replace">
@ -1048,13 +1043,13 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<data> <data>
<xpath expr="/form/div[@class='oe_form_topbar']/button[@name='%(act_stock_return_picking)d']" position="replace"> <xpath expr="/form/header/button[@name='%(act_stock_return_picking)d']" position="replace">
<button name="%(act_stock_return_picking)d" string="Return Products" states="done" type="action" /> <button name="%(act_stock_return_picking)d" string="Return Products" states="done" type="action" />
</xpath> </xpath>
<xpath expr="/form/div[@class='oe_form_topbar']/button[@name='draft_validate']" position="replace"> <xpath expr="/form/header/button[@name='draft_validate']" position="replace">
<button name="draft_validate" states="draft" string="Confirm &amp; Receive" type="object"/> <button name="draft_validate" states="draft" string="Confirm &amp; Receive" type="object"/>
</xpath> </xpath>
<xpath expr="/form/div[@class='oe_form_topbar']/button[@name='action_process']" position="replace"> <xpath expr="/form/header/button[@name='action_process']" position="replace">
<button name="action_process" states="assigned" string="Receive" type="object"/> <button name="action_process" states="assigned" string="Receive" type="object"/>
</xpath> </xpath>
<xpath expr="/form/sheet/group/group/field[@name='partner_id']" position="replace"> <xpath expr="/form/sheet/group/group/field[@name='partner_id']" position="replace">
@ -1187,16 +1182,13 @@
<field eval="4" name="priority"/> <field eval="4" name="priority"/>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button name="action_confirm" states="draft" string="Process Later" type="object"/> <button name="action_confirm" states="draft" string="Process Later" type="object"/>
<button name="action_done" states="draft,assigned,confirmed" string="Process Now" type="object"/> <button name="action_done" states="draft,assigned,confirmed" string="Process Now" type="object"/>
<button name="force_assign" states="confirmed" string="Set Available" type="object"/> <button name="force_assign" states="confirmed" string="Set Available" type="object"/>
<button name="action_cancel" states="assigned,confirmed" string="_Cancel" type="object"/> <button name="action_cancel" states="assigned,confirmed" string="_Cancel" type="object"/>
<div class="oe_right"> <field name="state" nolabel="1" widget="statusbar" statusbar_visible="draft,confirmed,assigned,done" statusbar_colors='{"waiting":"blue","confirmed":"blue"}'/>
<field name="state" nolabel="1" widget="statusbar" statusbar_visible="draft,confirmed,assigned,done" statusbar_colors='{"waiting":"blue","confirmed":"blue"}'/> </header>
</div>
<div class="oe_clear"/>
</div>
<sheet string="Stock Moves" layout="auto"> <sheet string="Stock Moves" layout="auto">
<group colspan="4" col="7"> <group colspan="4" col="7">
<field name="product_id" on_change="onchange_product_id(product_id,location_id,location_dest_id, False)"/> <field name="product_id" on_change="onchange_product_id(product_id,location_id,location_dest_id, False)"/>
@ -1373,13 +1365,13 @@
<field eval="6" name="priority"/> <field eval="6" name="priority"/>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button name="action_confirm" states="draft" string="Process Later" type="object"/> <button name="action_confirm" states="draft" string="Process Later" type="object"/>
<button name="force_assign" states="confirmed" string="Set Available" type="object"/> <button name="force_assign" states="confirmed" string="Set Available" type="object"/>
<button name="%(action_partial_move_server)d" string="Process" type="action" states="assigned"/> <button name="%(action_partial_move_server)d" string="Process" type="action" states="assigned"/>
<button name="action_cancel" states="assigned,confirmed" string="_Cancel" type="object"/> <button name="action_cancel" states="assigned,confirmed" string="_Cancel" type="object"/>
<field name="state" widget="statusbar" statusbar_visible="draft,confirmed,assigned,done" statusbar_colors='{"waiting":"blue","confirmed":"blue"}'/> <field name="state" widget="statusbar" statusbar_visible="draft,confirmed,assigned,done" statusbar_colors='{"waiting":"blue","confirmed":"blue"}'/>
</div> </header>
<sheet string="Receive Products" layout="auto"> <sheet string="Receive Products" layout="auto">
<group colspan="4" col="7"> <group colspan="4" col="7">
<field name="product_id" on_change="onchange_product_id(product_id,location_id,location_dest_id, False)"/> <field name="product_id" on_change="onchange_product_id(product_id,location_id,location_dest_id, False)"/>

View File

@ -13,11 +13,11 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button name="button_open" string="Open" states="draft" type="object"/> <button name="button_open" string="Open" states="draft" type="object"/>
<button name="button_close" string="Close" states="open" type="object"/> <button name="button_close" string="Close" states="open" type="object"/>
<field name="state" widget="statusbar" statusbar_visible="draft,open"/> <field name="state" widget="statusbar" statusbar_visible="draft,open"/>
</div> </header>
<sheet string="Stock Periods" layout="auto"> <sheet string="Stock Periods" layout="auto">
<group class="oe_form_header"> <group class="oe_form_header">
<field name="name" colspan="2"/> <field name="name" colspan="2"/>
@ -82,10 +82,10 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button name="action_validate" string="Approve" states="draft" type="object" /> <button name="action_validate" string="Approve" states="draft" type="object" />
<field name="state" widget="statusbar"/> <field name="state" widget="statusbar"/>
</div> </header>
<sheet string="Stock and Sales Forecast" layout="auto"> <sheet string="Stock and Sales Forecast" layout="auto">
<group colspan = "4" col = "4" class="oe_form_header"> <group colspan = "4" col = "4" class="oe_form_header">
<group colspan = "2" col="2" > <group colspan = "2" col="2" >

View File

@ -14,12 +14,12 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button name="set_process" states="draft" string="Process" type="object"/> <button name="set_process" states="draft" string="Process" type="object"/>
<button name="set_done" states="running" string="Stop" type="object"/> <button name="set_done" states="running" string="Stop" type="object"/>
<button name="set_draft" states="done" string="Set to Draft" type="object"/> <button name="set_draft" states="done" string="Set to Draft" type="object"/>
<field name="state" widget="statusbar" statusbar_visible="draft,running"/> <field name="state" widget="statusbar" statusbar_visible="draft,running"/>
</div> </header>
<sheet string="Subscriptions" layout="auto"> <sheet string="Subscriptions" layout="auto">
<group col="6" colspan="4" class="oe_form_header"> <group col="6" colspan="4" class="oe_form_header">
<field name="name" select="1"/> <field name="name" select="1"/>

View File

@ -19,12 +19,12 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button name="survey_open" string="Open" states="cancel,close" type="object"/> <button name="survey_open" string="Open" states="cancel,close" type="object"/>
<button name="survey_close" string="Close" states="open" type="object"/> <button name="survey_close" string="Close" states="open" type="object"/>
<button name="survey_cancel" string="Cancel" states="open" type="object"/> <button name="survey_cancel" string="Cancel" states="open" type="object"/>
<field name="state" widget="statusbar" statusbar_visible="open,close"/> <field name="state" widget="statusbar" statusbar_visible="open,close"/>
</div> </header>
<sheet string="Survey" layout="auto"> <sheet string="Survey" layout="auto">
<field name="title" select="1"/> <field name="title" select="1"/>
<group col="6" colspan="6"> <group col="6" colspan="6">
@ -1057,13 +1057,13 @@
<field name="type">form</field> <field name="type">form</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form layout="manual"> <form layout="manual">
<div class="oe_form_topbar"> <header>
<button name="survey_req_draft" string="Set to Draft" states="cancel,done" type="object"/> <button name="survey_req_draft" string="Set to Draft" states="cancel,done" type="object"/>
<button name="survey_req_waiting_answer" string="Waiting Answer" states="draft" type="object"/> <button name="survey_req_waiting_answer" string="Waiting Answer" states="draft" type="object"/>
<button name="survey_req_done" string="Done" states="waiting_answer" type="object"/> <button name="survey_req_done" string="Done" states="waiting_answer" type="object"/>
<button name="survey_req_cancel" string="Cancel" states="waiting_answer" type="object"/> <button name="survey_req_cancel" string="Cancel" states="waiting_answer" type="object"/>
<field name="state" widget="statusbar" statusbar_visible="draft,waiting_answer"/> <field name="state" widget="statusbar" statusbar_visible="draft,waiting_answer"/>
</div> </header>
<sheet string="Survey Request" layout="auto"> <sheet string="Survey Request" layout="auto">
<group class="oe_form_header"> <group class="oe_form_header">
<field name="date_deadline"/> <field name="date_deadline"/>