0

当我在项目列表视图中单击时,我需要更新销售状态,但我不能

这是我的代码

public void onItemClick(AdapterView<?> parent, View view, int 
 position, long id) {
  ODataRow row = OCursorUtils.toDatarow((Cursor)mAdapter.getItem(position));


OValues values =new OValues();
);

在此处输入图像描述

4

1 回答 1

0

您好尝试直接调用“mark_as_read”。示例是我从“sale.order”模型中调用该 action_confirm 方法

odoo.callMethod("sale.order",//model name "action_confirm",//method name new OArguments() {{add(id);}},//id if particular record null);

于 2018-10-29T08:41:33.747 回答