Skip to Content
Odoo Menu
  • Sign in
  • Try it free
  • Apps
    Finance
    • Accounting
    • Invoicing
    • Expenses
    • Spreadsheet (BI)
    • Documents
    • Sign
    Sales
    • CRM
    • Sales
    • POS Shop
    • POS Restaurant
    • Subscriptions
    • Rental
    Websites
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Supply Chain
    • Inventory
    • Manufacturing
    • PLM
    • Purchase
    • Maintenance
    • Quality
    Human Resources
    • Employees
    • Recruitment
    • Time Off
    • Appraisals
    • Referrals
    • Fleet
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Events
    • Marketing Automation
    • Surveys
    Services
    • Project
    • Timesheets
    • Field Service
    • Helpdesk
    • Planning
    • Appointments
    Productivity
    • Discuss
    • Approvals
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage Distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Management
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Manufacturing
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Community
    Learn
    • Tutorials
    • Documentation
    • Certifications
    • Training
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Download
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Events
    • Translations
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Customer References
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Pricing
  • Help

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Accounting
  • Inventory
  • PoS
  • Project
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
Help

[v15] How does one create an automated action (base.automation) via xml?

Subscribe

Get notified when there's activity on this post

This question has been flagged
AutomatedActionsv15
1 Reply
11411 Views
Avatar
Mr Discovery

There's no documentation on creating an automated action.


The one there is, is about scheduled actions (ir.cron)

https://www.odoo.com/documentation/15.0/developer/reference/backend/actions.html#automated-actions-ir-cron


How does one create an automated action via XML?


It used to be something like this:

https://github.com/odoo/odoo/blob/12.0/addons/base_automation/data/base_automation_demo.xml


Bus this file doesn't exists after v12.


So the top entry gives this error in v15:


raise ParseError('while parsing %s:%s, somewhere inside\n%s' % (
odoo.tools.convert.ParseError: while parsing /home/odoo/src/user/module/views/automated_actions.xml:4, somewhere inside
<record id="test_rule_on_create" model="base.automation">
<field name="name">Base Automation: test rule on create</field>
<field name="model_id" ref="base_automation.model_base_automation_lead_test"/>
<field name="state">code</field>
<field name="code" eval="'records.write({\'user_id\': %s})' % ref('base.user_demo')"/>
<field name="trigger">on_create</field>
<field name="active" eval="True"/>
<field name="model_id" ref="base_automation.model_base_automation_lead_test"/>
<field name="filter_domain">[('state', '=', 'draft')]</field>
</record>





Any help would be appreciated.

0
Avatar
Discard
Mohammed Amal N

try changing model_id to some other models like purchase.purchase_order. I guess odoo15 don't have this model
Also remove duplicate model_id field.

Mr Discovery
Author

I did what you proposed, but to no avail.

I guess the problem is even before reading the contents, since it throws a parse error instead of complaining about the actual model.

It seems the XML isn't structured correctly or something.

Mr Discovery
Author

Ok, I got it working now.

It was indeed being problematic about the external ID of the model.

I got more feedback in the log when I scrolled up in the server log, which was out of view on default.

Thank you for your help  Mohammed Amal N


Avatar
Mohammed Amal N
Best Answer

Hi,

Make sure the references used to other models/ data in xml is available.

here is an example:



  

id="test_rule_on_create" model="base.automation">
name="name">Base Automation: test rule on create
name="model_id" ref="purchase.model_purchase_order"/>
name="state">code
name="code" eval="'records.write({\'user_id\': %s})' % ref('base.user_demo')"/>
name="trigger">on_create
name="active" eval="True"/>
name="filter_domain">[('state', '=', 'draft')]





Make sure you have purchase and base_automation modules in your dependencies. And demo data activated for the database for this code to work.

Thank You

0
Avatar
Discard
Mohammed Amal N

<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<record id="test_rule_on_create" model="base.automation">
<field name="name">Base Automation: test rule on create</field>
<field name="model_id" ref="purchase.model_purchase_order"/>
<field name="state">code</field>
<field name="code" eval="'records.write({\'user_id\': %s})' % ref('base.user_demo')"/>
<field name="trigger">on_create</field>
<field name="active" eval="True"/>
<field name="filter_domain">[('state', '=', 'draft')]</field>
</record>
</odoo>

Added code in comments as there is some problem for me to copy paste in here. don't know why

Mr Discovery
Author

Even this throws a parse error:

<record id="test_rule_on_create" model="base.automation">
</record>

I think it bumps on the base.automation model. It probably doesn't work anymore to create records in this fashion.

Mohammed Amal N

I just tested this code myself in Odoo 15. Try the code in a new file. Your issue should be coming from some other place

Mr Discovery
Author

and base_automation is in the depends section of the manifest

Mr Discovery
Author

side question: do you happen to know how to populate the trigger_field_ids field?
I got so far as to provide something like this:
<field name="trigger_field_ids" eval="[(6, 0, [ ref('sale_subscription.date'), ref('module.x_studio_field')])]"/>

But it complains it can't find the external ID
ValueError: <class 'ValueError'>: "External ID not found in the system: sale_subscription.field_date" while evaluating

Mr Discovery
Author

I found it: View Metadata after viewing the field in the model, there's the external ID you need to provide

Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Sign up
Related Posts Replies Views Activity
How Can I Automatically Set Two Related Dates?
AutomatedActions v15
Avatar
0
Mar 22
3525
How to create alerts for expiration dates of products?
alerts AutomatedActions v15
Avatar
Avatar
Avatar
2
May 24
3493
Problem with parasitic automated actions on products
products AutomatedActions v15
Avatar
Avatar
1
Jan 23
2436
How to obtain Product Category from Automated Action code Solved
python AutomatedActions v15
Avatar
Avatar
1
Sep 22
4734
Odoo 15: Automated action for send mail after specific days
sendmail AutomatedActions v15
Avatar
Avatar
1
Jun 22
4519
Community
  • Tutorials
  • Documentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Translations
Services
  • Odoo.sh Hosting
  • Support
  • Upgrade
  • Custom Developments
  • Education
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Brand Assets
  • Contact us
  • Jobs
  • Events
  • Podcast
  • Blog
  • Customers
  • Legal • Privacy
  • Security
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now