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

@ -2,7 +2,7 @@
################################################################################
#
# Rattail -- Retail Software Framework
# Copyright © 2010-2021 Lance Edgar
# Copyright © 2010-2022 Lance Edgar
#
# This file is part of Rattail.
#
@ -197,7 +197,7 @@ class Grid(object):
"""
Mark the given column as "invisible" (but do not remove it).
Use :meth:`hide_column()` if you actually want to remove it.
Use :meth:`remove()` if you actually want to remove it.
"""
if invisible:
if key not in self.invisible:
@ -217,7 +217,7 @@ class Grid(object):
def replace(self, oldfield, newfield):
self.insert_after(oldfield, newfield)
self.hide_column(oldfield)
self.remove(oldfield)
def set_joiner(self, key, joiner):
if joiner is None: