bills import/export

This commit is contained in:
denisdulici
2020-01-21 09:55:12 +03:00
parent 45c02d5502
commit 1383dd4758
18 changed files with 242 additions and 51 deletions

View File

@@ -11,6 +11,11 @@ class InvoiceHistories extends Import
{
public function model(array $row)
{
// @todo remove after 3.2 release
if ($row['invoice_number'] == $this->empty_field) {
return null;
}
return new Model($row);
}