Commit eca04648 by Owen Ryan Ang

BPO standardization compliance, new QC schema

parent 413d1ee2
...@@ -429,6 +429,10 @@ select::-ms-expand { ...@@ -429,6 +429,10 @@ select::-ms-expand {
padding: 11px 16px !important; padding: 11px 16px !important;
} }
.select2-container{
width: 100% !important;
}
.select2-selection__rendered{ .select2-selection__rendered{
line-height: normal !important; line-height: normal !important;
padding: 0px !important; padding: 0px !important;
......
...@@ -65,6 +65,8 @@ export async function generateFields(inputSchema, containerId) { ...@@ -65,6 +65,8 @@ export async function generateFields(inputSchema, containerId) {
const sectionPromises = []; const sectionPromises = [];
// createDocTypeDropdown('DocType', container, schema);
for (let sec in doctypes) { for (let sec in doctypes) {
let underscoredSec = sec.replaceAll(" ", "_"); let underscoredSec = sec.replaceAll(" ", "_");
sessionStorage.setItem("currentSection", underscoredSec); sessionStorage.setItem("currentSection", underscoredSec);
......
...@@ -212,7 +212,7 @@ function validateMedia(key){ ...@@ -212,7 +212,7 @@ function validateMedia(key){
export async function completeToNextNode(elementId) { export async function completeToNextNode(elementId) {
let requestJSON = { let requestJSON = {
"productionOutputUnits": { "productionOutputUnits": {
"keystroke": { "KEYSTROKE": {
"outputCount": 0, "outputCount": 0,
"errorCount": 0 "errorCount": 0
} }
......
...@@ -28,11 +28,11 @@ export let BPO_URL = DOMAIN + "bpo/"; ...@@ -28,11 +28,11 @@ export let BPO_URL = DOMAIN + "bpo/";
// export const CURRENT_NODE = "Web_GDE_DEV" // export const CURRENT_NODE = "Web_GDE_DEV"
export let CURRENT_NODE = "" export let CURRENT_NODE = ""
export const ENCODING_PASS = "PASS1" export const ENCODING_PASS = "PASS1"
export const NEXT_NODE = "Complete" export const NEXT_NODE = "Completed"
export const EXCEPTION_NODE = "Exception" export const EXCEPTION_NODE = "Exception"
export const SHOW_ELEMENT_LIST_VIEWER = "Y" export const SHOW_ELEMENT_LIST_VIEWER = "Y"
export const ADD_NEW_OPTION = "N" export const ADD_NEW_OPTION = "N"
export const DISPLAYED_DETAILS = "Address|Cassandra_Key" //pipe-delimited export const DISPLAYED_DETAILS = "Extra1|Extra2|Extra3" //pipe-delimited
export const PDF_EXTENSION = ".pdf" export const PDF_EXTENSION = ".pdf"
export const JPG_EXTENSION = ".jpg" export const JPG_EXTENSION = ".jpg"
......
This source diff could not be displayed because it is too large. You can view the blob instead.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment