コンテンツへスキップ
メニュー
この質問にフラグが付けられました
1 返信
5171 ビュー

ODOO (V11) XMLRPC calling on custom model method (test) is through an error if a create method is uncommitted and client expect "self" as argument. (I am using python)

    class DataParser(models.Modle):
          _name = "data.parser"
         test_a: fields.Char()
         test_b: fields.Char()

         @api.one
         def test(self):
             obj = self.env['data.parser'].create({'test_a':"test a", 'test_b': "Test B "})
    
            return True

XMLRPC Client

   url = 'http://localhost:8069'
   db = 'test'
   username = 'admin'
   password = 'admin'

   logging.info("url {}, db {}".format(url, db))

   common = xmlrpc.client.ServerProxy('{}/xmlrpc/2/common'.format(url), allow_none=True)
   print(common.version())
   val  = common.login(db, username, password)

  uid = common.authenticate(db, username, password, {})

  models = xmlrpc.client.ServerProxy('{}/xmlrpc/2/object'.format(url))
  val = models.execute_kw(db, uid, password, "data.parser", "test", ["self"])

Error res = self._obj.execute (query, params) \ npsycopg2.ProgrammingError: column "test_b" of relation "data_parser" does not exist \ nLINE 1: INSERT INTO "data_parser" ("id", "test_b", "test_a

アバター
破棄
最善の回答

Hi there,

Try @api.model decorator 


アバター
破棄
関連投稿 返信 ビュー 活動
3
7月 25
3619
1
10月 24
2624
1
4月 24
2763
0
9月 23
2082
9
6月 23
13682