diff --git a/migration/19.04/migrateNewNature.php b/migration/19.04/migrateNewNature.php index 2f0c7600558b65039feeaf9256e659a6357118d1..fc2a4fa6d780a4ddb6f89b3c0d93ea0e6f01f234 100644 --- a/migration/19.04/migrateNewNature.php +++ b/migration/19.04/migrateNewNature.php @@ -5,6 +5,7 @@ require '../../vendor/autoload.php'; chdir('../..'); $nonReadableFiles = []; +$migrated = 0; $customs = scandir('custom'); foreach ($customs as $custom) { @@ -30,11 +31,12 @@ foreach ($customs as $custom) { $newNature->addChild('label', '_NUMERIC_PACKAGE'); $loadedXml->mail_natures->addChild('default_nature', $default_nature); - } - $res = formatXml($loadedXml); - $fp = fopen($path, "w+"); - if ($fp) { - fwrite($fp, $res); + $res = formatXml($loadedXml); + $fp = fopen($path, "w+"); + if ($fp) { + fwrite($fp, $res); + } + $migrated++; } } } @@ -43,6 +45,7 @@ foreach ($nonReadableFiles as $file) { printf("The file %s it is not readable or not writable.\n", $file); } +printf($migrated . " custom(s) avec entreprise.xml (natures) trouvé(s) et migré(s).\n"); function formatXml($simpleXMLElement) { diff --git a/migration/19.04/refactorPriorities.php b/migration/19.04/refactorPriorities.php index 8b2db7b8ca4c11a5b3cef77e93d1f3bbfcf44e38..7424152249133b1356687bacc29f6acc9aa19a53 100644 --- a/migration/19.04/refactorPriorities.php +++ b/migration/19.04/refactorPriorities.php @@ -3,6 +3,7 @@ chdir('../..'); $nonReadableFiles = []; +$migrated = 0; $customs = scandir('custom'); foreach ($customs as $custom) { @@ -25,6 +26,7 @@ foreach ($customs as $custom) { if ($fp) { fwrite($fp, $res); } + $migrated++; } } } @@ -32,3 +34,5 @@ foreach ($customs as $custom) { foreach ($nonReadableFiles as $file) { printf("The file %s it is not readable or not writable.\n", $file); } + +printf($migrated . " custom(s) avec entreprise.xml (priorities) trouvé(s) et migré(s).\n"); diff --git a/migration/19.04/refactorRemoteSignatoryBooks.php b/migration/19.04/refactorRemoteSignatoryBooks.php index be684c1fb1cb93a67b0018b53a1b490b5cca6130..5f7a34f9683bf2a20721352e68cfe9d0f80aa50b 100644 --- a/migration/19.04/refactorRemoteSignatoryBooks.php +++ b/migration/19.04/refactorRemoteSignatoryBooks.php @@ -30,7 +30,7 @@ foreach ($customs as $custom) { $newSignatoryBook->addChild('externalValidated', 'VAL'); $newSignatoryBook->addChild('externalRefused', 'REF'); - $res = $loadedXml->asXML(); + $res = formatXml($loadedXml); $fp = fopen($path, "w+"); if ($fp) { fwrite($fp, $res); @@ -43,4 +43,15 @@ foreach ($customs as $custom) { foreach ($nonReadableFiles as $file) { printf("The file %s it is not readable or not writable.\n", $file); } + printf($migrated . " custom(s) avec un fichier remoteSignatoryBooks.xml trouvé(s) et refactoré(s).\n"); + +function formatXml($simpleXMLElement) +{ + $xmlDocument = new DOMDocument('1.0'); + $xmlDocument->preserveWhiteSpace = false; + $xmlDocument->formatOutput = true; + $xmlDocument->loadXML($simpleXMLElement->asXML()); + + return $xmlDocument->saveXML(); +}