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

Evaluation of python expression

Subscribe

Get notified when there's activity on this post

This question has been flagged
pythonodoo8.0
1 Reply
10880 Views
Avatar
dorsaf dhouibi

I tried to evaluate a python code that i write it in a text field.

this is the error that i face

TypeError: unsupported operand type(s) for %: 'ValidationError' and 'exceptions.ValueError'

First of all i have this class condition:

class condition(models.Model):
_name = 'condition'


expression_cond = fields.Selection(
string="Expression",
selection=[('python', 'Expression Python'), ],
required=True,
default="python")

value_cond = fields.Text(
string="Valeur",
required=True,
default="""
# Python code.
# You can use the following variables :
# - self: ORM model of the record which is checked
# - object: same as order or line, browse_record of the sale order or
# - pool: ORM model pool (i.e. self.pool)
# - cr: database cursor
# - context: current context
# - invoice: test for invoice tests
# Note: returned value have to be set in the variable 'result'
"""
)

name = fields.Char(string="Condition", required=True, )

The second class is the rules; i create this calss to select a condition and to verifier if the python expression is correct

class rules(models.Model):
_name = 'rules'

name = fields.Char(string="Régles" ,required=True)
code = fields.Char(string="Code" ,required=True)
condition_id = fields.Many2one(comodel_name="condition", string="Condition ", required=True, )
amount_type_id = fields.Many2one(comodel_name="amount.type", string="Méthode de Calcul", required=True, )

i create those method in this class

@api.model
def _rules_eval_context(self, obj_name, rec):
invoice = self.env['account.invoice']
return {obj_name: rec,
'invoice': invoice,
'self': self.pool.get(rec._name),
'object': rec,
'obj': rec,
'pool': self.pool,
'cr': self._cr,
'uid': self._uid,
}

@api.model
def _rule_eval(self,rule, obj_name, rec):
rule =self.condition_id.value_cond
expr = rule
space = self._rules_eval_context(obj_name, rec)

)

try:
safe_eval(expr,
space,
mode='exec',
nocopy=True) # nocopy allows to return 'result'
except Exception as e:
raise ValidationError("Wrong python code defined for Condition : %s") % (e)
return space.get('result', False)

@api.onchange('condition_id')
def _detect_rules(self):

rule = self.condition_id.value_cond
if self._rule_eval(rule,'invoice', self):
print("*****dectect rules")
else:
print("*********wrong detection")

 this is my expression that i creat 

if invoice.amout_total >=1000 :
    result=True

 you can find the pictures on this link

https://drive.google.com/drive/folders/0BwRD3KEH7ZiVS0VFemxTNjJkSHc?usp=sharing










ff

0
Avatar
Discard
Avatar
Annadurai
Best Answer

Hello, Try this

raise   ValidationError("Wrong python code defined for Condition : %s") % (e.name)
1
Avatar
Discard
dorsaf dhouibi
Author

thanks but its give me this error

AttributeError: 'exceptions.TypeError' object has no attribute 'name'

Niyas Raphy (Walnut Software Solutions)

Please check this sample and just adjust accordingly,

raise ValidationError(_("The amount of the payment '%s' is too high. The maximum permitted is %s.") % (payment.name, str(9) * (max_digits - 3) + ".99"))

dorsaf dhouibi
Author

its work thanks Annadurai

i don't have the error anymore but i still don't find a solution how to create a python expression to test for example if the amount_total of an invoice >=1000

dorsaf dhouibi
Author

Sorry thanks Niyas :)

Annadurai

do upvote :)

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
create a getter for odoo 8 Solved
python odoo8.0
Avatar
Avatar
2
Jul 17
4673
recuperate fields of budget lines
python odoo8.0
Avatar
0
Aug 16
3763
Using Blob to save in postgres via odoo
python odoo8.0
Avatar
Avatar
1
Jul 16
5874
How to add auto refreshing for hr_attendance in odoo?
python odoo8.0
Avatar
0
Jun 16
3801
Team Manager
python python2.7 odoo8.0
Avatar
0
Aug 17
3690
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