mirror of
https://github.com/OCA/manufacture.git
synced 2025-01-28 16:37:15 +02:00
@@ -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,
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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">
|
||||
|
||||
Reference in New Issue
Block a user