├── commerce_stock.info.yml ├── commerce_stock.install ├── commerce_stock.libraries.yml ├── commerce_stock.links.action.yml ├── commerce_stock.links.menu.yml ├── commerce_stock.links.task.yml ├── commerce_stock.module ├── commerce_stock.permissions.yml ├── commerce_stock.routing.yml ├── commerce_stock.views.inc ├── config ├── install │ ├── commerce_stock.commerce_stock_type.default.yml │ ├── core.entity_form_display.commerce_stock.default.default.yml │ ├── field.field.commerce_product_variation.default.stock.yml │ ├── field.storage.commerce_product_variation.stock.yml │ └── views.view.stock_movement.yml └── optional │ └── views.view.stock_on_hand.yml ├── css └── inventory_control.css ├── images ├── delete.svg ├── fill.svg ├── move.svg ├── return.svg └── sell.svg ├── js └── inventory_control.js ├── src ├── Controller │ └── CommerceStockController.php ├── Entity │ ├── Controller │ │ ├── StockLocationListBuilder.php │ │ ├── StockMovementListBuilder.php │ │ └── StockTypeListBuilder.php │ ├── EntityStockCheckInterface.php │ ├── EntityStockUpdateInterface.php │ ├── Stock.php │ ├── StockInterface.php │ ├── StockLocation.php │ ├── StockLocationInterface.php │ ├── StockMovement.php │ ├── StockMovementInterface.php │ └── StockType.php ├── Form │ ├── StockInlineForm.php │ ├── StockInventoryControlForm.php │ ├── StockLocationDeleteForm.php │ ├── StockLocationForm.php │ ├── StockMovementSettingsForm.php │ ├── StockTypeDeleteForm.php │ └── StockTypeForm.php ├── Plugin │ └── views │ │ ├── area │ │ └── StockManagement.php │ │ └── filter │ │ └── StockLocation.php ├── StockLocationViewsData.php └── StockMovementViewsData.php └── templates └── commerce-stock-inventory-control-form.html.twig /commerce_stock.info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INsReady/drupal-commerce-stock/HEAD/commerce_stock.info.yml -------------------------------------------------------------------------------- /commerce_stock.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INsReady/drupal-commerce-stock/HEAD/commerce_stock.install -------------------------------------------------------------------------------- /commerce_stock.libraries.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INsReady/drupal-commerce-stock/HEAD/commerce_stock.libraries.yml -------------------------------------------------------------------------------- /commerce_stock.links.action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INsReady/drupal-commerce-stock/HEAD/commerce_stock.links.action.yml -------------------------------------------------------------------------------- /commerce_stock.links.menu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INsReady/drupal-commerce-stock/HEAD/commerce_stock.links.menu.yml -------------------------------------------------------------------------------- /commerce_stock.links.task.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INsReady/drupal-commerce-stock/HEAD/commerce_stock.links.task.yml -------------------------------------------------------------------------------- /commerce_stock.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INsReady/drupal-commerce-stock/HEAD/commerce_stock.module -------------------------------------------------------------------------------- /commerce_stock.permissions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INsReady/drupal-commerce-stock/HEAD/commerce_stock.permissions.yml -------------------------------------------------------------------------------- /commerce_stock.routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INsReady/drupal-commerce-stock/HEAD/commerce_stock.routing.yml -------------------------------------------------------------------------------- /commerce_stock.views.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INsReady/drupal-commerce-stock/HEAD/commerce_stock.views.inc -------------------------------------------------------------------------------- /config/install/commerce_stock.commerce_stock_type.default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INsReady/drupal-commerce-stock/HEAD/config/install/commerce_stock.commerce_stock_type.default.yml -------------------------------------------------------------------------------- /config/install/core.entity_form_display.commerce_stock.default.default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INsReady/drupal-commerce-stock/HEAD/config/install/core.entity_form_display.commerce_stock.default.default.yml -------------------------------------------------------------------------------- /config/install/field.field.commerce_product_variation.default.stock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INsReady/drupal-commerce-stock/HEAD/config/install/field.field.commerce_product_variation.default.stock.yml -------------------------------------------------------------------------------- /config/install/field.storage.commerce_product_variation.stock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INsReady/drupal-commerce-stock/HEAD/config/install/field.storage.commerce_product_variation.stock.yml -------------------------------------------------------------------------------- /config/install/views.view.stock_movement.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INsReady/drupal-commerce-stock/HEAD/config/install/views.view.stock_movement.yml -------------------------------------------------------------------------------- /config/optional/views.view.stock_on_hand.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INsReady/drupal-commerce-stock/HEAD/config/optional/views.view.stock_on_hand.yml -------------------------------------------------------------------------------- /css/inventory_control.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INsReady/drupal-commerce-stock/HEAD/css/inventory_control.css -------------------------------------------------------------------------------- /images/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INsReady/drupal-commerce-stock/HEAD/images/delete.svg -------------------------------------------------------------------------------- /images/fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INsReady/drupal-commerce-stock/HEAD/images/fill.svg -------------------------------------------------------------------------------- /images/move.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INsReady/drupal-commerce-stock/HEAD/images/move.svg -------------------------------------------------------------------------------- /images/return.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INsReady/drupal-commerce-stock/HEAD/images/return.svg -------------------------------------------------------------------------------- /images/sell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INsReady/drupal-commerce-stock/HEAD/images/sell.svg -------------------------------------------------------------------------------- /js/inventory_control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INsReady/drupal-commerce-stock/HEAD/js/inventory_control.js -------------------------------------------------------------------------------- /src/Controller/CommerceStockController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INsReady/drupal-commerce-stock/HEAD/src/Controller/CommerceStockController.php -------------------------------------------------------------------------------- /src/Entity/Controller/StockLocationListBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INsReady/drupal-commerce-stock/HEAD/src/Entity/Controller/StockLocationListBuilder.php -------------------------------------------------------------------------------- /src/Entity/Controller/StockMovementListBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INsReady/drupal-commerce-stock/HEAD/src/Entity/Controller/StockMovementListBuilder.php -------------------------------------------------------------------------------- /src/Entity/Controller/StockTypeListBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INsReady/drupal-commerce-stock/HEAD/src/Entity/Controller/StockTypeListBuilder.php -------------------------------------------------------------------------------- /src/Entity/EntityStockCheckInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INsReady/drupal-commerce-stock/HEAD/src/Entity/EntityStockCheckInterface.php -------------------------------------------------------------------------------- /src/Entity/EntityStockUpdateInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INsReady/drupal-commerce-stock/HEAD/src/Entity/EntityStockUpdateInterface.php -------------------------------------------------------------------------------- /src/Entity/Stock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INsReady/drupal-commerce-stock/HEAD/src/Entity/Stock.php -------------------------------------------------------------------------------- /src/Entity/StockInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INsReady/drupal-commerce-stock/HEAD/src/Entity/StockInterface.php -------------------------------------------------------------------------------- /src/Entity/StockLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INsReady/drupal-commerce-stock/HEAD/src/Entity/StockLocation.php -------------------------------------------------------------------------------- /src/Entity/StockLocationInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INsReady/drupal-commerce-stock/HEAD/src/Entity/StockLocationInterface.php -------------------------------------------------------------------------------- /src/Entity/StockMovement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INsReady/drupal-commerce-stock/HEAD/src/Entity/StockMovement.php -------------------------------------------------------------------------------- /src/Entity/StockMovementInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INsReady/drupal-commerce-stock/HEAD/src/Entity/StockMovementInterface.php -------------------------------------------------------------------------------- /src/Entity/StockType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INsReady/drupal-commerce-stock/HEAD/src/Entity/StockType.php -------------------------------------------------------------------------------- /src/Form/StockInlineForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INsReady/drupal-commerce-stock/HEAD/src/Form/StockInlineForm.php -------------------------------------------------------------------------------- /src/Form/StockInventoryControlForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INsReady/drupal-commerce-stock/HEAD/src/Form/StockInventoryControlForm.php -------------------------------------------------------------------------------- /src/Form/StockLocationDeleteForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INsReady/drupal-commerce-stock/HEAD/src/Form/StockLocationDeleteForm.php -------------------------------------------------------------------------------- /src/Form/StockLocationForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INsReady/drupal-commerce-stock/HEAD/src/Form/StockLocationForm.php -------------------------------------------------------------------------------- /src/Form/StockMovementSettingsForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INsReady/drupal-commerce-stock/HEAD/src/Form/StockMovementSettingsForm.php -------------------------------------------------------------------------------- /src/Form/StockTypeDeleteForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INsReady/drupal-commerce-stock/HEAD/src/Form/StockTypeDeleteForm.php -------------------------------------------------------------------------------- /src/Form/StockTypeForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INsReady/drupal-commerce-stock/HEAD/src/Form/StockTypeForm.php -------------------------------------------------------------------------------- /src/Plugin/views/area/StockManagement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INsReady/drupal-commerce-stock/HEAD/src/Plugin/views/area/StockManagement.php -------------------------------------------------------------------------------- /src/Plugin/views/filter/StockLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INsReady/drupal-commerce-stock/HEAD/src/Plugin/views/filter/StockLocation.php -------------------------------------------------------------------------------- /src/StockLocationViewsData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INsReady/drupal-commerce-stock/HEAD/src/StockLocationViewsData.php -------------------------------------------------------------------------------- /src/StockMovementViewsData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INsReady/drupal-commerce-stock/HEAD/src/StockMovementViewsData.php -------------------------------------------------------------------------------- /templates/commerce-stock-inventory-control-form.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INsReady/drupal-commerce-stock/HEAD/templates/commerce-stock-inventory-control-form.html.twig --------------------------------------------------------------------------------