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

button add in a view which is of another model

Subscriure's

Get notified when there's activity on this post

This question has been flagged
button
1 Respondre
7531 Vistes
Avatar
omkar

Hi Friends.

I inherited a model hr.employee to my view and I added a button action,

But it is throwing error to me, that

ValueError: No such external ID currently defined in the system: hr_team.action_button_confirm

I added the button in the hr_team and written the function in the class hr_team.

But this is not working.

Here is my .py file

class hr_performancegoals(osv.osv): _name = "hr.performancegoals" _description = "Performance Goals"

def fields_view_get(self, cr, uid, view_id=None, view_type='form', context=None, toolbar=False, submenu=False):
     if context is None:
        context = {}
     result = super(hr_performancegoals, self).fields_view_get(cr, uid, view_id,view_type, context, toolbar,submenu)
     data = result['arch']
     if uid == 1:
        L=[]
        ldata = data.split("\n")
        for var in ldata:
             if re.search("str_goals",var):
                 pass
             else:
                 L.append(var)
        reqdata =''.join(L)
        result['arch']=reqdata
     else:
        L=[]
        ldata = data.split("\n")
        for var in ldata:
             if re.search("strategic_goals",var):
                 pass
             else:
                 L.append(var)
        reqdata =''.join(L)
        result['arch']=reqdata
     return result


def _get_employee_id(self,cr,uid,ids,name,arg,context=None):
    if context.get('id',''):
        print "Sateesh testing Employee Id",context.get('id','')
        res = dict.fromkeys(ids,context.get('id',''))
        return res
    else:
        cr.execute("select id from resource_resource where user_id=%s"%context.get('uid',''))
        log_name = cr.dictfetchall()[0]
        res = dict.fromkeys(ids,log_name['id'])
        return res

def _get_objectives(self, cr, uid,context):
    L=[]
    if context.get('name_related','') :
       cr.execute ("select parent_id from hr_employee where name_related='%s'"%context.get('name_related',''))
       parent_id=cr.dictfetchall()[0]
       cr.execute("select objectives from hr_performancegoals where employee_id=%s"%int(parent_id['parent_id']))
       data = cr.dictfetchall()
       for i,values in enumerate(data):
         a=unicodedata.normalize('NFKD', values['objectives']).encode('ascii','ignore')
         L.append((a,a))
    else:
        if context.get('uid',''):
            user_id = int(context.get('uid',''))
            cr.execute("select id from resource_resource where user_id=%s"%user_id)
            log_name = cr.dictfetchall()[0]
            print "TEsting Log name Here :",log_name
            if log_name['id'] == 1:
                L=[]
            else:
                cr.execute ("select parent_id from hr_employee where id=%s"%log_name['id'])
                parent_id=cr.dictfetchall()[0]
                cr.execute("select objectives from hr_performancegoals where employee_id=%s"%parent_id['parent_id'])
                data = cr.dictfetchall()
                for i,values in enumerate(data):
                    a=unicodedata.normalize('NFKD', values['objectives']).encode('ascii','ignore')
                    L.append((a,a))
    return L

_columns = {
'employee_id': fields.function(_get_employee_id,method=True, type='many2one', relation="hr.employee", string="Employee",store=True),
'strategic_goals': fields.char('Strategic Goals'),
'str_goals': fields.selection(_get_objectives, type='selection', method=True, store=False, string="Strategic"),
'objectives' : fields.text('Objectives'),
'completion_date' : fields.date('Completion Date'),
'specific_actions_required_to_deliver_strategic_goal' : fields.text('Specific Actions Required To Deliver Strategic Goal'),
'status': fields.selection([('Yet To Start','Yet To Start'),
                           ('In Progress','In Progress'),
                           ('Invalid','Invalid'),
                           ('Completed','Completed'),
                           ('Closed','Closed'),],
                            'Status', required=True),
            }

class hr_team(osv.osv): # Instead of Act Win I want to call Function _name = "hr.team" _description = "Team Goals"

    # Function to overview the View
def action_button_confirm(self, cr, uid, ids, context=None):
    print "Here is the Context ::",context

    dummy, form_view = models_data.get_object_reference(cr, uid,  'hr_survey_relation', 'view_hr_performancegoals_form')
    dummy, tree_view = models_data.get_object_reference(cr, uid,  'hr_survey_relation', 'view_hr_performancegoals_form')

    return {
        'type': 'ir.actions.act_window',
        'domain': "[('employee_id','in',["+','.join(map(str,employee_list))+"])]",
        'name': 'Goals',
        'res_model': 'hr.performancegoals',
        'views': [(form_view or False, 'form'), (tree_view or False, 'tree')],
        'res_id': ids[0],
        'view_type': 'form',
        'view_mode': 'tree,form',
        'view_id': False,
    }

_columns = {
'id':fields.char('Employee ID'),
'name_related':fields.char('EMPLOYEE NAME', require=True),
'department_id':fields.char('Department'),
'work_location': fields.char('Office Location', size=32),
'job_id':fields.char('Role/Designation', required=True),
             }

.. Xml file

    <record model="ir.ui.view" id="view_hr_performancegoals_form">
        <field name="name">hr.performancegoals.form</field>
        <field name="model">hr.performancegoals</field>
        <field name="arch" type="xml">
            <form string="Goals" version="7.0">
            <sheet>
             <notebook>
               <page string="Add New Goals">
               <group>
               <field name="employee_id" invisible="1"/>
               </group>
                    <group col="4">
                        <field name="str_goals" context="{'employee_id':employee_id}"/>
                        <field name="strategic_goals" />
                        <field name="objectives"/>
                        <field name="completion_date"/>
                        <field name="specific_actions_required_to_deliver_strategic_goal"/>
                        <field name="status"/>
                    </group>
                </page>
              </notebook>
              </sheet>
            </form>
        </field>
    </record>

    <record model="ir.ui.view" id="view_hr_performancegoals_tree">
        <field name="name">hr.performancegoals.form</field>
        <field name="model">hr.performancegoals</field>
        <field name="arch" type="xml">
            <tree string="Goals" editable="bottom" >
                <field name="employee_id" invisible="1"/>
                <field name="str_goals" context="{'employee_id':employee_id}"/>
                <field name="strategic_goals"/>
                <field name="objectives"/>
                <field name="completion_date"/>
                <field name="specific_actions_required_to_deliver_strategic_goal"/>
                <field name="status"/>
            </tree>
        </field>
</record>

<record id="hr_performancegoals_action" model="ir.actions.act_window"> <field name="name">Goals</field> <field name="res_model">hr.performancegoals</field> <field name="view_type">form</field> <field name="view_mode">tree,form</field> <field name="view_id" ref="view_hr_performancegoals_tree"/> </record> <menuitem parent="hr_evaluation.menu_eval_hr" id="hr_performancegoals" name="Goals" action="hr_performancegoals_action"/>

<record model="ir.ui.view" id="view_hr_team_form"> <field name="name">hr.team.form</field> <field name="model">hr.employee</field> <field name="arch" type="xml"> <notebook position="inside"> <page string="Team"> <group col="4"> <field name="id" invisible="1"/> <field name="name_related"/> <field name="department_id"/> <field name="work_location"/> <field name="job_id"/> <button name="hr_team.action_button_confirm" type="action" string="Assign Goals" class="oe_link oe_edit_only" icon="STOCK_DIRECTORY_MENU" context="{'id':id,'name_related':name_related}"/> </group> </page> </notebook> </field> </record>

    <record model="ir.ui.view" id="view_hr_team_tree">
        <field name="name">hr.team.tree</field>
        <field name="model">hr.employee</field>
        <field name="type">tree</field>
        <field name="arch" type="xml">
            <tree string="Team" editable="bottom" >
                        <field name="id" invisible="1"/>
                        <field name="name_related"/>
                        <field name="department_id"/>
                        <field name="work_location"/>
                        <field name="job_id"/>
                        <button name="hr_team.action_button_confirm" type="action" string="Assign Goals" class="oe_link oe_edit_only" icon="STOCK_DIRECTORY_MENU" context="{'id':id,'name_related':name_related}"/>
            </tree>
        </field>
    </record>

    <record id="hr_team_action" model="ir.actions.act_window">
        <field name="name">Team</field>
        <field name="res_model">hr.employee</field>
        <field name="view_type">form</field>
        <field name="view_mode">tree,form</field>
        <field name="view_id" ref="view_hr_team_tree"/>
    </record>
0
Avatar
Descartar
Avatar
Sajad KK
Best Answer

hr.team should inherit hr.employee

and button should be defined like below

<button name="action_button_confirm" type="object" string="Assign Goals" class="oe_link oe_edit_only" icon="STOCK_DIRECTORY_MENU" context="{'id':id,'name_related':name_related}"/>

note type and name

and you should specify model hr.team instead of hr.employee for hr_team form and tree view

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
Opening new window with button in OpenERP Solved
button
Avatar
Avatar
1
de gen. 24
15295
button in systray
button
Avatar
Avatar
2
de març 18
5928
how can i restict auto data saving while clicking on custom button in odoo10?
button
Avatar
0
de gen. 18
4197
Modify / override button action in header of form ?
button
Avatar
Avatar
2
de febr. 24
27042
Send eMail template through code
button
Avatar
3
de febr. 25
57857
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