odoo18/addons_extensions/offer_letters/views/recruitment_employee_bridge...

76 lines
2.6 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<odoo>
<record id="view_employee_bridge_form_inherit_offer_letter" model="ir.ui.view">
<field name="name">recruitment.employee.bridge.form.inherit.offer.letter</field>
<field name="model">recruitment.employee.bridge</field>
<field name="inherit_id" ref="employee_bridge.view_employee_bridge_form"/>
<field name="arch" type="xml">
<!-- Smart Button -->
<xpath expr="//div[@name='button_box']" position="inside">
<button
name="action_open_current_offer"
type="object"
class="oe_stat_button"
icon="fa-file-text-o"
invisible="not current_offer_letter_id">
<div class="o_field_widget o_stat_info">
<span class="o_stat_value">
<field name="offer_release_status"/>
</span>
<span class="o_stat_text">
Offer Letter
</span>
</div>
</button>
</xpath>
<!-- Offer Letter Page -->
<xpath expr="//notebook" position="inside">
<page string="Offer Letters" name="offer_letters">
<group>
<group>
<field name="finalized_ctc"/>
<field name="current_offer_letter_id" readonly="1"/>
<field name="offer_release_status" readonly="1"/>
</group>
<group>
<button
name="action_open_current_offer"
type="object"
string="Open Current Offer"
class="btn-primary"
invisible="not current_offer_letter_id"/>
</group>
</group>
<field name="offer_letter_ids" nolabel="1">
<list>
<field name="name"/>
<field name="main_candidate_name"/>
<field name="state" widget="badge"/>
<field name="salary"/>
<field name="request_date"/>
</list>
</field>
</page>
</xpath>
</field>
</record>
</odoo>