Skip to Content
Odoo Menú
  • Registra entrada
  • Prova-ho gratis
  • Aplicacions
    Finances
    • Comptabilitat
    • Facturació
    • Despeses
    • Full de càlcul (IA)
    • Documents
    • Signatura
    Vendes
    • CRM
    • Vendes
    • Punt de venda per a botigues
    • Punt de venda per a restaurants
    • Subscripcions
    • Lloguer
    Imatges de llocs web
    • Creació de llocs web
    • Comerç electrònic
    • Blog
    • Fòrum
    • Xat en directe
    • Aprenentatge en línia
    Cadena de subministrament
    • Inventari
    • Fabricació
    • PLM
    • Compres
    • Manteniment
    • Qualitat
    Recursos humans
    • Empleats
    • Reclutament
    • Absències
    • Avaluacions
    • Recomanacions
    • Flota
    Màrqueting
    • Màrqueting Social
    • Màrqueting per correu electrònic
    • Màrqueting per SMS
    • Esdeveniments
    • Automatització del màrqueting
    • Enquestes
    Serveis
    • Projectes
    • Fulls d'hores
    • Servei de camp
    • Suport
    • Planificació
    • Cites
    Productivitat
    • Converses
    • Validacions
    • IoT
    • VoIP
    • Coneixements
    • WhatsApp
    Aplicacions de tercers Odoo Studio Plataforma d'Odoo al núvol
  • Sectors
    Comerç al detall
    • Llibreria
    • Botiga de roba
    • Botiga de mobles
    • Botiga d'ultramarins
    • Ferreteria
    • Botiga de joguines
    Food & Hospitality
    • Bar i pub
    • Restaurant
    • Menjar ràpid
    • Guest House
    • Distribuïdor de begudes
    • Hotel
    Immobiliari
    • Agència immobiliària
    • Estudi d'arquitectura
    • Construcció
    • Gestió immobiliària
    • Jardineria
    • Associació de propietaris de béns immobles
    Consultoria
    • Empresa comptable
    • Partner d'Odoo
    • Agència de màrqueting
    • Bufet d'advocats
    • Captació de talent
    • Auditoria i certificació
    Fabricació
    • Textile
    • Metal
    • Mobles
    • Menjar
    • Brewery
    • Regals corporatius
    Salut i fitness
    • Club d'esport
    • Òptica
    • Centre de fitness
    • Especialistes en benestar
    • Farmàcia
    • Perruqueria
    Trades
    • Servei de manteniment
    • Hardware i suport informàtic
    • Sistemes d'energia solar
    • Shoe Maker
    • Serveis de neteja
    • Instal·lacions HVAC
    Altres
    • Nonprofit Organization
    • Agència del medi ambient
    • Lloguer de panells publicitaris
    • Fotografia
    • Lloguer de bicicletes
    • Distribuïdors de programari
    Browse all Industries
  • Comunitat
    Aprèn
    • Tutorials
    • Documentació
    • Certificacions
    • Formació
    • Blog
    • Pòdcast
    Potenciar l'educació
    • Programa educatiu
    • Scale-Up! El joc empresarial
    • Visita Odoo
    Obtindre el programari
    • Descarregar
    • Comparar edicions
    • Novetats de les versions
    Col·laborar
    • GitHub
    • Fòrum
    • Esdeveniments
    • Traduccions
    • Converteix-te en partner
    • Services for Partners
    • Registra la teva empresa comptable
    Obtindre els serveis
    • Troba un partner
    • Troba un comptable
    • Contacta amb un expert
    • Serveis d'implementació
    • Referències del client
    • Suport
    • Actualitzacions
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Programar una demo
  • Preus
  • Ajuda

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

  • CRM
  • e-Commerce
  • Comptabilitat
  • Inventari
  • PoS
  • Projectes
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
Ajuda

Pass data from wizard to another

Subscriure's

Get notified when there's activity on this post

This question has been flagged
17.2
1 Respondre
1523 Vistes
Avatar
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
Avatar
Descartar
Avatar
SunArc Technologies
Best Answer

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
Avatar
Descartar
Enjoying the discussion? Don't just read, join in!

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

Registrar-se
Related Posts Respostes Vistes Activitat
"ODOO" as the website Title in google search - how to remove
website 17.2
Avatar
Avatar
Avatar
Avatar
3
d’oct. 24
2728
Product with attributes linked with service product.
community 17.2
Avatar
0
d’oct. 24
875
studio customization import error - invalid operation
Studio 17.2
Avatar
0
d’ag. 24
1565
How to redirect the user to country specific website based on their location
online 17.2
Avatar
0
de jul. 24
1455
Website Purchase Order
odoo.sh 17.2
Avatar
0
de juny 24
1475
Community
  • Tutorials
  • Documentació
  • Fòrum
Codi obert
  • Descarregar
  • GitHub
  • Runbot
  • Traduccions
Serveis
  • Allotjament a Odoo.sh
  • Suport
  • Actualització
  • Desenvolupaments personalitzats
  • Educació
  • Troba un comptable
  • Troba un partner
  • Converteix-te en partner
Sobre nosaltres
  • La nostra empresa
  • Actius de marca
  • Contacta amb nosaltres
  • Llocs de treball
  • Esdeveniments
  • Pòdcast
  • Blog
  • Clients
  • Informació legal • Privacitat
  • Seguretat
الْعَرَبيّة 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 és un conjunt d'aplicacions empresarials de codi obert que cobreix totes les necessitats de la teva empresa: CRM, comerç electrònic, comptabilitat, inventari, punt de venda, gestió de projectes, etc.

La proposta única de valor d'Odoo és ser molt fàcil d'utilitzar i estar totalment integrat, ambdues alhora.

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