diff --git a/purchase_ux/README.rst b/purchase_ux/README.rst
index 09d097df..ef8e654b 100644
--- a/purchase_ux/README.rst
+++ b/purchase_ux/README.rst
@@ -33,7 +33,6 @@ Purchase Orders
Purchase Order Lines
--------------------
-* Prevent automatic price recalculation when quantity changes
* Use product standard price when supplier price is not available (seller price = 0.0)
* Enhanced invoice quantity management and controls
diff --git a/purchase_ux/__manifest__.py b/purchase_ux/__manifest__.py
index 1b2f6eda..2f65425b 100644
--- a/purchase_ux/__manifest__.py
+++ b/purchase_ux/__manifest__.py
@@ -19,7 +19,7 @@
##############################################################################
{
"name": "Purchase UX",
- "version": "19.0.1.0.0",
+ "version": "19.0.1.1.0",
"category": "Purchases",
"sequence": 14,
"summary": "Purchase order improvements: currency change, price updates, invoice controls and menu enhancements",
diff --git a/purchase_ux/models/res_company.py b/purchase_ux/models/res_company.py
index c82f302e..ba6d51b0 100644
--- a/purchase_ux/models/res_company.py
+++ b/purchase_ux/models/res_company.py
@@ -11,4 +11,5 @@ class ResCompany(models.Model):
skip_upload = fields.Boolean(
string="Skip Bill File Upload",
help="When enabled, bills will be created directly without requiring file upload in purchase orders.",
+ default=True,
)
diff --git a/purchase_ux/views/purchase_order_views.xml b/purchase_ux/views/purchase_order_views.xml
index 0e490564..638c6c05 100644
--- a/purchase_ux/views/purchase_order_views.xml
+++ b/purchase_ux/views/purchase_order_views.xml
@@ -91,10 +91,6 @@
state in ['draft', 'sent', 'to approve']
-
-
-
-
0
show