Merge branch 'fronkdev' into 'master'

Added script to create Invoice PDFs

See merge request fronk/thetool!461
This commit is contained in:
Frank Schubert
2024-07-10 08:44:30 +00:00
14 changed files with 881 additions and 56 deletions
@@ -0,0 +1,31 @@
<?php
declare(strict_types=1);
use Phinx\Migration\AbstractMigration;
final class InvoiceAddDateDelivered extends AbstractMigration
{
public function up(): void
{
if($this->getEnvironment() == "thetool") {
$table = $this->table("Invoice");
$table->addColumn("date_delivered", "integer", ["null" => true, "default" => null, "after" => "bmd_export_date"]);
$table->update();
}
if($this->getEnvironment() == "addressdb") {
}
}
public function down(): void
{
if($this->getEnvironment() == "thetool") {
$this->table("Invoice")->removeColumn("date_delivered")->save();
}
if($this->getEnvironment() == "addressdb") {
}
}
}
@@ -0,0 +1,41 @@
<?php
declare(strict_types=1);
use Phinx\Migration\AbstractMigration;
final class CreateInvoiceFile extends AbstractMigration
{
public function up(): void
{
if($this->getEnvironment() == "thetool") {
$table = $this->table("InvoiceFile");
$table->addColumn("invoice_id", "integer", ["null" => false]);
$table->addColumn("file_id", "integer", ["null" => false]);
$table->addColumn("name", "string", ["null" => false, "limit" => 1024]);
$table->addColumn("description", "string", ["null" => true, "default" => null, "limit" => 1024]);
$table->addColumn("create_by", "integer", ["null" => false]);
$table->addColumn("edit_by", "integer", ["null" => false]);
$table->addColumn("create", "integer", ["null" => false]);
$table->addColumn("edit", "integer", ["null" => false]);
$table->create();
}
if($this->getEnvironment() == "addressdb") {
}
}
public function down(): void
{
if($this->getEnvironment() == "thetool") {
$this->table("InvoiceFile")->drop()->save();
}
if($this->getEnvironment() == "addressdb") {
}
}
}