fix and update the functionality and the ui for accounting automation

This commit is contained in:
Omair Saleh
2023-04-18 12:07:27 +08:00
parent 6aa2ed53c7
commit 4a6ae598fa
38 changed files with 2088 additions and 566 deletions
@@ -36,7 +36,7 @@ class ConvertsBase64ToFile
foreach ($files as $file) {
$object = new FileObject($file);
in_array($object->getExtension(), ['pdf', 'excel']) ? $this->generatePDF($object) : $this->generateImage($object);
in_array($object->getExtension(), ['pdf', 'excel', 'text']) ? $this->generatePDF($object) : $this->generateImage($object);
}
@@ -122,4 +122,4 @@ class ConvertsBase64ToFile
]);
}
}
}