[MIG] project_request_data: migrate to 18.0

This commit is contained in:
Stéphan Sainléger
2026-01-20 17:24:51 +01:00
parent a97bd8ecca
commit 0a7814ad1a
14 changed files with 382 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
from odoo import models, fields
class TaskService(models.Model):
_name = "task.service"
_description = "Task service"
name = fields.Char('name', required=True)
sequence = fields.Integer()