Skip to content

Commit

Permalink
[FIX] stock_manual_transfer: name shouldn't be saved in a new record
Browse files Browse the repository at this point in the history
The name shouldn't be present in the vals list when creating a record
and this commit fixes that by making it readonly instead of force_save
which lead to the same functional behaviour but without adding the field
to the vals list.
  • Loading branch information
xmglord authored and luisg123v committed Jun 5, 2024
1 parent 9e5713f commit 6aecfd9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<sheet>
<group>
<h1>
<field name="name" force_save="1" />
<field name="name" readonly="1" />
</h1>
</group>
<group col="4">
Expand Down

0 comments on commit 6aecfd9

Please sign in to comment.