landofcoder / module-barcodeinventory
Magento 2 extensoin Generate barcode for inventory product by landofcoder
Installs: 56
Dependents: 2
Suggesters: 0
Security: 0
Stars: 1
Watchers: 3
Forks: 1
Open Issues: 0
Type:magento2-module
Requires
This package is auto-updated.
Last update: 2024-10-16 10:34:32 UTC
README
``landofcoder/module-barcodeinventory``
Compatible with magento 2.3.6, 2.4.0, 2.4.1, 2.4.2, 2.4.2-p1, 2.4.3
Main Functionalities
- Generate barcode by inventory, mutil source stock
- Add product to cart with barcode (GraphQl, REST API)
- query find products by barcode (GraphQl, REST API)
Installation
* = in production please use the --keep-generated
option
Option 1 setup via composer (Recommended):
composer require landofcoder/module-barcodeinventory
Option 2 setup via upload FTP:
- Unzip the zip file in
app/code/Lof
- Install picqer library:
composer require picqer/php-barcode-generator
- Install mpdf library:
composer require mpdf/mpdf
Final step:
- Enable the module by running
php bin/magento module:enable Lof_BarcodeInventory
- Apply database updates by running
php bin/magento setup:upgrade
* - Flush the cache by running
php bin/magento cache:flush
Example Graphql
- Add Product To Cart by Barcode:
mutation{
frontAddProductToCartByBarcode(
cart_id: 22,
barcode: "123456789"
){
code
message
}
}
- Get Product info by Barcode:
query{
frontProductByBarcode(barcode: "123456789"){
id
name
sku
thumbnail{
url
label
position
}
price_range{
minimum_price{
regular_price{
value
currency
}
final_price{
value
currency
}
}
maximum_price{
regular_price{
value
currency
}
final_price{
value
currency
}
}
}
}
}