Skip to Content
Odoo Menu
  • Prijavi
  • 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
  • Knjigovodstvo
  • Zaloga
  • PoS
  • Projekt
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
Pomoč

How to display a warning popup when select Customer

Naroči se

Get notified when there's activity on this post

This question has been flagged
wizardsale.order12.
2 Odgovori
9818 Prikazi
Avatar
thanhps

Hi,

I am working on create new Sale Order. 

When user selects a Customer, I would like to check the expiration date of Credit Limit of the selected customer.

If it invalid, display a warning popup with 2 buttons [Go to customer page|Cancel]

If user select 'Cancel', the pop up will close and user can do their job as usual.

Here is my source code

class CreditLimitWizard(models.TransientModel):
_name = 'sale.credit.limit.wizard'
_description = 'Sale Credit Limit Wizard'

name = fields.Char('Customer Name')
credit_limit = fields.Float('Credit Limit')
expire_date = fields.Date('Expire Date')
<record model="ir.ui.view" id="sale_credit_limit_wizard">
<field name="name">Customer Credit Limit Wizard</field>
<field name="model">sale.credit.limit.wizard</field>
<field name="type">form</field>
<field name="arch" type="xml">
<form>
<group>
<span>The following customer is about or expired their credit limit:
</span>
</group>
<group>
<field name="name"/>
<field name="credit_limit" widget="monetary"/>
<field name="expire_date"/>
</group>
<footer>
<button string="Cancel" special="cancel" class="oe_highlight"/>
<!--<button name="go_customer" string="Go to customer page" type="object"-->
<!--class="oe_highlight"/>-->
</footer>
</form>
</field>
</record>
class SaleOrder(models.Model):
_inherit = 'sale.order'

@api.onchange('partner_id')
def _check_credit_limit_expired(self):
for order in self:
if order.partner_id and order.partner_id.credit_limit_expired:
expire_date = order.partner_id.credit_limit_expired
# Check expire date
if expire_date < fields.Date.today() + datetime.timedelta(days=-7):
view = self.env.ref('soj_credit.sale_credit_limit_wizard')
wiz = self.env['sale.credit.limit.wizard'].create({
'name': order.partner_id.name,
'credit_limit': order.partner_id.credit_limit,
'expire_date': expire_date.strftime('%Y-%m-%d'),
})
return {
'type': 'ir.actions.act_window',
'name': 'Warning : Customer is about or expired their credit limit',
'res_model': 'sale.credit.limit.wizard',
'view_type': 'form',
'view_mode': 'form',
'views': [(view.id, 'form')],
'view_id': view.id,
'res_id': wiz.id,
'target': 'new',
}

This code can check the expire date logic but it shows nothing on my browser.

Thank you for your help!





0
Avatar
Opusti
Avatar
Rudi Sulistyo H
Best Answer

Hi,

i want to this code in POS.
can you explain step by step configuration and adding that code ?

i am new in odoo

thank you for your help.



0
Avatar
Opusti
Avatar
thanhps
Avtor Best Answer

I found the solution below

@api.onchange('partner_id')
def _onchange_partner(self):
if self.partner_id and self.partner_id.credit_limit_expired:
expire_date = self.partner_id.credit_limit_expired
title = _("Warning for %s") % self.partner_id.name

if expire_date < fields.Date.today() + datetime.timedelta(days=-7):
message = _(
"Credit limit setting was expired on %s. \n Please update their credit limit.\n") % expire_date.strftime(
'%Y-%m-%d')
warning = {
'title': title,
'message': message
}
return {'warning': warning}
return {}
0
Avatar
Opusti
Enjoying the discussion? Don't just read, join in!

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

Prijavi
Related Posts Odgovori Prikazi Aktivnost
Wizard before sales order form
wizard sale.order odoo17
Avatar
0
sep. 24
1617
How to show warning in Sale.Order when click on Confirm button? Solved
credit_limit sale.order 12.
Avatar
Avatar
Avatar
2
sep. 23
13971
How to display fields base on the value of Boolean field? Solved
views sale.order 12.
Avatar
3
jul. 21
14731
How to create and save my own Sale.Order model?
sale.order.line sale.order 12.
Avatar
0
jun. 19
8831
Display field only for one company on list view Solved
sale.order
Avatar
Avatar
1
maj 25
1717
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