mirror of
https://gitlab.com/flectra-community/server-ux.git
synced 2024-11-15 02:32:06 +00:00
18 lines
543 B
Python
18 lines
543 B
Python
from flectra import fields, models
|
|
|
|
|
|
class BarcodeAction(models.TransientModel):
|
|
_name = "barcode.action"
|
|
_inherit = "barcodes.barcode_events_mixin"
|
|
_description = "Barcode Action"
|
|
|
|
model = fields.Char(required=True, readonly=True)
|
|
res_id = fields.Integer()
|
|
method = fields.Char(required=True, readonly=True)
|
|
state = fields.Selection(
|
|
[("waiting", "Waiting"), ("warning", "Warning")],
|
|
default="waiting",
|
|
readonly=True,
|
|
)
|
|
status = fields.Text(readonly=True, default="Start scanning")
|