diff options
| author | Rafi Zadanly <zadanlyr@gmail.com> | 2024-04-04 10:58:19 +0700 |
|---|---|---|
| committer | Rafi Zadanly <zadanlyr@gmail.com> | 2024-04-04 10:58:19 +0700 |
| commit | 4c192d7999b343f7211e3365132e8103d236f1b3 (patch) | |
| tree | 7b441e45c5d87eb30f84259095ddd6f647b87b9b | |
| parent | d8a20f5a0424352a3b0a849f6eb0a18f4100eddf (diff) | |
Add required field on requisition view
| -rw-r--r-- | indoteknik_custom/views/requisition.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/indoteknik_custom/views/requisition.xml b/indoteknik_custom/views/requisition.xml index 193f53f7..652d03d0 100644 --- a/indoteknik_custom/views/requisition.xml +++ b/indoteknik_custom/views/requisition.xml @@ -77,9 +77,9 @@ <field name="product_id" required="1"/> <field name="partner_id" required="1" /> <field name="qty_purchase" required="1" /> - <field name="price_unit"/> - <field name="subtotal"/> - <field name="brand_id"/> + <field name="price_unit" required="1" /> + <field name="subtotal" readonly="1" /> + <field name="brand_id" /> </tree> </field> </page> |
