Merge PR #623 into 13.0

Signed-off-by dreispt
This commit is contained in:
OCA-git-bot
2021-03-22 10:27:24 +00:00
3 changed files with 0 additions and 11 deletions

View File

@@ -8,13 +8,6 @@ class RepairOrder(models.Model):
_inherit = "repair.order"
user_id = fields.Many2one(
"res.users",
"User",
default=lambda self: self.env.user,
help="Person in charge for the repair",
)
date_repair = fields.Datetime(
"Repair Date",
default=fields.Datetime.now,

View File

@@ -2,7 +2,6 @@ This module extends the functionality of Odoo Repair module to add some basic fe
* Includes Repair Date field and adds it to the form
* Includes Repair Duration field and adds it to the form
* Includes Responsible User field and adds it to the form
* Includes repair order search by Responsible User
* Includes grouping by Responsible User
* Includes grouping by Repair Date

View File

@@ -11,9 +11,6 @@
<field name="date_repair" />
<field name="duration" />
</xpath>
<xpath expr="//field[@name='partner_id']" position="after">
<field name="user_id" />
</xpath>
</field>
</record>
<record id="view_repair_order_search" model="ir.ui.view">