mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-12-08 03:59:30 +00:00
Added entities and properties for some future features.
This commit is contained in:
parent
bcdba8b3e0
commit
7826e3d2ad
49 changed files with 1477 additions and 362 deletions
|
|
@ -32,8 +32,7 @@
|
|||
namespace App\Controller\AdminPages;
|
||||
|
||||
|
||||
use App\Entity\AttachmentType;
|
||||
|
||||
use App\Entity\Attachments\AttachmentType;
|
||||
use App\Form\BaseEntityAdminForm;
|
||||
use App\Services\EntityExporter;
|
||||
use App\Services\EntityImporter;
|
||||
|
|
|
|||
|
|
@ -31,9 +31,8 @@
|
|||
|
||||
namespace App\Controller\AdminPages;
|
||||
|
||||
use App\Entity\AttachmentType;
|
||||
use App\Entity\NamedDBElement;
|
||||
use App\Entity\StructuralDBElement;
|
||||
use App\Entity\Base\NamedDBElement;
|
||||
use App\Entity\Base\StructuralDBElement;
|
||||
use App\Form\BaseEntityAdminForm;
|
||||
use App\Form\ImportType;
|
||||
use App\Services\EntityExporter;
|
||||
|
|
|
|||
|
|
@ -32,8 +32,8 @@
|
|||
namespace App\Controller\AdminPages;
|
||||
|
||||
|
||||
use App\Entity\AttachmentType;
|
||||
use App\Entity\Category;
|
||||
use App\Entity\Attachments\AttachmentType;
|
||||
use App\Entity\Parts\Category;
|
||||
use App\Form\BaseEntityAdminForm;
|
||||
use App\Form\CategoryAdminForm;
|
||||
use App\Services\EntityExporter;
|
||||
|
|
|
|||
|
|
@ -32,9 +32,9 @@
|
|||
namespace App\Controller\AdminPages;
|
||||
|
||||
|
||||
use App\Entity\AttachmentType;
|
||||
use App\Entity\Attachments\AttachmentType;
|
||||
|
||||
use App\Entity\Device;
|
||||
use App\Entity\Devices\Device;
|
||||
use App\Form\BaseEntityAdminForm;
|
||||
use App\Services\EntityExporter;
|
||||
use App\Services\EntityImporter;
|
||||
|
|
|
|||
|
|
@ -32,9 +32,9 @@
|
|||
namespace App\Controller\AdminPages;
|
||||
|
||||
|
||||
use App\Entity\AttachmentType;
|
||||
use App\Entity\Attachments\AttachmentType;
|
||||
|
||||
use App\Entity\Footprint;
|
||||
use App\Entity\Parts\Footprint;
|
||||
use App\Form\BaseEntityAdminForm;
|
||||
use App\Services\EntityExporter;
|
||||
use App\Services\EntityImporter;
|
||||
|
|
|
|||
|
|
@ -32,10 +32,10 @@
|
|||
namespace App\Controller\AdminPages;
|
||||
|
||||
|
||||
use App\Entity\AttachmentType;
|
||||
use App\Entity\Attachments\AttachmentType;
|
||||
|
||||
use App\Entity\Manufacturer;
|
||||
use App\Entity\Supplier;
|
||||
use App\Entity\Parts\Manufacturer;
|
||||
use App\Entity\Parts\Supplier;
|
||||
use App\Form\BaseEntityAdminForm;
|
||||
use App\Form\CompanyForm;
|
||||
use App\Services\EntityExporter;
|
||||
|
|
|
|||
|
|
@ -31,9 +31,9 @@
|
|||
|
||||
namespace App\Controller\AdminPages;
|
||||
|
||||
use App\Entity\AttachmentType;
|
||||
use App\Entity\Attachments\AttachmentType;
|
||||
|
||||
use App\Entity\Storelocation;
|
||||
use App\Entity\Parts\Storelocation;
|
||||
use App\Form\BaseEntityAdminForm;
|
||||
use App\Form\StorelocationAdminForm;
|
||||
use App\Services\EntityExporter;
|
||||
|
|
|
|||
|
|
@ -32,9 +32,9 @@
|
|||
namespace App\Controller\AdminPages;
|
||||
|
||||
|
||||
use App\Entity\AttachmentType;
|
||||
use App\Entity\Attachments\AttachmentType;
|
||||
|
||||
use App\Entity\Supplier;
|
||||
use App\Entity\Parts\Supplier;
|
||||
use App\Form\BaseEntityAdminForm;
|
||||
use App\Form\CompanyForm;
|
||||
use App\Services\EntityExporter;
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@
|
|||
namespace App\Controller;
|
||||
|
||||
|
||||
use App\Entity\Attachment;
|
||||
use App\Entity\Attachments\Attachment;
|
||||
use App\Services\AttachmentHelper;
|
||||
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
|
||||
use Symfony\Component\HttpFoundation\BinaryFileResponse;
|
||||
|
|
|
|||
|
|
@ -30,8 +30,8 @@
|
|||
|
||||
namespace App\Controller;
|
||||
|
||||
use App\Entity\Category;
|
||||
use App\Entity\Part;
|
||||
use App\Entity\Parts\Category;
|
||||
use App\Entity\Parts\Part;
|
||||
use App\Form\PartType;
|
||||
use App\Services\AttachmentFilenameService;
|
||||
use App\Services\AttachmentHelper;
|
||||
|
|
|
|||
|
|
@ -29,12 +29,12 @@
|
|||
|
||||
namespace App\Controller;
|
||||
|
||||
use App\Entity\Category;
|
||||
use App\Entity\Parts\Category;
|
||||
use App\Entity\Device;
|
||||
use App\Entity\Footprint;
|
||||
use App\Entity\Manufacturer;
|
||||
use App\Entity\Storelocation;
|
||||
use App\Entity\Supplier;
|
||||
use App\Entity\Parts\Footprint;
|
||||
use App\Entity\Parts\Manufacturer;
|
||||
use App\Entity\Parts\Storelocation;
|
||||
use App\Entity\Parts\Supplier;
|
||||
use App\Helpers\TreeViewNode;
|
||||
use App\Services\ToolsTreeBuilder;
|
||||
use App\Services\TreeBuilder;
|
||||
|
|
|
|||
|
|
@ -29,9 +29,9 @@
|
|||
|
||||
namespace App\Controller;
|
||||
|
||||
use App\Entity\AttachmentType;
|
||||
use App\Entity\Footprint;
|
||||
use App\Entity\User;
|
||||
use App\Entity\Attachments\AttachmentType;
|
||||
use App\Entity\Parts\Footprint;
|
||||
use App\Entity\UserSystem\User;
|
||||
use App\Form\BaseEntityAdminForm;
|
||||
use App\Form\UserAdminForm;
|
||||
use App\Form\UserSettingsType;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue