diff options
| author | Azka Nathan <darizkyfaz@gmail.com> | 2024-06-27 15:29:16 +0700 |
|---|---|---|
| committer | Azka Nathan <darizkyfaz@gmail.com> | 2024-06-27 15:29:16 +0700 |
| commit | e33f2d321ee4db6a6e6a86e35243100b9f107f22 (patch) | |
| tree | 54da1eeaced0bf1894be9fa4fa00a5f16c76388c /indoteknik_custom/views/report_logbook_bill.xml | |
| parent | 98fd3104060a92991569a206aabf6c7c20b190e3 (diff) | |
logbook bill & send email efaktur document
Diffstat (limited to 'indoteknik_custom/views/report_logbook_bill.xml')
| -rw-r--r-- | indoteknik_custom/views/report_logbook_bill.xml | 97 |
1 files changed, 97 insertions, 0 deletions
diff --git a/indoteknik_custom/views/report_logbook_bill.xml b/indoteknik_custom/views/report_logbook_bill.xml new file mode 100644 index 00000000..fc461400 --- /dev/null +++ b/indoteknik_custom/views/report_logbook_bill.xml @@ -0,0 +1,97 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<odoo> + <record id="report_logbook_bill_tree" model="ir.ui.view"> + <field name="name">report.logbook.bill.tree</field> + <field name="model">report.logbook.bill</field> + <field name="arch" type="xml"> + <tree create="0" delete="0"> + <field name="name"/> + <field name="approve_by"/> + <field name="created_by"/> + <field name="date"/> + <field name="date_approve"/> + <field name="approve_by_finance"/> + <field name="state"/> + <field name="state_pengajuan"/> + </tree> + </field> + </record> + + <record id="report_logbook_bill_line_tree" model="ir.ui.view"> + <field name="name">report.logbook.bill.line.tree</field> + <field name="model">report.logbook.bill.line</field> + <field name="arch" type="xml"> + <tree editable="bottom"> + <field name="name"/> + <field name="partner_id"/> + <field name="purchase_id"/> + <field name="invoice"/> + <field name="faktur_pajak"/> + <field name="surat_jalan"/> + <field name="proforma_invoice"/> + <field name="date_approve"/> + <field name="grand_total"/> + <field name="not_exist"/> + <field name="note"/> + <field name="note_finance"/> + </tree> + </field> + </record> + + <record id="report_logbook_bill_form" model="ir.ui.view"> + <field name="name">report.logbook.bill.form</field> + <field name="model">report.logbook.bill</field> + <field name="arch" type="xml"> + <form> + <header> + <button name="approve" + string="Validate" + type="object" + /> + </header> + <sheet string="Report logbook Bill"> + <div class="oe_button_box" name="button_box"/> + <group> + <group> + <field name="name" readonly="1"/> + <field name="date" readonly="1"/> + <field name="date_approve" readonly="1"/> + <field name="state_pengajuan" readonly="1"/> + <field name="pengajuan_by" readonly="1"/> + <field name="date_pengajuan" readonly="1"/> + </group> + <group> + <field name="approve_by_finance" readonly="1"/> + <field name="state" readonly="1"/> + <field name="created_by" readonly="1"/> + <field name="approve_by" readonly="1"/> + <field name="count_line" readonly="1"/> + </group> + </group> + <notebook> + <page string="Line"> + <field name="report_logbook_bill_line"/> + </page> + </notebook> + </sheet> + <div class="oe_chatter"> + <field name="message_follower_ids" widget="mail_followers"/> + <field name="message_ids" widget="mail_thread"/> + </div> + </form> + </field> + </record> + + <record id="report_logbook_bill_action" model="ir.actions.act_window"> + <field name="name">Report Logbook Bill</field> + <field name="type">ir.actions.act_window</field> + <field name="res_model">report.logbook.bill</field> + <field name="view_mode">tree,form</field> + </record> + + <menuitem id="menu_report_logbook_bill" + name="Report Logbook Bill" + action="report_logbook_bill_action" + parent="account.menu_finance_reports" + sequence="200"/> +</odoo>
\ No newline at end of file |
