Modify the message for clarity. #390

This commit is contained in:
Korina Cordero 2020-04-29 08:24:07 +00:00
parent 53fc34739d
commit 2a2cde8a2d

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));