Skip manufacturers on checkout import type

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe
2025-06-02 02:53:37 +01:00
parent d93a5aa623
commit 97187aa7eb

View File

@@ -110,7 +110,7 @@ class ItemImporter extends Importer
protected function determineCheckout($row)
{
// Locations don't get checked out to anyone/anything
if ((get_class($this) == LocationImporter::class) || (get_class($this) == AssetModelImporter::class) || (get_class($this) == SupplierImporter::class)) {
if ((get_class($this) == LocationImporter::class) || (get_class($this) == AssetModelImporter::class) || (get_class($this) == SupplierImporter::class) || (get_class($this) == ManufacturerImporter::class)) {
return;
}