Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion purchase_ux/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion purchase_ux/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
1 change: 1 addition & 0 deletions purchase_ux/models/res_company.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)
4 changes: 0 additions & 4 deletions purchase_ux/views/purchase_order_views.xml
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,6 @@
<list position="attributes">
<attribute name="decoration-info">state in ['draft', 'sent', 'to approve']</attribute>
</list>
<!-- Cambiamos el attribute de js class para que desaparezca el tablero que resume las facturas -->
<xpath expr="//list" position="attributes">
<attribute name="js_class"/>
</xpath>
<field name="date_approve" position="attributes">
<attribute name="invisible">0</attribute>
<attribute name="optional">show</attribute>
Expand Down