Skip to Content
Odoo Meniu
  • Autentificare
  • Try it free
  • Aplicații
    Finanțe
    • Contabilitate
    • Facturare
    • Cheltuieli
    • Spreadsheet (BI)
    • Documente
    • Semn
    Vânzări
    • CRM
    • Vânzări
    • POS Shop
    • POS Restaurant
    • Abonamente
    • Închiriere
    Site-uri web
    • Constructor de site-uri
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Lanț Aprovizionare
    • Inventar
    • Producție
    • PLM
    • Achiziție
    • Maintenance
    • Calitate
    Resurse Umane
    • Angajați
    • Recrutare
    • Time Off
    • Evaluări
    • Referințe
    • Flotă
    Marketing
    • Social Marketing
    • Marketing prin email
    • SMS Marketing
    • Evenimente
    • Automatizare marketing
    • Sondaje
    Servicii
    • Proiect
    • Foi de pontaj
    • Servicii de teren
    • Centru de asistență
    • Planificare
    • Programări
    Productivitate
    • Discuss
    • Aprobări
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Aplicații Terțe Odoo Studio Platforma Odoo Cloud
  • Industrii
    Retail
    • Book Store
    • Magazin de îmbrăcăminte
    • Magazin de Mobilă
    • Magazin alimentar
    • Magazin de materiale de construcții
    • Magazin de jucării
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Distribuitor de băuturi
    • Hotel
    Proprietate imobiliara
    • Real Estate Agency
    • Firmă de Arhitectură
    • Construcție
    • Estate Managament
    • Grădinărit
    • Asociația Proprietarilor de Proprietăți
    Consultanta
    • Firma de Contabilitate
    • Partener Odoo
    • Agenție de marketing
    • Law firm
    • Atragere de talente
    • Audit & Certification
    Producție
    • Textil
    • Metal
    • Mobilier
    • Mâncare
    • Brewery
    • Cadouri corporate
    Health & Fitness
    • Club Sportiv
    • Magazin de ochelari
    • Centru de Fitness
    • Wellness Practitioners
    • Farmacie
    • Salon de coafură
    Trades
    • Handyman
    • IT Hardware and Support
    • Asigurare socială de stat
    • Cizmar
    • Servicii de curățenie
    • HVAC Services
    Altele
    • Organizație nonprofit
    • Agenție de Mediu
    • Închiriere panouri publicitare
    • Fotografie
    • Închiriere biciclete
    • Asigurare socială
    Browse all Industries
  • Comunitate
    Învăță
    • Tutorials
    • Documentație
    • Certificări
    • Instruire
    • Blog
    • Podcast
    Empower Education
    • Program Educațional
    • Scale Up! Business Game
    • Visit Odoo
    Obține Software-ul
    • Descărcare
    • Compară Edițiile
    • Lansări
    Colaborați
    • Github
    • Forum
    • Evenimente
    • Translations
    • Devino Partener
    • Services for Partners
    • Înregistrează-ți Firma de Contabilitate
    Obține Servicii
    • Găsește un Partener
    • Găsiți un contabil
    • Meet an advisor
    • Servicii de Implementare
    • Referințe ale clienților
    • Suport
    • Actualizări
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obține un demo
  • Prețuri
  • Ajutor

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

  • CRM
  • e-Commerce
  • Contabilitate
  • Inventar
  • PoS
  • Proiect
  • MRP
All apps
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Suport

Pass data from wizard to another

Abonare

Primiți o notificare când există activitate la acestă postare

Această întrebare a fost marcată
17.2
1 Răspunde
1533 Vizualizări
Imagine profil
jenan soliman

Hello,


I have models make appointment customer and choose appointment customer the first model has service_id and is_package I want to pass their value into the second wizard so I can create validation here is models 


def action_open_choose_appointment(self):
choose_appointment = self.env['choose.appointment.customer'].create({
'service_id': self.service_id.id if self.service_id else False,
'is_package': self.is_package,
})
return {
'type': 'ir.actions.act_window',
'res_model': 'choose.appointment.customer',
'res_id': choose_appointment.id,
'view_mode': 'form',
'target': 'new',
'context': {
'default_service_id': self.service_id.id if self.service_id else False,
'is_package': self.is_package,
},
}

i use this function in the first model and here is the second model
lass ChooseMembershipAppointment(models.TransientModel):

_inherit = ["choose.appointment.customer"]
_description = "Choose Membership for Customer"

service_id = fields.Many2one('appointment.product', string="Service")
# ('consumed_service_ids.service_id', '=', service_id)
is_package = fields.Boolean(string="Package Selected", default=False)
membership_id = fields.Many2one('customer.membership', string='Customer Membership',
domain="[('partner_id', '=', partner_id),('status','=','active'),]")
notes = fields.Text(string="Notes")
membership_package = fields.Many2one(related='membership_id.membership_package_id')
has_membership = fields.Boolean(string="Has Membership", compute='_compute_has_membership', store=False)

def some_method(self):

business_appointment = self.env['make.business.appointment'].create({})

result = business_appointment.action_open_choose_appointment()

return result


@api.model
def create(self, vals):

print("Context: %s", self.env.context)
service_id = self.env.context.get('default_service_id')
is_package = self.env.context.get('is_package')
if service_id:
print("kkkkkkkkkkkkkk")
vals['service_id'] = service_id
if is_package:
print("wooooooooooooooooooow")
vals['is_package'] = is_package
return super(ChooseMembershipAppointment, self).create(vals)


def default_get(self, fields_list):
res = super(ChooseMembershipAppointment, self).default_get(fields_list)

res['is_package'] = self.env.context.get('default_package_selected', False)
print("Context: %s", self.env.context)
partner_id = self._context.get('partner_id')


if partner_id:
memberships = self.env['customer.membership'].search([
('partner_id', '=', partner_id),
('status', '=', 'active')
], order='date_from asc', limit=1)

if memberships:
res['membership_id'] = memberships.id


return res
0
Imagine profil
Abandonează
Imagine profil
SunArc Technologies
Cel mai bun răspuns

Using context can pass and get value


Example,


  def action_open_choose_appointment(self):

    return {

        'type': 'ir.actions.act_window',

        'res_model': 'choose.appointment.customer',

        'view_mode': 'form',

        'target': 'new',

        'context': {

            'default_service_id': self.service_id.id if self.service_id else False,

            'default_is_package': self.is_package,  # Use a prefixed key

        },

    }

   

    @api.model

    def create(self, vals):

        service_id = self.env.context.get('default_service_id')

        is_package = self.env.context.get('default_is_package')  # Use the correct context key

        if service_id:

            vals['service_id'] = service_id

        if is_package is not None: 

            vals['is_package'] = is_package

        return super(ChooseMembershipAppointment, self).create(vals)   

0
Imagine profil
Abandonează
Enjoying the discussion? Don't just read, join in!

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

Înscrie-te
Related Posts Răspunsuri Vizualizări Activitate
"ODOO" as the website Title in google search - how to remove
website 17.2
Imagine profil
Imagine profil
Imagine profil
Imagine profil
3
oct. 24
2739
Product with attributes linked with service product.
community 17.2
Imagine profil
0
oct. 24
880
studio customization import error - invalid operation
Studio 17.2
Imagine profil
0
aug. 24
1569
How to redirect the user to country specific website based on their location
online 17.2
Imagine profil
0
iul. 24
1469
Website Purchase Order
odoo.sh 17.2
Imagine profil
0
iun. 24
1477
Comunitate
  • Tutorials
  • Documentație
  • Forum
Open Source
  • Descărcare
  • Github
  • Runbot
  • Translations
Servicii
  • Hosting Odoo.sh
  • Suport
  • Actualizare
  • Custom Developments
  • Educație
  • Găsiți un contabil
  • Găsește un Partener
  • Devino Partener
Despre Noi
  • Compania noastră
  • Active de marcă
  • Contactați-ne
  • Locuri de muncă
  • Evenimente
  • Podcast
  • Blog
  • Clienți
  • Aspecte juridice • Confidențialitate
  • Securitate
الْعَرَبيّة 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 este o suită de aplicații de afaceri open source care acoperă toate nevoile companiei dvs.: CRM, comerț electronic, contabilitate, inventar, punct de vânzare, management de proiect etc.

Propunerea de valoare unică a Odoo este să fie în același timp foarte ușor de utilizat și complet integrat.

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