Erweiterungen / Korrekturen Beraterbestellungen
This commit is contained in:
parent
ecc71c616f
commit
c4ed6b39db
36 changed files with 1104 additions and 617 deletions
|
|
@ -19,6 +19,7 @@ class CreateShippingPricesTable extends Migration
|
|||
|
||||
$table->decimal('price', 8, 2)->nullable();
|
||||
$table->decimal('price_comp', 8, 2)->nullable();
|
||||
$table->unsignedTinyInteger('num_comp')->nullable();
|
||||
|
||||
$table->decimal('tax_rate', 5, 2)->nullable();
|
||||
$table->decimal('factor', 5, 2)->nullable();
|
||||
|
|
|
|||
|
|
@ -19,10 +19,15 @@ class CreateShoppingOrderItemsTable extends Migration
|
|||
$table->unsignedInteger('shopping_order_id');
|
||||
$table->string('row_id', 40)->nullable();
|
||||
$table->unsignedInteger('product_id');
|
||||
|
||||
$table->unsignedTinyInteger('comp')->nullable();
|
||||
|
||||
|
||||
$table->unsignedInteger('qty');
|
||||
$table->decimal('price', 8, 2)->nullable();
|
||||
$table->decimal('price_net', 8, 3)->nullable();
|
||||
|
||||
|
||||
$table->decimal('tax_rate', 5, 2)->nullable();
|
||||
$table->string('slug')->nullable();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue