Add checkin/out beta

This commit is contained in:
2025-09-29 15:44:11 -05:00
parent 65f6052903
commit 67a999c418
8 changed files with 220 additions and 6 deletions

View File

@@ -88,7 +88,7 @@ def init():
db.create_tables([location, office, item, component, user])
print("Database initialized.")
global search
print("Creating cache index... ", end='', flush=True)
print("Creating cache index...", end='', flush=True)
search = ivs()
add = item.select().dicts()
#print(add)
@@ -101,7 +101,8 @@ def init():
#print(itm)
#print(type(itm))
search.add_document(itm)
print(len(add))
print('.',end='',flush=True)
print(" " + str(len(add)), "items added.")
print("Cache build complete.")
def search_item(query, filters: dict={}):
@@ -266,6 +267,8 @@ def change_password(username, password):
def checkout(user, barcode, loc=None):
itm = get_item(barcode)
if loc == False:
loc = None
if itm:
itm.checkout = True
itm.checkout_user = user
@@ -277,6 +280,8 @@ def checkout(user, barcode, loc=None):
def checkin(user, barcode, loc=None):
itm = get_item(barcode)
if loc == False:
loc = None
if itm:
itm.checkout = False
itm.last_user = user

View File

@@ -1,6 +1,7 @@
services:
meilisearch:
image: "getmeili/meilisearch:v1.10.1"
restart: always
ports:
- "7700:7700"
environment:
@@ -24,6 +25,7 @@ services:
inventory:
build: .
init: true
restart: always
ports:
- "8000:8000"
environment:
@@ -33,4 +35,4 @@ services:
- database
volumes:
meili_data:
meili_data:

View File

@@ -63,6 +63,16 @@ app = rio.App(
url_segment='item',
build=pages.ItemPage,
),
rio.ComponentPage(
name="CheckinPage",
url_segment='in',
build=pages.CheckinPage,
),
rio.ComponentPage(
name="CheckoutPage",
url_segment='out',
build=pages.CheckoutPage,
),
],
# You can optionally provide a root component for the app. By default,
# a simple `rio.PageView` is used. By providing your own component, you

View File

@@ -5,4 +5,5 @@ from .add_location import AddLocationPage
from .browse_page import BrowsePage
from .login_page import LoginPage
from .item_page import ItemPage
from .checkin_page import CheckinPage
from .checkout_page import CheckoutPage

View File

@@ -1,6 +1,5 @@
from __future__ import annotations
from dataclasses import KW_ONLY, field
from typing import * # type: ignore
import rio

View File

@@ -63,7 +63,7 @@ class BrowsePage(rio.Component):
self.items = search_item(query, self.filters)
mid = time()
self.loading_text = "Loading data..."
self.force_refresh()
#self.force_refresh()
end = time()
self.loading_text = ""
render = str(int((end - mid) * 1000)) + "ms"

View File

@@ -0,0 +1,98 @@
from __future__ import annotations
from typing import * # type: ignore
import rio
import datetime
from mac_vendor_lookup import AsyncMacLookup
from db_classes import *
from .. import components as comps
import asyncio
class CheckinPage(rio.Component):
code: str = ""
popup_message: str = ""
popup_show: bool = False
popup_color: str = 'warning'
name: str = ""
user_code: str = ""
loc_code: str = ""
loc: str = ""
async def _update_location(self, event: rio.TextInputChangeEvent):
print("Checking " + self.loc)
if get_location_id(self.loc) != False:
self.loc_code = self.loc
print("Found location " + get_location_id(self.loc).name)
self.loc = get_location_id(self.loc).name
async def _update_user(self, event: rio.TextInputChangeEvent):
print("Checking " + self.name)
if get_location_id(self.name) != False:
self.user_code = self.name
print("Found user " + get_user(self.name).name)
self.name = get_user(self.name).name
async def _checkin_item_enter(self, event: rio.TextInputConfirmEvent):
await self.check_in()
async def check_in(self):
if checkin(get_user(self.user_code), self.code, get_location_id(self.loc_code)):
self.popup_message = "\n Item checked in! \n\n"
self.popup_show = True
self.popup_color = 'success'
self.name: str = ""
self.user_code: str = ""
self.code: str = ""
self.loc_code: str = ""
self.loc: str = ""
await asyncio.sleep(2)
self.popup_show = False
else:
self.popup_message = "\n Error! Check item & location! \n\n"
self.popup_show = True
self.popup_color = 'warning'
await asyncio.sleep(2)
self.popup_show = False
def build(self) -> rio.Component:
return rio.Column(
rio.Popup(
anchor=rio.Text(
text="Check in devices to storage:",
style='heading1',
align_x = 0.5
),
color=self.bind().popup_color,
is_open=self.bind().popup_show,
content=rio.Text(
text=self.bind().popup_message,
),
),
rio.TextInput(
label="Barcode",
text=self.bind().code
),
rio.TextInput(
label="New location",
text=self.bind().loc,
on_change=self._update_location
),
rio.TextInput(
label="User",
text=self.bind().name,
on_confirm=self._checkin_item_enter
),
rio.Button(
content="Go"
),
spacing=2,
min_width=60,
margin_bottom=4,
align_x=0.5,
align_y=0,
)

View File

@@ -0,0 +1,99 @@
from __future__ import annotations
from typing import * # type: ignore
import rio
import datetime
from mac_vendor_lookup import AsyncMacLookup
from db_classes import *
from .. import components as comps
import asyncio
class CheckoutPage(rio.Component):
code: str = ""
popup_message: str = ""
popup_show: bool = False
popup_color: str = 'warning'
description: str = ""
name: str = ""
user_code: str = ""
loc_code: str = ""
loc: str = ""
async def _update_location(self, event: rio.TextInputChangeEvent):
print("Checking " + self.loc)
if get_location_id(self.loc) != False:
self.loc_code = self.loc
print("Found location " + get_location_id(self.loc).name)
self.loc = get_location_id(self.loc).name
async def _update_user(self, event: rio.TextInputChangeEvent):
print("Checking " + self.name)
if get_location_id(self.name) != False:
self.user_code = self.name
print("Found user " + get_user(self.name).name)
self.name = get_user(self.name).name
async def _checkout_item_enter(self, event: rio.TextInputConfirmEvent):
await self.check_out()
async def check_out(self):
if checkout(get_user(self.user_code), self.code, get_location_id(self.loc_code)):
self.popup_message = "\n Item checked out! \n\n"
self.popup_show = True
self.popup_color = 'success'
self.name: str = ""
self.user_code: str = ""
self.code: str = ""
self.loc_code: str = ""
self.loc: str = ""
await asyncio.sleep(2)
self.popup_show = False
else:
self.popup_message = "\n Error! Check item & location! \n\n"
self.popup_show = True
self.popup_color = 'warning'
await asyncio.sleep(2)
self.popup_show = False
def build(self) -> rio.Component:
return rio.Column(
rio.Popup(
anchor=rio.Text(
text="Check out devices from storage:",
style='heading1',
align_x = 0.5
),
color=self.bind().popup_color,
is_open=self.bind().popup_show,
content=rio.Text(
text=self.bind().popup_message,
),
),
rio.TextInput(
label="Barcode",
text=self.bind().code
),
rio.TextInput(
label="New location",
text=self.bind().loc,
on_change=self._update_location
),
rio.TextInput(
label="User",
text=self.bind().name,
on_confirm=self._checkout_item_enter
),
rio.Button(
content="Go"
),
spacing=2,
min_width=60,
margin_bottom=4,
align_x=0.5,
align_y=0,
)