Add checkin/out beta
This commit is contained in:
@@ -101,7 +101,8 @@ def init():
|
|||||||
#print(itm)
|
#print(itm)
|
||||||
#print(type(itm))
|
#print(type(itm))
|
||||||
search.add_document(itm)
|
search.add_document(itm)
|
||||||
print(len(add))
|
print('.',end='',flush=True)
|
||||||
|
print(" " + str(len(add)), "items added.")
|
||||||
print("Cache build complete.")
|
print("Cache build complete.")
|
||||||
|
|
||||||
def search_item(query, filters: dict={}):
|
def search_item(query, filters: dict={}):
|
||||||
@@ -266,6 +267,8 @@ def change_password(username, password):
|
|||||||
|
|
||||||
def checkout(user, barcode, loc=None):
|
def checkout(user, barcode, loc=None):
|
||||||
itm = get_item(barcode)
|
itm = get_item(barcode)
|
||||||
|
if loc == False:
|
||||||
|
loc = None
|
||||||
if itm:
|
if itm:
|
||||||
itm.checkout = True
|
itm.checkout = True
|
||||||
itm.checkout_user = user
|
itm.checkout_user = user
|
||||||
@@ -277,6 +280,8 @@ def checkout(user, barcode, loc=None):
|
|||||||
|
|
||||||
def checkin(user, barcode, loc=None):
|
def checkin(user, barcode, loc=None):
|
||||||
itm = get_item(barcode)
|
itm = get_item(barcode)
|
||||||
|
if loc == False:
|
||||||
|
loc = None
|
||||||
if itm:
|
if itm:
|
||||||
itm.checkout = False
|
itm.checkout = False
|
||||||
itm.last_user = user
|
itm.last_user = user
|
||||||
|
@@ -1,6 +1,7 @@
|
|||||||
services:
|
services:
|
||||||
meilisearch:
|
meilisearch:
|
||||||
image: "getmeili/meilisearch:v1.10.1"
|
image: "getmeili/meilisearch:v1.10.1"
|
||||||
|
restart: always
|
||||||
ports:
|
ports:
|
||||||
- "7700:7700"
|
- "7700:7700"
|
||||||
environment:
|
environment:
|
||||||
@@ -24,6 +25,7 @@ services:
|
|||||||
inventory:
|
inventory:
|
||||||
build: .
|
build: .
|
||||||
init: true
|
init: true
|
||||||
|
restart: always
|
||||||
ports:
|
ports:
|
||||||
- "8000:8000"
|
- "8000:8000"
|
||||||
environment:
|
environment:
|
||||||
|
@@ -63,6 +63,16 @@ app = rio.App(
|
|||||||
url_segment='item',
|
url_segment='item',
|
||||||
build=pages.ItemPage,
|
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,
|
# You can optionally provide a root component for the app. By default,
|
||||||
# a simple `rio.PageView` is used. By providing your own component, you
|
# a simple `rio.PageView` is used. By providing your own component, you
|
||||||
|
@@ -5,4 +5,5 @@ from .add_location import AddLocationPage
|
|||||||
from .browse_page import BrowsePage
|
from .browse_page import BrowsePage
|
||||||
from .login_page import LoginPage
|
from .login_page import LoginPage
|
||||||
from .item_page import ItemPage
|
from .item_page import ItemPage
|
||||||
|
from .checkin_page import CheckinPage
|
||||||
|
from .checkout_page import CheckoutPage
|
||||||
|
@@ -1,6 +1,5 @@
|
|||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
from dataclasses import KW_ONLY, field
|
|
||||||
from typing import * # type: ignore
|
from typing import * # type: ignore
|
||||||
|
|
||||||
import rio
|
import rio
|
||||||
|
@@ -63,7 +63,7 @@ class BrowsePage(rio.Component):
|
|||||||
self.items = search_item(query, self.filters)
|
self.items = search_item(query, self.filters)
|
||||||
mid = time()
|
mid = time()
|
||||||
self.loading_text = "Loading data..."
|
self.loading_text = "Loading data..."
|
||||||
self.force_refresh()
|
#self.force_refresh()
|
||||||
end = time()
|
end = time()
|
||||||
self.loading_text = ""
|
self.loading_text = ""
|
||||||
render = str(int((end - mid) * 1000)) + "ms"
|
render = str(int((end - mid) * 1000)) + "ms"
|
||||||
|
98
inventory/pages/checkin_page.py
Normal file
98
inventory/pages/checkin_page.py
Normal 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,
|
||||||
|
)
|
||||||
|
|
99
inventory/pages/checkout_page.py
Normal file
99
inventory/pages/checkout_page.py
Normal 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,
|
||||||
|
)
|
||||||
|
|
Reference in New Issue
Block a user