docs(multi lang support): work on getting multi lang support working

This commit is contained in:
2025-09-06 11:58:40 -05:00
parent 1508fb2fa7
commit 945048f43e
39 changed files with 259 additions and 93 deletions

View File

@@ -15,28 +15,28 @@ Please note that if you plan to utlize the scanner app you must use IIS to run a
1. Open IIS
2. Expand the plant and select application pools
![](./img/applicationPools.png)
![](/img/install/applicationPools.png)
3. Right click and create application
![](./img/createApplicationPool.png)
![](/img/install/createApplicationPool.png)
4. Name is Logistics Support Tool
- Change .NET CLR verion to not managed
- leave the rest as default
![](./img/pool.png)
![](/img/install/pool.png)
## Create the website
1. Expand the Sites
![](./img/defaultsite.png)
![](/img/install/defaultsite.png)
2. Right click on default site and click "Add Application..."
![](./img/addApplication.png)
![](/img/install/addApplication.png)
3. Fill out the form like below
@@ -48,7 +48,7 @@ Please note that if you plan to utlize the scanner app you must use IIS to run a
E:\LST\lstWrapper
```
![](./img/application.png)
![](/img/install/application.png)
## Making sure websocket is enabled

View File

@@ -1,5 +1,6 @@
---
sidebar_position: 2
id: install
---
# Install Process
@@ -105,7 +106,7 @@ Make sure you have installed both
open the app in vs code
open terminal
![](./install-extras/img/terminal.png)
![](/img/install/terminal.png)
run the install command

View File

@@ -1,5 +1,9 @@
---
sidebar_position: 1
id: intro
title: intro.title
---
---
# Logisitcs Support Tool Intro

View File

@@ -1,5 +1,6 @@
---
sidebar_position: 1
id: ocp
---
# Material Consumption
@@ -22,7 +23,7 @@ here you will be able to see the logs for the last 4 hours to identifty what the
below is an example of missing materials.
![](./img/logs.png)
![](/img/ocp/logs.png)
as you see this lot is missing a lot of items. if the packer keeps pressing the pause button you will see quite a few of these.
@@ -39,16 +40,16 @@ To correct these errors follow each error.
Grab a scanner and scan the Consume non-prepared material
![](./img/consume.png)
![](/img/ocp//consume.png)
next grab the production work order of the lot you will be running the material on.
Then scan the top barcode.
![](./img/workorder.png)
![](/img/ocp//workorder.png)
Lastly scan the cage of preforms, resin, or color you will be consuming to the lot.
![](./img/label.png)
![](/img/ocp//label.png)
## Consuming new manual material via LST.
@@ -58,7 +59,7 @@ Click on material helper on the left side bar.
Enter the lot and running number and click consume, the card also comes with basic insturctions.
![](./img/lst-consume.png)
![](/img/ocp//lst-consume.png)
This will do the exact same process as using the scanner.
@@ -75,7 +76,7 @@ then you will want to add the enter the running number and the original quantity
label example to show where to look
![](./img/labelQty.png)
![](/img/ocp/labelQty.png)
NOTE: preforms have there quantity on the label as well and you can still use the external running number(iowas perform running numebr) to move to the next lot.
@@ -83,15 +84,15 @@ Last part you will need is the lot number you will be moving the material too.
Like in the consume lst comes with basic insturctions as well.
![](./img/lotTransfer.png)
![](/img/ocp/lotTransfer.png)
Please see example errors that you could see when utlizeing the lotTransfer card.
![](./img/e1.png) ![](./img/e2.png) ![](./img/e3.png) ![](./img/e4.png)
![](/img/ocp/e1.png) ![](/img/ocp//e2.png) ![](/img/ocp/e3.png) ![](/img/ocp/e4.png)
The below specfic and very generic error is more than likely an input error. And that could be the running number is wrong and never actually was in the system, but in the event everything was checked and you still get the error please report by entering a helpdesk ticket.
![](./img/e5.png)
![](/img/ocp/e5.png)
## Manual return and consume
@@ -110,7 +111,7 @@ Grab your label you are wanting to move to the next lot
Note the running number and qty. you will not ever be able to reprint for more than the qty that is currenty on the label
![](./img/labelQty.png)
![](/img/ocp/labelQty.png)
next open up alpla label (any version of alpla label will work for this step) and click on the reprint tab.
@@ -120,13 +121,13 @@ NOTE: if you see the yellow triangle like in the below example this indicates th
please reach out to your manager or supervisor to ask for next steps on what to do.
![](./img/reprint-caution.png)
![](/img/ocp//reprint-caution.png)
Next take the newly printed label, a scanner, workorder, and location barcode.
scan
![](./img/returnBarcode.png)
![](/img/ocp/returnBarcode.png)
- Scan the unit (The label you reprinted).
- Scan the lane (location where you will be returning this material/preforms to)
@@ -136,10 +137,10 @@ Grab the new work order
Scan
![](./img/consumebarcode.png)
![](/img/ocp/consumebarcode.png)
- Scan the top bar code on the production order
![](./img/workorder.png)
![](/img/ocp/workorder.png)
- Scan the barcode of the label you reprinted

View File

@@ -33,7 +33,30 @@ const config: Config = {
// may want to replace "en" with "zh-Hans".
i18n: {
defaultLocale: "en",
locales: ["en"],
locales: ["en", "es"],
// localeConfigs: {
// en: {
// label: "English",
// direction: "ltr",
// htmlLang: "en-US",
// calendar: "gregory",
// path: "en",
// },
// es: {
// label: "Español",
// direction: "ltr",
// htmlLang: "es-ES",
// calendar: "gregory",
// path: "es",
// },
// de: {
// label: "Deutsch",
// direction: "ltr",
// htmlLang: "de-DE",
// calendar: "gregory",
// path: "de",
// },
// },
},
presets: [
@@ -92,6 +115,10 @@ const config: Config = {
// label: "GitHub",
// position: "right",
// },
// {
// type: "localeDropdown",
// position: "right",
// },
],
},
footer: {

View File

@@ -14,6 +14,11 @@ import type { SidebarsConfig } from "@docusaurus/plugin-content-docs";
*/
const sidebars: SidebarsConfig = {
// By default, Docusaurus generates a sidebar from the docs folder structure
// docsSidebar: [
// { type: "doc", id: "intro" },
// { type: "doc", id: "install" },
// { type: "doc", id: "ocp/ocp" },
// ],
docsSidebar: [{ type: "autogenerated", dirName: "." }],
// But you can create a sidebar manually

View File

Before

Width:  |  Height:  |  Size: 30 KiB

After

Width:  |  Height:  |  Size: 30 KiB

View File

Before

Width:  |  Height:  |  Size: 9.1 KiB

After

Width:  |  Height:  |  Size: 9.1 KiB

View File

Before

Width:  |  Height:  |  Size: 112 KiB

After

Width:  |  Height:  |  Size: 112 KiB

View File

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 18 KiB

View File

Before

Width:  |  Height:  |  Size: 6.3 KiB

After

Width:  |  Height:  |  Size: 6.3 KiB

View File

Before

Width:  |  Height:  |  Size: 6.6 KiB

After

Width:  |  Height:  |  Size: 6.6 KiB

View File

Before

Width:  |  Height:  |  Size: 57 KiB

After

Width:  |  Height:  |  Size: 57 KiB

View File

Before

Width:  |  Height:  |  Size: 121 KiB

After

Width:  |  Height:  |  Size: 121 KiB

View File

Before

Width:  |  Height:  |  Size: 217 KiB

After

Width:  |  Height:  |  Size: 217 KiB

View File

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 17 KiB

View File

Before

Width:  |  Height:  |  Size: 8.1 KiB

After

Width:  |  Height:  |  Size: 8.1 KiB

View File

Before

Width:  |  Height:  |  Size: 6.2 KiB

After

Width:  |  Height:  |  Size: 6.2 KiB

View File

Before

Width:  |  Height:  |  Size: 5.7 KiB

After

Width:  |  Height:  |  Size: 5.7 KiB

View File

Before

Width:  |  Height:  |  Size: 8.5 KiB

After

Width:  |  Height:  |  Size: 8.5 KiB

View File

Before

Width:  |  Height:  |  Size: 5.9 KiB

After

Width:  |  Height:  |  Size: 5.9 KiB

View File

Before

Width:  |  Height:  |  Size: 130 KiB

After

Width:  |  Height:  |  Size: 130 KiB

View File

Before

Width:  |  Height:  |  Size: 220 KiB

After

Width:  |  Height:  |  Size: 220 KiB

View File

Before

Width:  |  Height:  |  Size: 71 KiB

After

Width:  |  Height:  |  Size: 71 KiB

View File

Before

Width:  |  Height:  |  Size: 53 KiB

After

Width:  |  Height:  |  Size: 53 KiB

View File

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 21 KiB

View File

Before

Width:  |  Height:  |  Size: 38 KiB

After

Width:  |  Height:  |  Size: 38 KiB

View File

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 16 KiB

View File

Before

Width:  |  Height:  |  Size: 93 KiB

After

Width:  |  Height:  |  Size: 93 KiB