This commit is contained in:
ameerulrasyid 2025-02-21 16:17:19 +08:00
parent 8b7a4d5390
commit 4d517fdd6c
3 changed files with 23 additions and 1 deletions

View File

@ -89,7 +89,7 @@
<div class="col-6 col-md-6 col-lg-3"> <div class="col-6 col-md-6 col-lg-3">
<div class="card card-hover"> <div class="card card-hover">
<a asp-area="Inventory" asp-controller="InventoryMaster" asp-action="QrScanner"> <a asp-area="Inventory" asp-controller="ItemMovement" asp-action="Qr">
<div class="box bg-success text-center"> <div class="box bg-success text-center">
<h1 class="font-light text-white"> <h1 class="font-light text-white">
<i class="mdi mdi-checkbox-multiple-blank-circle"></i> <i class="mdi mdi-checkbox-multiple-blank-circle"></i>

17
package-lock.json generated Normal file
View File

@ -0,0 +1,17 @@
{
"name": "pstwcentralizesystem",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"dependencies": {
"html5-qrcode": "^2.3.8"
}
},
"node_modules/html5-qrcode": {
"version": "2.3.8",
"resolved": "https://registry.npmjs.org/html5-qrcode/-/html5-qrcode-2.3.8.tgz",
"integrity": "sha512-jsr4vafJhwoLVEDW3n1KvPnCCXWaQfRng0/EEYk1vNcQGcG/htAdhJX0be8YyqMoSz7+hZvOZSTAepsabiuhiQ=="
}
}
}

5
package.json Normal file
View File

@ -0,0 +1,5 @@
{
"dependencies": {
"html5-qrcode": "^2.3.8"
}
}