Hi, could someone please help figure out how to change the default Sales Orders view from « cards » to « grid »? Thank you
Hi @marty
In action-view sc.root.purchase.orders move <view type="cards" name="partner-cards"/>
after <view type="grid" name="partner-supplier-grid"/>
as below:
<action-view name="sc.root.purchase.orders" title="Purchase orders"
model="com.axelor.apps.purchase.db.PurchaseOrder">
<view type="grid" name="purchase-order-grid"/>
<view type="cards" name="purchase-order-cards"/>
.../...
Then refresh only this view after modification.
2 J'aime