Skip to content
Closed
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
2 changes: 1 addition & 1 deletion stock_voucher/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
##############################################################################
{
"name": "Stock Voucher",
"version": "18.0.1.5.0",
"version": "18.0.1.6.0",
"category": "Warehouse Management",
"sequence": 14,
"summary": "",
Expand Down
1 change: 1 addition & 0 deletions stock_voucher/models/stock_book.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,4 @@ class StockBook(models.Model):
default=lambda self: self.env.company,
)
next_number = fields.Integer(related="sequence_id.number_next_actual", readonly=False)
active = fields.Boolean(default=True)
1 change: 1 addition & 0 deletions stock_voucher/views/stock_book_views.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
</header>
<sheet>
<group>
<field name="active" invisible="1"/>
<field name="name"/>
<field name="sequence_id"/>
<field name="lines_per_voucher"/>
Expand Down
Loading