Resolve "Resq - modifications to ImportSAPBatteryCommand" #1245

Merged
korina.cordero merged 1 commit from 390-resq-modifications-to-importsapbatterycommand into master 2020-04-29 08:43:23 +00:00

View file

@ -187,21 +187,21 @@ class ImportSAPBatteryCommand extends Command
throw new Exception('The file "' . $report_file . '" could be opened.');
}
fputs($fh, 'Brands not added: ' . "\n");
fputs($fh, 'Brands Already in Database: ' . "\n");
foreach ($brands as $brand)
{
fputs($fh, $brand, strlen($brand));
fputs($fh, "\n");
}
fputs($fh, 'Sizes not added: ' . "\n");
fputs($fh, 'Sizes Already in Database: ' . "\n");
foreach ($sizes as $size)
{
fputs($fh, $size, strlen($size));
fputs($fh, "\n");
}
fputs($fh, 'SKUs not added: ' . "\n");
fputs($fh, 'SAP Codes Already in Database: ' . "\n");
foreach ($batts as $batt)
{
fputs($fh, $batt, strlen($batt));