mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
[FIX] stock_request
This commit is contained in:
committed by
Kitti U
parent
811796bf0f
commit
ab05bd3db2
@@ -7,10 +7,10 @@ from odoo.addons import decimal_precision as dp
|
||||
from odoo.tools import float_compare
|
||||
|
||||
REQUEST_STATES = [
|
||||
('draft', _('Draft')),
|
||||
('open', _('In progress')),
|
||||
('done', _('Done')),
|
||||
('cancel', _('Cancelled'))]
|
||||
('draft', 'Draft'),
|
||||
('open', 'In progress'),
|
||||
('done', 'Done'),
|
||||
('cancel', 'Cancelled')]
|
||||
|
||||
|
||||
class StockRequest(models.Model):
|
||||
|
||||
Reference in New Issue
Block a user