- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
为了将数据从 mro.request
传输到 mro.order
我创建了一个名为 action_confirm
的函数并且还为我的工作流程,新对象的创建也完美地完成了从 char
、date
的数据传输...但是为了填充 one2many
字段它不起作用,我没有收到任何错误。
我的按钮类型是workflow
我知道我遗漏了一些东西,只是想不通。在下面,您可以找到我的代码……最好的问候
我的模型:
1/
class mro_request(osv.osv):
_name = 'mro.request'
_columns = {
'intervention': fields.one2many('fleet.service.type.line','intervention_id','Order réparations', help='Cost type purchased with this cost'),
'priority' : fields.selection([('0', 'Not urgent'), ('1', 'Normale'), ('2', 'Urgent'), ('3', 'Tres Urgent'),('4', 'Critique')], 'Priorité',
select=True, readonly=True, states=dict.fromkeys(['draft', 'confirmed'], [('readonly', False)])),
}
@api.multi
def action_confirm(self):
or_object = self.env['mro.order']
affectation_line = self.env['fleet.service.type.line']
## creating maintenance order object is working
obj = {'state': 'draft', 'date_planned' : self.execution_date,'intervention': self.intervention,
'asset_id' : self.asset_id.id, 'description': self.description}
purchase_id = or_object.create(obj)
list_intervention=[]
for line in self.intervention :
art = {}
art['desc'] = line.description
art['intervention_type'] = line.intervention_type.name
art_id = affectation_line.create(art)
list_intervention.append(art_id)
self.write({'state': 'run'})
return True
2/
class mro_order(osv.osv):
_name = 'mro.order'
_columns = {
'intervention': fields.one2many('fleet.service.type.line','intervention_id','Order réparations', help='Cost type purchased with this cost'),
'priority' : fields.selection([('0', 'Not urgent'), ('1', 'Normale'), ('2', 'Urgent'), ('3', 'Tres Urgent'),('4', 'Critique')], 'Priorité',
select=True, readonly=True),
}
3/
class fleet_service_type_line(osv.Model):
_name = 'fleet.service.type.line'
_description = 'Type of services available on a vehicle'
_columns = {
'intervention_id' : fields.many2one('mro.request'),
'intervention_type' : fields.many2one('fleet.service.type','Type Intervention'),
'intervention_mro' : fields.many2one('mro.order','Type Intervention'),
'user_id' : fields.many2one('res.users', 'Chef Atelier', help="Workshop Chief"),
'desc' : fields.char('desc'),
}
最佳答案
试试这个:
@api.multi
def action_confirm(self):
or_object = self.env['mro.order']
## creating maintenance order object is working
obj = {
'state': 'draft',
'date_planned' : self.execution_date,
'intervention': self.intervention,
'asset_id' : self.asset_id.id,
'description': self.description
}
# before you create your model add the list
# of records to be created in intervention
list_intervention=[]
for line in self.intervention :
art = {}
art['desc'] = line.description
art['intervention_type'] = line.intervention_type.name
# x2many field accept list of cammands (command, value1, value2)
# for create pass 0 in cammand and a dictionary in value2
list_intervention.append((0, 0, art))
obj.update({ # add the list of command to obj
'intervention': list_intervention,
})
# now the create method will create the record in intervention too
or_object = or_object.create(obj)
self.write({'state': 'run'})
return True
关于python - odoo Fill one2many 从一个模型到另一个模型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47485517/
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 想改进这个问题?将问题更新为 on-topic对于堆栈溢出。 6年前关闭。 Improve this qu
我想,如果我单击按钮,删除数据并返回 TreeView 。我可以使用 unlink 方法删除数据。但我不能重定向到 TreeView 。我该怎么做? 这是我的代码: def action_de
我最近安装了 Odoo 9.0。但是,我需要一个仅适用于 Odoo 8.0 的模块。 我想知道是否可以对此模块进行微小的更改以使其兼容 Odoo 9.0?新模块只是一个日历,仅使用 Web 界面:Li
嗨,我很难确定人类的权限Odoo10 的资源模块涉及休假管理工作流程。 我在休假类型中激活了双重验证。假设我有一个部门,拥有以下员工: Manager01 (Manager of the Depart
我正在尝试将 odoo 安装从 8.0 升级到 9.0。到目前为止,我所做的如下: 从生产系统备份 odoo 数据库 在我当前的系统中安装了备份数据库作为测试 复制了我系统文件夹中的 odoo 文件夹
如何在 odoo 8.0 (OpenERP) 上删除“Powered by Odoo”? 最佳答案 首先转到您的 Odoo Web 模块并打开以下文件。 addons => web => views
我开发了一个同时支持 odoo 10 和 odoo 11 的应用程序,我想在一个部署下部署这个应用程序。意思是如果我访问我的 odoo 应用程序,我应该看到一个应用程序而不是两个应用程序,当我从下拉列
我已经按照教程安装了 odoo+postgres当我尝试在我的 linux 终端中运行 ./odoo-bin 命令时,我得到了这个错误: 2019-09-15 08:48:30,765 5126 ER
我按照教程在 Odoo 8 中创建了一个模块。我在用户中激活了技术功能,然后更新了模块列表,但它没有出现在列表中。 我该怎么办? 最佳答案 跟踪以下内容: checkout __init__.py,
我需要将“Powered by Odoo”页脚中的“Powered”更改为“Made”, 所以我的 Odoo(以前的 OpenERP)版本 8.0-aab3d9f 的页脚将是“Made by Odoo
默认情况下,当我在 odoo 中创建新数据库时,表是在公共(public)模式中创建的。有没有办法更改此配置以及 odoo 创建和使用另一个定义的方案? 最佳答案 没有办法做到这一点,odoo 默认使
我正在尝试使用与 Django 相同的功能: 在 Odoo 中,我有: 如果“c.id = cat_id”,我需要附加“active”类 它是如何在 Odoo 中完成的? 我正在使用:
我已经发送了一些电子邮件营销事件,在“群发邮件”中,我有“电子邮件”按钮的详细信息。当我点击它时,我有“邮件 ID(技术)”、“消息 ID”、“已发送”等列。但是我看不到我发送的电子邮件。 我怎么能看
在 Odoo 中创建发票时,我想过滤“客户”的可用合作伙伴选择。具体来说,我想将合作伙伴联系记录限制为“发票地址”类型的记录,即 res_partner 上的域。的 [('type','=','inv
我是 ODOO 新手,正在寻找捕获 的方法考勤模块中的地理位置 ODOO 的。需要同时记录入住和退房地点 最佳答案 检查此模块,它捕获地理位置:https://odoo-community.org/s
Odoo 中的 Product Master 需要两个不同的表是什么? product.product 和 product.template 有何不同? 最佳答案 由于产品变体,Odoo 有两种产品模
在V11企业版中,部分机型有存档功能,但公司没有。如果我有多家公司,但有一家公司已经停业,我如何禁用或存档该公司,使其不会出现在所有模块中,甚至管理员也无法将其分配给任何用户?似乎一旦创建了公司,即使
是否有一种简单的方法将 OpenERP (oodo) 中的新自定义字段(在客户记录或订单项目中)与外部链接(即描述或 iframe)关联起来,以便它可以链接到不同的系统? 创建记录时,是否有一种简单的
我在odoo社区版中更改了我的公司数据,但它从未反射(reflect)出来,即使我在浏览器缓存中进行了更改。请帮忙enter image description here ODoo 最佳答案 你有两个
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 6 年前。 Improve th
我是一名优秀的程序员,十分优秀!