No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 
 
CANCERYS\kw093 4941bfcf39 reopen stock lot ledger report and improve stock ledger report and if INT show as x.00 hace 11 horas
.cursor added scripts for generating guide/test plan for commit(s) in word hace 1 mes
docs stock ledger fix hace 3 semanas
gradle/wrapper initial commit hace 1 año
python label print text resized to 70% hace 3 semanas
scripts remove useless py hace 1 día
src reopen stock lot ledger report and improve stock ledger report and if INT show as x.00 hace 11 horas
.gitignore pick record download + precondition checking hace 3 meses
AGENTS.md added scripts for generating guide/test plan for commit(s) in word hace 1 mes
README.md tsms to fpsms hace 1 año
build.gradle added for expiry date for bag printing and handle the changed id for item m18Id hace 1 mes
deployLocal.bat auto gen jo in schedule hace 9 meses
gradle.properties A4 printer routing & register, new col "brand" is added to printer table, plz fill in with 'Zebra', 'Canon' or 'Brother' to make it works hace 6 meses
gradlew initial commit hace 1 año
gradlew.bat initial commit hace 1 año
settings.gradle dependency for kotlin hace 1 año

README.md

FPSMS Backend

Getting started

  1. Create a schema named fpsmsdb in MySQL workbench
  2. Create a launch.json file and put it into the .vscode folder
{
    "version": "0.2.0",
    "configurations": [
      {
        "type": "java",
        "name": "FpsmsApplication",
        "request": "launch",
        "mainClass": "com.ffii.fpsms.fpsmsApplication",
        "projectName": "FPSMS-backend"
      },
      {
        "type": "java",
        "name": "Launch Local",
        "request": "launch",
        "mainClass": "com.ffii.fpsms.fpsmsApplication",
        "console": "internalConsole",
        "projectName": "FPSMS-backend",
        "args": "--spring.profiles.active=db-local,ldap-local"
      }
    ]
}
  1. Create a settings.json file and put it into the .vscode folder (You may need to change some settings depending on your development environment)
{
    "java.configuration.updateBuildConfiguration": "interactive",
    "java.jdt.ls.java.home": "C:\\java\\jdk-17.0.8",
    "java.jdt.ls.vmargs": "-XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx2G -Xms100m -Xlog:disable"
}
  1. Run and Debug “Launch Local”

Using gradle

This project can also be run using gradle.

Running the application

After creating the table in MySQL, run

./gradlew bootRun --args='--spring.profiles.active=db-local'