Added customer_nr to database and invoice templates.

Used standard DATEV format(10000 – 69999)

Fixes #31
This commit is contained in:
2025-10-21 17:12:50 +02:00
parent 9d473ef45f
commit e6a75bf16b
7 changed files with 33 additions and 4 deletions
@@ -11,6 +11,7 @@ public function up()
$table->id();
$table->enum('type', ['private', 'business']);
$table->string('company_name', 100)->nullable();
$table->integer('customer_nr', false, true)->nullable();
$table->string('vat_id', 50)->nullable();
$table->string('tax_id', 50)->nullable();
$table->string('global_id', 50)->nullable();