优化agv及新增中控日志调用
This commit is contained in:
@@ -49,3 +49,13 @@ class AgvTaskRoute(models.Model):
|
||||
end_site_id = fields.Many2one('sf.agv.site', '终点接驳站位置编号')
|
||||
destination_production_line_id = fields.Many2one('sf.production.line', '目的生产线')
|
||||
active = fields.Boolean('有效', default=True)
|
||||
|
||||
|
||||
class Center_controlInterfaceLog(models.Model):
|
||||
_name = 'center_control.interface.log'
|
||||
_description = '中控接口调用日志'
|
||||
|
||||
name = fields.Char('接口名称')
|
||||
content = fields.Char('接口内容')
|
||||
interface_call_date = fields.Datetime("调用时间", default=fields.Datetime.now, readonly=True)
|
||||
active = fields.Boolean('有效', default=True)
|
||||
|
||||
Reference in New Issue
Block a user