Don't print labels when asked not to

v3.1.3 prints a label no matter what, even if label printing is set to "No label."
This commit is contained in:
anwright 2021-11-14 23:17:49 -05:00 committed by GitHub
parent 33ca6070f4
commit 7b8f837896
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -268,7 +268,7 @@ class StockService extends BaseService
]);
$stockRow->save();
if (GROCY_FEATURE_FLAG_LABEL_PRINTER && GROCY_LABEL_PRINTER_RUN_SERVER)
if (GROCY_FEATURE_FLAG_LABEL_PRINTER && GROCY_LABEL_PRINTER_RUN_SERVER && $stockLabelType == 1)
{
$webhookData = array_merge([
'product' => $productDetails->product->name,