artesanik/sylius-employee-plugin

Employee information for Customers plugin for Sylius.


README

68747470733a2f2f64656d6f2e73796c6975732e636f6d2f6173736574732f73686f702f696d672f6c6f676f2e706e67

Plugin Employee

Plugin for company internal stores for employees.

Documentation

This plugin is simple add four fields to the customer model: EmployeeId, Position, Office and Company

This informatión can be edited in the Admin shop interface.

The user can see this information but isn't allowed to modify this information.

That is for securing the information.

It has two translations:

  • English
  • Spanish

More translations are welcome as PR.

It have a top limit control, you can create Limits in money or quantity and apply to the employees.

And you can put an employee excluded from the limit, all this from the admin dashboard.

Installation

  1. Require plugin with composer
composer require artesanik/sylius-employee-plugin
  1. Register the Plugin in config/bundles.php:
....
Artesanik\SyliusEmployeePlugin\ArtesanikSyliusEmployeePlugin::class => ['all' => true],
....
  1. create a file sylius_employee_plugin.yaml in config/packages
cd config/packages
touch sylius_employee_plugin.yaml
nano sylius_employee_plugin.yaml
  • and put this lines inside:
imports:
    - { resource: "@ArtesanikSyliusEmployeePlugin/Resources/config/config.yml" }
  1. create a file sylius_employee_plugin.yaml in config/routes
cd config/routes
touch sylius_employee_plugin.yaml
nano sylius_employee_plugin.yaml
  • and put this lines inside
artesanik_sylius_employee_plugin:
    resource: "@ArtesanikSyliusEmployeePlugin/Resources/config/routes.yml"
  1. Copy plugin migrations to your migrations directory (e.g. src/Migrations) and apply them to your database:
cp -R vendor/artesanik/sylius-employee-plugin/migrations/* src/Migrations
bin/console doctrine:migrations:migrate

remember to make a

bin/console cache:clear

At the end of the install

COMPLETED

  • Add employee purchase budget [v0.3]

TODO

  • Add EmployeeId to Order
  • Add compatibility with SyliusLdapPlugin