JTL Import

This commit is contained in:
Marko
2023-08-24 13:00:52 +02:00
parent 873162859c
commit 6b85ee1596
22 changed files with 77987 additions and 201 deletions

View File

@@ -29,7 +29,7 @@ class Stock
#[ORM\ManyToOne(inversedBy: 'stocks')]
private ?Warehouse $warehouse = null;
#[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)]
#[ORM\Column(type: Types::DATETIME_MUTABLE, name: 'change_date', options: ['default' => 'CURRENT_TIMESTAMP'])]
private ?\DateTimeInterface $update_time = null;
@@ -123,4 +123,4 @@ class Stock
return $this;
}
}
}