Added item tally page for technician

This commit is contained in:
Keannu Christian Bernasol 2024-01-05 19:27:42 +08:00
parent 81cb18dc5c
commit 0d32ce61cb
3 changed files with 260 additions and 0 deletions

View file

@ -1,6 +1,7 @@
import { Button } from "@mui/material";
import { useNavigate } from "react-router-dom";
import ManageSearchIcon from "@mui/icons-material/ManageSearch";
import CountertopsIcon from "@mui/icons-material/Countertops";
import styles from "../../../styles";
import { colors } from "../../../styles";
@ -57,6 +58,37 @@ export default function TechnicianLogButtons() {
SKU Logs
</p>
</Button>
<Button
style={{
...styles.flex_column,
...{
alignSelf: "center",
justifyContent: "center",
flexWrap: "wrap",
},
}}
onClick={() => {
navigate("/view/equipments/tally");
}}
>
<CountertopsIcon
style={{
height: 64,
width: 64,
fill: colors.font_dark,
marginLeft: "1rem",
marginRight: "1rem",
}}
/>
<p
style={{
...styles.text_dark,
...styles.text_M,
}}
>
Item Tally
</p>
</Button>
<Button
style={{
...styles.flex_column,