summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--indoteknik_custom/models/purchase_order.py4
-rw-r--r--indoteknik_custom/views/purchase_order.xml4
2 files changed, 4 insertions, 4 deletions
diff --git a/indoteknik_custom/models/purchase_order.py b/indoteknik_custom/models/purchase_order.py
index ba98d8d3..4931d738 100644
--- a/indoteknik_custom/models/purchase_order.py
+++ b/indoteknik_custom/models/purchase_order.py
@@ -22,8 +22,8 @@ class PurchaseOrder(models.Model):
values = {
'order_id': self.id,
'product_id': order_line.product_id.id,
- 'name': order_line.product_id.name,
- 'product_qty': order_line.product_qty
+ 'name': order_line.product_id.display_name,
+ 'product_qty': order_line.product_qty,
}
self.env['purchase.order.line'].sudo().create(values)
diff --git a/indoteknik_custom/views/purchase_order.xml b/indoteknik_custom/views/purchase_order.xml
index 48a8cf6b..f209d18a 100644
--- a/indoteknik_custom/views/purchase_order.xml
+++ b/indoteknik_custom/views/purchase_order.xml
@@ -11,11 +11,11 @@
string="Synchronize Sale Order"
type="object"
class="oe_highlight oe_edit_only"
- attrs="{'invisible': [('sale_order_id', '=', False)]}"
+ attrs="{'invisible': ['|', ('sale_order_id', '=', False), ('state', 'not in', ['draft'])]}"
/>
</div>
<field name="date_order" position="before">
- <field name="sale_order_id"/>
+ <field name="sale_order_id" attrs="{'readonly': [('state', 'not in', ['draft'])]}"/>
</field>
</field>
</record>