优化agv及新增中控日志调用

This commit is contained in:
jinling.yang
2024-05-06 11:48:34 +08:00
parent 68d8c36755
commit 2cd666c4ae
10 changed files with 88 additions and 16 deletions

View File

@@ -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)