Skip to Content
Odoo Menu
  • Prijavi
  • Try it free
  • Aplikacije
    Finance
    • Knjigovodstvo
    • Obračun
    • Stroški
    • Spreadsheet (BI)
    • Dokumenti
    • Podpisovanje
    Prodaja
    • CRM
    • Prodaja
    • POS Shop
    • POS Restaurant
    • Naročnine
    • Najem
    Spletne strani
    • Website Builder
    • Spletna trgovina
    • Blog
    • Forum
    • Pogovor v živo
    • eUčenje
    Dobavna veriga
    • Zaloga
    • Proizvodnja
    • PLM
    • Nabava
    • Vzdrževanje
    • Kakovost
    Kadri
    • Kadri
    • Kadrovanje
    • Odsotnost
    • Ocenjevanja
    • Priporočila
    • Vozni park
    Marketing
    • Družbeno Trženje
    • Email Marketing
    • SMS Marketing
    • Dogodki
    • Avtomatizacija trženja
    • Ankete
    Storitve
    • Projekt
    • Časovnice
    • Storitve na terenu
    • Služba za pomoč
    • Načrtovanje
    • Termini
    Produktivnost
    • Razprave
    • Odobritve
    • IoT
    • Voip
    • Znanje
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industrije
    Trgovina na drobno
    • Book Store
    • Trgovina z oblačili
    • Trgovina s pohištvom
    • Grocery Store
    • Trgovina s strojno opremo računalnikov
    • Trgovina z igračami
    Food & Hospitality
    • Bar and Pub
    • Restavracija
    • Hitra hrana
    • Guest House
    • Beverage Distributor
    • Hotel
    Nepremičnine
    • Real Estate Agency
    • Arhitekturno podjetje
    • Gradbeništvo
    • Estate Management
    • Vrtnarjenje
    • Združenje lastnikov nepremičnin
    Svetovanje
    • Računovodsko podjetje
    • Odoo Partner
    • Marketinška agencija
    • Law firm
    • Pridobivanje talentov
    • Audit & Certification
    Proizvodnja
    • Tekstil
    • Metal
    • Pohištvo
    • Hrana
    • Brewery
    • Poslovna darila
    Health & Fitness
    • Športni klub
    • Trgovina z očali
    • Fitnes center
    • Wellness Practitioners
    • Lekarna
    • Frizerski salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Sistemi sončne energije
    • Izdelovalec čevljev
    • Čistilne storitve
    • HVAC Services
    Ostali
    • Neprofitna organizacija
    • Agencija za okolje
    • Najem oglasnih panojev
    • Fotografija
    • Najem koles
    • Prodajalec programske opreme
    Browse all Industries
  • Skupnost
    Learn
    • Tutorials
    • Dokumentacija
    • Certifikati
    • Šolanje
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Prenesi
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Dogodki
    • Prevodi
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Sklici kupca
    • Podpora
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Določanje cen
  • Pomoč

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
9877 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
1668
How to show warning in Sale.Order when click on Confirm button? Solved
credit_limit sale.order 12.
Avatar
Avatar
Avatar
2
sep. 23
14032
How to display fields base on the value of Boolean field? Solved
views sale.order 12.
Avatar
3
jul. 21
14784
How to create and save my own Sale.Order model?
sale.order.line sale.order 12.
Avatar
0
jun. 19
8922
Display field only for one company on list view Solved
sale.order
Avatar
Avatar
1
maj 25
1764
Community
  • Tutorials
  • Dokumentacija
  • Forum
Open Source
  • Prenesi
  • Github
  • Runbot
  • Prevodi
Services
  • Odoo.sh Hosting
  • Podpora
  • Nadgradnja
  • Custom Developments
  • Izobraževanje
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Sredstva blagovne znamke
  • Kontakt
  • Zaposlitve
  • Dogodki
  • Podcast
  • Blog
  • Stranke
  • Pravno • Zasebnost
  • Varnost
الْعَرَبيّة 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