Přejít na obsah
Menu
You need to be registered to interact with the community.
This question has been flagged
2 Odpovědi
1310 Zobrazení

I'm trying to create an activity for a contact with the Odoo Api.
My Postman test to get or create contacts work fine.
But my jsonRPC to create an activity always throws me the following error:
"'format.address.mixin' object has no attribute 'display_name'"
This is the jsonRPC I'm using. It's mostly like the one I use for create and get contacts.
Somebody an idea what could be wrong?
{

  "jsonrpc": "2.0",

  "method": "call",

  "params": {

    "service": "object",

    "method": "execute_kw",

    "args": [

      „<dbname>“,

      2,

      „<apikey>",

      "mail.activity",

      "create",

      [

        {

          "res_id": <contactid>,             

          "res_model_id": 85,       

          "activity_type_id": 2,     

          "summary": „<text>",

          "note": „<text>“

        }

      ]

    ]

  },

  "id": 1

}

Avatar
Zrušit
Autor Nejlepší odpověď

Thanks. But it doesn't work.

The operation cannot be completed:\n- Create/update: a mandatory field is not set.\n- Delete: another model requires the record being deleted. If possible, archive it instead.\n\nModel: Activity (mail.activity)\nField: Document Model (res_model_id)\n

I tried to add the missing field but that just brings me back the display_name error.
Even copilot and chatGpt recomment mine or your solution but it doesn't work.
I wonder if this is a bug in the Odoo api.

Avatar
Zrušit
Nejlepší odpověď

Try this

{

  "jsonrpc": "2.0",

  "method": "call",

  "params": {

    "service": "object",

    "method": "execute_kw",

    "args": [

      "<dbname>",

      2,

      "<apikey>",

      "mail.activity",

      "create",

      [

        {

          "res_id": <contactid>,           

          "res_model": "res.partner", 

          "activity_type_id": 2, 

          "summary": "<text>",

          "note": "<text>"

        }

      ]

    ]

  },

  "id": 1

}


Avatar
Zrušit
Related Posts Odpovědi Zobrazení Aktivita
1
led 25
1447
Postman Api Vyřešeno
2
lis 22
8875
0
čvc 21
3715
1
pro 15
5962
0
zář 24
1012