Add buefy support for quick-printing product labels; also speed bump

This commit is contained in:
Lance Edgar 2022-01-09 15:20:35 -06:00
parent 94fc5c1859
commit 0545099a2b
7 changed files with 167 additions and 36 deletions

View file

@ -4368,6 +4368,8 @@ class MasterView(View):
if simple.get('type') is bool:
value = six.text_type(bool(value)).lower()
elif simple.get('type') is int:
value = six.text_type(int(value or '0'))
else:
value = six.text_type(value)