summaryrefslogtreecommitdiff
path: root/indoteknik_custom/views/web_logging/web_utm_source.xml
diff options
context:
space:
mode:
authorRafi Zadanly <zadanlyr@gmail.com>2024-02-29 14:21:05 +0700
committerRafi Zadanly <zadanlyr@gmail.com>2024-02-29 14:21:05 +0700
commit0b5b43646b92298dddcdb7eec1a590d90cadd1e8 (patch)
tree2b34e0e79bc2612183831a35f96fb7550d17f99b /indoteknik_custom/views/web_logging/web_utm_source.xml
parentee48a727e2617d8e094847dfb5bf9d5279db165a (diff)
Update feature user activity log with utm source
Diffstat (limited to 'indoteknik_custom/views/web_logging/web_utm_source.xml')
-rw-r--r--indoteknik_custom/views/web_logging/web_utm_source.xml45
1 files changed, 45 insertions, 0 deletions
diff --git a/indoteknik_custom/views/web_logging/web_utm_source.xml b/indoteknik_custom/views/web_logging/web_utm_source.xml
new file mode 100644
index 00000000..6ffbd95f
--- /dev/null
+++ b/indoteknik_custom/views/web_logging/web_utm_source.xml
@@ -0,0 +1,45 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<odoo>
+ <record id="web_utm_source_tree" model="ir.ui.view">
+ <field name="name">web.utm.source.tree</field>
+ <field name="model">web.utm.source</field>
+ <field name="arch" type="xml">
+ <tree>
+ <field name="name"/>
+ <field name="key"/>
+ </tree>
+ </field>
+ </record>
+
+ <record id="web_utm_source_form" model="ir.ui.view">
+ <field name="name">web.utm.source.form</field>
+ <field name="model">web.utm.source</field>
+ <field name="arch" type="xml">
+ <form create="0" edit="0">
+ <sheet>
+ <group>
+ <group>
+ <field name="name"/>
+ <field name="key"/>
+ </group>
+ </group>
+ </sheet>
+ </form>
+ </field>
+ </record>
+
+ <record id="web_utm_source_action" model="ir.actions.act_window">
+ <field name="name">Web UTM Source</field>
+ <field name="type">ir.actions.act_window</field>
+ <field name="res_model">web.utm.source</field>
+ <field name="view_mode">tree,form</field>
+ </record>
+
+ <menuitem
+ id="menu_web_utm_source"
+ name="UTM Source"
+ sequence="3"
+ parent="website.website_visitor_menu"
+ action="web_utm_source_action"
+ />
+</odoo> \ No newline at end of file