diff --git a/application.json b/application.json new file mode 100644 index 0000000..13d714f --- /dev/null +++ b/application.json @@ -0,0 +1,92 @@ +{ + "appIsExample": false, + "appLayout": { + "type": "FLUID" + }, + "applicationDetail": { + "appPositioning": { + "type": "FIXED" + }, + "navigationSetting": { + "colorStyle": "theme", + "logoAssetId": "", + "logoConfiguration": "logoAndApplicationTitle", + "navStyle": "stacked", + "orientation": "top", + "position": "static", + "showNavbar": false, + "showSignIn": true + }, + "themeSetting": { + "appMaxWidth": "LARGE", + "density": 1.0, + "sizing": 1.0 + } + }, + "applicationVersion": 2, + "collapseInvisibleWidgets": true, + "color": "#C7F3F0", + "evaluationVersion": 2, + "icon": "calender", + "pages": [ + { + "id": "Sales - Capacity Planning", + "isDefault": true + }, + { + "id": "Sales - Units Shipped", + "isDefault": false + }, + { + "id": "Sales - Units Ordered", + "isDefault": false + }, + { + "id": "Pending POs", + "isDefault": false + }, + { + "id": "Pending Revisions", + "isDefault": false + }, + { + "id": "xGen", + "isDefault": false + }, + { + "id": "Operations - Job Drawing Status", + "isDefault": false + }, + { + "id": "Operations - Engineering Holds", + "isDefault": false + }, + { + "id": "Operations - Unused Items", + "isDefault": false + } + ], + "unpublishedAppLayout": { + "type": "FLUID" + }, + "unpublishedApplicationDetail": { + "appPositioning": { + "type": "FIXED" + }, + "navigationSetting": { + "colorStyle": "theme", + "logoAssetId": "", + "logoConfiguration": "logoAndApplicationTitle", + "navStyle": "stacked", + "orientation": "top", + "position": "static", + "showNavbar": false, + "showSignIn": true + }, + "themeSetting": { + "appMaxWidth": "LARGE", + "density": 1.0, + "sizing": 1.0 + } + } +} \ No newline at end of file diff --git a/datasources/xTuple_GoLive.json b/datasources/xTuple_GoLive.json new file mode 100644 index 0000000..66dbc70 --- /dev/null +++ b/datasources/xTuple_GoLive.json @@ -0,0 +1,6 @@ +{ + "gitSyncId": "630fb8035cd949195181bb2c_632495194e38ed35d7b64c16", + "isAutoGenerated": false, + "name": "xTuple_GoLive", + "pluginId": "postgres-plugin" +} \ No newline at end of file diff --git a/metadata.json b/metadata.json new file mode 100644 index 0000000..45ad19b --- /dev/null +++ b/metadata.json @@ -0,0 +1,6 @@ +{ + "artifactJsonType": "APPLICATION", + "clientSchemaVersion": 2, + "fileFormatVersion": 5, + "serverSchemaVersion": 12 +} \ No newline at end of file diff --git a/pages/Operations - Engineering Holds/Operations - Engineering Holds.json b/pages/Operations - Engineering Holds/Operations - Engineering Holds.json new file mode 100644 index 0000000..7aec771 --- /dev/null +++ b/pages/Operations - Engineering Holds/Operations - Engineering Holds.json @@ -0,0 +1,33 @@ +{ + "gitSyncId": "71b0a243f2204f70b77372a5_4003dbd8-ed5e-4a99-8088-6b01be8fdf54", + "unpublishedPage": { + "isHidden": false, + "layouts": [ + { + "dsl": { + "backgroundColor": "none", + "bottomRow": 1240, + "canExtend": true, + "containerStyle": "none", + "detachFromLayout": true, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [], + "leftColumn": 0, + "minHeight": 1292, + "parentColumnSpace": 1, + "parentRowSpace": 1, + "rightColumn": 4896, + "snapColumns": 64, + "snapRows": 124, + "topRow": 0, + "type": "CANVAS_WIDGET", + "version": 94, + "widgetId": "0", + "widgetName": "MainContainer" + } + } + ], + "name": "Operations - Engineering Holds", + "slug": "operations-engineering-holds" + } +} \ No newline at end of file diff --git a/pages/Operations - Engineering Holds/queries/engineering_holds/engineering_holds.txt b/pages/Operations - Engineering Holds/queries/engineering_holds/engineering_holds.txt new file mode 100644 index 0000000..1449314 --- /dev/null +++ b/pages/Operations - Engineering Holds/queries/engineering_holds/engineering_holds.txt @@ -0,0 +1,19 @@ +SELECT COALESCE(wo.wo_number || '-' || wo.wo_subnumber, '-') AS wo, + item_descrip1 AS descrip, + comment_user AS user, + comment_text AS comment, + comment_date AS date +FROM wo +JOIN comment ON wo_id = comment_source_id AND comment_source = 'W' AND comment_cmnttype_id = 23 +JOIN itemsite ON wo_itemsite_id = itemsite_id +JOIN item on item_id = itemsite_item_id +WHERE wo_status = 'I' + AND NOT EXISTS ( + SELECT 1 + FROM comment c2 + WHERE c2.comment_source_id = wo.wo_id + AND c2.comment_source = 'W' + AND c2.comment_cmnttype_id = 23 + AND c2.comment_text LIKE '%Done%' + ) +ORDER BY comment_date \ No newline at end of file diff --git a/pages/Operations - Engineering Holds/queries/engineering_holds/metadata.json b/pages/Operations - Engineering Holds/queries/engineering_holds/metadata.json new file mode 100644 index 0000000..b158cda --- /dev/null +++ b/pages/Operations - Engineering Holds/queries/engineering_holds/metadata.json @@ -0,0 +1,31 @@ +{ + "gitSyncId": "71b0a243f2204f70b77372a5_74f2c3a6-7ee8-4966-bdf0-741c727ce4e1", + "id": "Operations - Engineering Holds_engineering_holds", + "pluginId": "postgres-plugin", + "pluginType": "DB", + "unpublishedAction": { + "actionConfiguration": { + "body": "SELECT COALESCE(wo.wo_number || '-' || wo.wo_subnumber, '-') AS wo,\n item_descrip1 AS descrip,\n comment_user AS user,\n comment_text AS comment,\n comment_date AS date\nFROM wo\nJOIN comment ON wo_id = comment_source_id AND comment_source = 'W' AND comment_cmnttype_id = 23\nJOIN itemsite ON wo_itemsite_id = itemsite_id\nJOIN item on item_id = itemsite_item_id\nWHERE wo_status = 'I'\n AND NOT EXISTS (\n SELECT 1\n FROM comment c2\n WHERE c2.comment_source_id = wo.wo_id \n AND c2.comment_source = 'W' \n AND c2.comment_cmnttype_id = 23\n AND c2.comment_text LIKE '%Done%'\n )\nORDER BY comment_date", + "encodeParamsToggle": true, + "paginationType": "NONE", + "pluginSpecifiedTemplates": [ + { + "value": true + } + ], + "timeoutInMillisecond": 10000 + }, + "confirmBeforeExecute": false, + "datasource": { + "id": "xTuple_GoLive", + "isAutoGenerated": false, + "name": "xTuple_GoLive", + "pluginId": "postgres-plugin" + }, + "dynamicBindingPathList": [], + "name": "engineering_holds", + "pageId": "Operations - Engineering Holds", + "runBehaviour": "AUTOMATIC", + "userSetOnLoad": false + } +} \ No newline at end of file diff --git a/pages/Operations - Engineering Holds/widgets/Container1/Button1.json b/pages/Operations - Engineering Holds/widgets/Container1/Button1.json new file mode 100644 index 0000000..73be143 --- /dev/null +++ b/pages/Operations - Engineering Holds/widgets/Container1/Button1.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 8, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "eh1btn1k01", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 8, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 4, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Sales - Capacity Planning', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 8, + "originalTopRow": 4, + "parentColumnSpace": 3.841796875, + "parentId": "eh1canvas01", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Capacity Planning", + "topRow": 4, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "eh1btn1cap", + "widgetName": "Button1" +} \ No newline at end of file diff --git a/pages/Operations - Engineering Holds/widgets/Container1/Button1Copy.json b/pages/Operations - Engineering Holds/widgets/Container1/Button1Copy.json new file mode 100644 index 0000000..b265e1a --- /dev/null +++ b/pages/Operations - Engineering Holds/widgets/Container1/Button1Copy.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 12, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "eh1btn1k02", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 12, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 8, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Sales - Units Shipped', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 12, + "originalTopRow": 8, + "parentColumnSpace": 3.841796875, + "parentId": "eh1canvas01", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Units Shipped", + "topRow": 8, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "eh1btn1shp", + "widgetName": "Button1Copy" +} \ No newline at end of file diff --git a/pages/Operations - Engineering Holds/widgets/Container1/Button1Copy2.json b/pages/Operations - Engineering Holds/widgets/Container1/Button1Copy2.json new file mode 100644 index 0000000..cbe3d1a --- /dev/null +++ b/pages/Operations - Engineering Holds/widgets/Container1/Button1Copy2.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 16, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "eh1btn1k03", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 16, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 12, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Sales - Units Ordered', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 16, + "originalTopRow": 12, + "parentColumnSpace": 3.841796875, + "parentId": "eh1canvas01", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Units Ordered", + "topRow": 12, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "eh1btn1ord", + "widgetName": "Button1Copy2" +} \ No newline at end of file diff --git a/pages/Operations - Engineering Holds/widgets/Container1/Button2All.json b/pages/Operations - Engineering Holds/widgets/Container1/Button2All.json new file mode 100644 index 0000000..6fa989a --- /dev/null +++ b/pages/Operations - Engineering Holds/widgets/Container1/Button2All.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 26, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "eh1btn2k01", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 26, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 22, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Pending POs', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 26, + "originalTopRow": 22, + "parentColumnSpace": 3.841796875, + "parentId": "eh1canvas01", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Pending POs", + "topRow": 22, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "eh1btn2pos", + "widgetName": "Button2All" +} \ No newline at end of file diff --git a/pages/Operations - Engineering Holds/widgets/Container1/Button2Copy.json b/pages/Operations - Engineering Holds/widgets/Container1/Button2Copy.json new file mode 100644 index 0000000..560992a --- /dev/null +++ b/pages/Operations - Engineering Holds/widgets/Container1/Button2Copy.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 30, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "eh1btn2k02", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 30, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 26, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Pending Revisions', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 30, + "originalTopRow": 26, + "parentColumnSpace": 3.841796875, + "parentId": "eh1canvas01", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Pending Revisions", + "topRow": 26, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "eh1btn2rev", + "widgetName": "Button2Copy" +} \ No newline at end of file diff --git a/pages/Operations - Engineering Holds/widgets/Container1/Button2Copy2.json b/pages/Operations - Engineering Holds/widgets/Container1/Button2Copy2.json new file mode 100644 index 0000000..e0da110 --- /dev/null +++ b/pages/Operations - Engineering Holds/widgets/Container1/Button2Copy2.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 34, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "eh1btn2k03", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 34, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 30, + "needsErrorInfo": false, + "onClick": "{{navigateTo('xGen', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 34, + "originalTopRow": 30, + "parentColumnSpace": 3.841796875, + "parentId": "eh1canvas01", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "xGen", + "topRow": 30, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "eh1btn2xgn", + "widgetName": "Button2Copy2" +} \ No newline at end of file diff --git a/pages/Operations - Engineering Holds/widgets/Container1/Button3.json b/pages/Operations - Engineering Holds/widgets/Container1/Button3.json new file mode 100644 index 0000000..79ce9c9 --- /dev/null +++ b/pages/Operations - Engineering Holds/widgets/Container1/Button3.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 44, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "eh1btn3k01", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 44, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 40, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Operations - Job Drawing Status', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 44, + "originalTopRow": 40, + "parentColumnSpace": 3.841796875, + "parentId": "eh1canvas01", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Job Drawing Status", + "topRow": 40, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "eh1btn3jds", + "widgetName": "Button3" +} \ No newline at end of file diff --git a/pages/Operations - Engineering Holds/widgets/Container1/Button3Copy.json b/pages/Operations - Engineering Holds/widgets/Container1/Button3Copy.json new file mode 100644 index 0000000..c24fae0 --- /dev/null +++ b/pages/Operations - Engineering Holds/widgets/Container1/Button3Copy.json @@ -0,0 +1,49 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 48, + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.backgroundColor}}", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [ + { + "key": "buttonColor" + } + ], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "eh1btn3k02", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 48, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 44, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Operations - Engineering Holds', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 48, + "originalTopRow": 44, + "parentColumnSpace": 3.841796875, + "parentId": "eh1canvas01", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Engineering Holds", + "topRow": 44, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "eh1btn3enh", + "widgetName": "Button3Copy" +} \ No newline at end of file diff --git a/pages/Operations - Engineering Holds/widgets/Container1/Button3Copy2.json b/pages/Operations - Engineering Holds/widgets/Container1/Button3Copy2.json new file mode 100644 index 0000000..73c05a5 --- /dev/null +++ b/pages/Operations - Engineering Holds/widgets/Container1/Button3Copy2.json @@ -0,0 +1,47 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 52, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicHeight": "FIXED", + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "eh1btn3uik", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minWidth": 120, + "mobileBottomRow": 52, + "mobileLeftColumn": 0, + "mobileRightColumn": 64, + "mobileTopRow": 48, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Operations - Unused Items', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 52, + "originalTopRow": 48, + "parentColumnSpace": 3.841796875, + "parentId": "eh1canvas01", + "parentRowSpace": 10, + "placement": "START", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Unused Items", + "topRow": 48, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "eh1btn3ui", + "widgetName": "Button3Copy2" +} \ No newline at end of file diff --git a/pages/Operations - Engineering Holds/widgets/Container1/Container1.json b/pages/Operations - Engineering Holds/widgets/Container1/Container1.json new file mode 100644 index 0000000..ce72ef3 --- /dev/null +++ b/pages/Operations - Engineering Holds/widgets/Container1/Container1.json @@ -0,0 +1,87 @@ +{ + "animateLoading": true, + "backgroundColor": "#FFFFFF", + "borderColor": "#E0DEDE", + "borderRadius": "0px", + "borderWidth": "1", + "bottomRow": 124, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "children": [ + { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 1240, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "canExtend": false, + "containerStyle": "none", + "detachFromLayout": true, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "flexLayers": [], + "isLoading": false, + "isVisible": true, + "key": "xorz42kdhi", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minHeight": 100, + "minWidth": 450, + "mobileBottomRow": 100, + "mobileLeftColumn": 0, + "mobileRightColumn": 132.9375, + "mobileTopRow": 0, + "needsErrorInfo": false, + "parentColumnSpace": 1, + "parentId": "eh1c0ntain", + "parentRowSpace": 1, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 132.9375, + "topRow": 0, + "type": "CANVAS_WIDGET", + "version": 1, + "widgetId": "eh1canvas01", + "widgetName": "Canvas1" + } + ], + "containerStyle": "card", + "dynamicBindingPathList": [ + { + "key": "boxShadow" + } + ], + "dynamicHeight": "FIXED", + "dynamicTriggerPathList": [], + "flexVerticalAlignment": "stretch", + "isCanvas": true, + "isLoading": false, + "isVisible": true, + "key": "36jaq5m9iy", + "leftColumn": 0, + "maxDynamicHeight": 12, + "minDynamicHeight": 10, + "minWidth": 450, + "mobileBottomRow": 10, + "mobileLeftColumn": 0, + "mobileRightColumn": 3, + "mobileTopRow": 0, + "needsErrorInfo": false, + "parentColumnSpace": 44.3125, + "parentId": "0", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 9, + "shouldScrollContents": true, + "topRow": 0, + "type": "CONTAINER_WIDGET", + "version": 1, + "widgetId": "eh1c0ntain", + "widgetName": "Container1" +} \ No newline at end of file diff --git a/pages/Operations - Engineering Holds/widgets/Container1/Text1.json b/pages/Operations - Engineering Holds/widgets/Container1/Text1.json new file mode 100644 index 0000000..d5cf618 --- /dev/null +++ b/pages/Operations - Engineering Holds/widgets/Container1/Text1.json @@ -0,0 +1,52 @@ +{ + "animateLoading": true, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 4, + "dynamicBindingPathList": [ + { + "key": "truncateButtonColor" + }, + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", + "fontSize": "1rem", + "fontStyle": "BOLD", + "isLoading": false, + "isVisible": true, + "key": "eh1txt1k01", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minWidth": 450, + "mobileBottomRow": 6, + "mobileLeftColumn": 10, + "mobileRightColumn": 26, + "mobileTopRow": 2, + "needsErrorInfo": false, + "originalBottomRow": 4, + "originalTopRow": 0, + "overflow": "NONE", + "parentColumnSpace": 3.841796875, + "parentId": "eh1canvas01", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 64, + "shouldTruncate": false, + "text": "Sales", + "textAlign": "LEFT", + "textColor": "#231F20", + "topRow": 0, + "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "type": "TEXT_WIDGET", + "version": 1, + "widgetId": "eh1txt1sal", + "widgetName": "Text1" +} \ No newline at end of file diff --git a/pages/Operations - Engineering Holds/widgets/Container1/Text2.json b/pages/Operations - Engineering Holds/widgets/Container1/Text2.json new file mode 100644 index 0000000..17025f3 --- /dev/null +++ b/pages/Operations - Engineering Holds/widgets/Container1/Text2.json @@ -0,0 +1,52 @@ +{ + "animateLoading": true, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 22, + "dynamicBindingPathList": [ + { + "key": "truncateButtonColor" + }, + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", + "fontSize": "1rem", + "fontStyle": "BOLD", + "isLoading": false, + "isVisible": true, + "key": "eh1txt2k01", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minWidth": 450, + "mobileBottomRow": 22, + "mobileLeftColumn": 10, + "mobileRightColumn": 26, + "mobileTopRow": 18, + "needsErrorInfo": false, + "originalBottomRow": 22, + "originalTopRow": 18, + "overflow": "NONE", + "parentColumnSpace": 3.841796875, + "parentId": "eh1canvas01", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 64, + "shouldTruncate": false, + "text": "Engineering", + "textAlign": "LEFT", + "textColor": "#231F20", + "topRow": 18, + "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "type": "TEXT_WIDGET", + "version": 1, + "widgetId": "eh1txt2eng", + "widgetName": "Text2" +} \ No newline at end of file diff --git a/pages/Operations - Engineering Holds/widgets/Container1/Text3.json b/pages/Operations - Engineering Holds/widgets/Container1/Text3.json new file mode 100644 index 0000000..6995501 --- /dev/null +++ b/pages/Operations - Engineering Holds/widgets/Container1/Text3.json @@ -0,0 +1,52 @@ +{ + "animateLoading": true, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 40, + "dynamicBindingPathList": [ + { + "key": "truncateButtonColor" + }, + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", + "fontSize": "1rem", + "fontStyle": "BOLD", + "isLoading": false, + "isVisible": true, + "key": "eh1txt3k01", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minWidth": 450, + "mobileBottomRow": 40, + "mobileLeftColumn": 10, + "mobileRightColumn": 26, + "mobileTopRow": 36, + "needsErrorInfo": false, + "originalBottomRow": 40, + "originalTopRow": 36, + "overflow": "NONE", + "parentColumnSpace": 3.841796875, + "parentId": "eh1canvas01", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 64, + "shouldTruncate": false, + "text": "Operations", + "textAlign": "LEFT", + "textColor": "#231F20", + "topRow": 36, + "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "type": "TEXT_WIDGET", + "version": 1, + "widgetId": "eh1txt3ops", + "widgetName": "Text3" +} \ No newline at end of file diff --git a/pages/Operations - Engineering Holds/widgets/Heading.json b/pages/Operations - Engineering Holds/widgets/Heading.json new file mode 100644 index 0000000..583475b --- /dev/null +++ b/pages/Operations - Engineering Holds/widgets/Heading.json @@ -0,0 +1,52 @@ +{ + "animateLoading": true, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 5, + "dynamicBindingPathList": [ + { + "key": "truncateButtonColor" + }, + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", + "fontSize": "1.875rem", + "fontStyle": "BOLD", + "isLoading": false, + "isVisible": true, + "key": "eh1hdgkey01", + "leftColumn": 9, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minWidth": 450, + "mobileBottomRow": 5, + "mobileLeftColumn": 1, + "mobileRightColumn": 17, + "mobileTopRow": 1, + "needsErrorInfo": false, + "originalBottomRow": 5, + "originalTopRow": 0, + "overflow": "NONE", + "parentColumnSpace": 25.109375, + "parentId": "0", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 64, + "shouldTruncate": false, + "text": "Operations - Engineering Holds", + "textAlign": "LEFT", + "textColor": "#231F20", + "topRow": 0, + "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "type": "TEXT_WIDGET", + "version": 1, + "widgetId": "eh1heading1", + "widgetName": "Heading" +} \ No newline at end of file diff --git a/pages/Operations - Engineering Holds/widgets/Table1.json b/pages/Operations - Engineering Holds/widgets/Table1.json new file mode 100644 index 0000000..679148e --- /dev/null +++ b/pages/Operations - Engineering Holds/widgets/Table1.json @@ -0,0 +1,280 @@ +{ + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "animateLoading": true, + "borderColor": "#E0DEDE", + "borderRadius": "0.375rem", + "borderWidth": "1", + "bottomRow": 124, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "cachedTableData": {}, + "canFreezeColumn": true, + "childStylesheet": { + "button": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "editActions": { + "discardBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "discardButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "saveBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "saveButtonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "iconButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "menuButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "menuColor": "{{appsmith.theme.colors.primaryColor}}" + } + }, + "columnOrder": [ + "wo", + "descrip", + "user", + "comment", + "date" + ], + "columnUpdatedAt": 1768910474559, + "columnWidthMap": {}, + "compactMode": "SHORT", + "customIsLoading": false, + "customIsLoadingValue": "", + "defaultPageSize": 0, + "defaultSelectedRowIndex": 0, + "defaultSelectedRowIndices": [ + 0 + ], + "delimiter": ",", + "dynamicBindingPathList": [ + { + "key": "accentColor" + }, + { + "key": "boxShadow" + }, + { + "key": "tableData" + }, + { + "key": "primaryColumns.wo.computedValue" + }, + { + "key": "primaryColumns.descrip.computedValue" + }, + { + "key": "primaryColumns.user.computedValue" + }, + { + "key": "primaryColumns.comment.computedValue" + }, + { + "key": "primaryColumns.date.computedValue" + } + ], + "dynamicPropertyPathList": [ + { + "key": "textSize" + } + ], + "dynamicTriggerPathList": [], + "enableClientSideSearch": true, + "endOfData": false, + "flexVerticalAlignment": "start", + "horizontalAlignment": "LEFT", + "inlineEditingSaveOption": "ROW_LEVEL", + "isLoading": false, + "isSortable": true, + "isVisible": true, + "isVisibleDownload": true, + "isVisibleFilters": false, + "isVisiblePagination": true, + "isVisibleSearch": true, + "key": "eh1tblkey01", + "label": "Data", + "leftColumn": 9, + "minWidth": 450, + "mobileBottomRow": 31, + "mobileLeftColumn": 15, + "mobileRightColumn": 64, + "mobileTopRow": 10, + "needsErrorInfo": false, + "originalBottomRow": 67, + "originalTopRow": 5, + "parentColumnSpace": 11.265625, + "parentId": "0", + "parentRowSpace": 10, + "primaryColumns": { + "comment": { + "alias": "comment", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "columnType": "text", + "computedValue": "{{(() => { const tableData = Table1.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"comment\"])) : comment })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "horizontalAlignment": "LEFT", + "id": "comment", + "index": 3, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "comment", + "notation": "standard", + "originalId": "comment", + "sticky": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "date": { + "alias": "date", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "columnType": "date", + "computedValue": "{{(() => { const tableData = Table1.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"date\"])) : date })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "horizontalAlignment": "LEFT", + "id": "date", + "index": 4, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "date", + "notation": "standard", + "originalId": "date", + "sticky": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "descrip": { + "alias": "descrip", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "columnType": "text", + "computedValue": "{{(() => { const tableData = Table1.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"descrip\"])) : descrip })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "horizontalAlignment": "LEFT", + "id": "descrip", + "index": 1, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "descrip", + "notation": "standard", + "originalId": "descrip", + "sticky": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "user": { + "alias": "user", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "columnType": "text", + "computedValue": "{{(() => { const tableData = Table1.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"user\"])) : user })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "horizontalAlignment": "LEFT", + "id": "user", + "index": 2, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "user", + "notation": "standard", + "originalId": "user", + "sticky": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "wo": { + "alias": "wo", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "columnType": "text", + "computedValue": "{{(() => { const tableData = Table1.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"wo\"])) : wo })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "horizontalAlignment": "LEFT", + "id": "wo", + "index": 0, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "wo", + "notation": "standard", + "originalId": "wo", + "sticky": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + } + }, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 64, + "searchKey": "", + "tableData": "{{engineering_holds.data}}", + "textSize": "0.775rem", + "topRow": 5, + "totalRecordsCount": 0, + "type": "TABLE_WIDGET_V2", + "version": 2, + "verticalAlignment": "CENTER", + "widgetId": "eh1table001", + "widgetName": "Table1" +} \ No newline at end of file diff --git a/pages/Operations - Job Drawing Status/Operations - Job Drawing Status.json b/pages/Operations - Job Drawing Status/Operations - Job Drawing Status.json new file mode 100644 index 0000000..921ac99 --- /dev/null +++ b/pages/Operations - Job Drawing Status/Operations - Job Drawing Status.json @@ -0,0 +1,33 @@ +{ + "gitSyncId": "ea31ffe3b6fe44579c5a5898_bbe04d62-d26c-4d50-bd51-3c2bdecf0cd3", + "unpublishedPage": { + "isHidden": false, + "layouts": [ + { + "dsl": { + "backgroundColor": "none", + "bottomRow": 1240, + "canExtend": true, + "containerStyle": "none", + "detachFromLayout": true, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [], + "leftColumn": 0, + "minHeight": 1292, + "parentColumnSpace": 1, + "parentRowSpace": 1, + "rightColumn": 4896, + "snapColumns": 64, + "snapRows": 124, + "topRow": 0, + "type": "CANVAS_WIDGET", + "version": 94, + "widgetId": "0", + "widgetName": "MainContainer" + } + } + ], + "name": "Operations - Job Drawing Status", + "slug": "operations-job-drawing-status" + } +} \ No newline at end of file diff --git a/pages/Operations - Job Drawing Status/queries/job_drawing_status/job_drawing_status.txt b/pages/Operations - Job Drawing Status/queries/job_drawing_status/job_drawing_status.txt new file mode 100644 index 0000000..c642060 --- /dev/null +++ b/pages/Operations - Job Drawing Status/queries/job_drawing_status/job_drawing_status.txt @@ -0,0 +1,39 @@ +WITH ranked AS ( + SELECT + t.*, + ROW_NUMBER() OVER ( + PARTITION BY t.inventortools_drawingpath + ORDER BY t.inventortools_build_date DESC, t.inventortools_id DESC + ) AS rn + FROM mpe.inventortools t +) +SELECT + r.inventortools_id AS "ID", + CONCAT('http://magnafastapi:8000/api/v1/webfrontend/logs/itools/job/', r.inventortools_id) AS "URL", + r.inventortools_drawingpath AS "Drawing Path", + CONCAT(r.inventortools_svn_id, ' (', TO_CHAR(r.inventortools_build_date, 'YY-MM-DD HH24:MI'), ')') AS "SVN", + r.inventortools_user AS "User", + r.inventortools_message AS "Message", + COALESCE(array_length(r.inventortools_unresolvedreferencepaths, 1), 0) AS "Unresolved Count", + COALESCE(array_length(r.inventortools_unresolvedreferencepaths, 1), 0) > 0 AS "Has Unresolved", + CASE + WHEN COALESCE(array_length(r.inventortools_unresolvedreferencepaths, 1), 0) > 0 THEN + array_to_string( + ARRAY ( + SELECT CONCAT( + split_part(regexp_replace(unres_path.path, E'\\\\','/','g'), '/', 1), + '/.../', + regexp_replace(regexp_replace(unres_path.path, E'\\\\','/','g'), '^.*/', '') + ) + FROM unnest(r.inventortools_unresolvedreferencepaths) AS unres_path(path) + ), + '; ' + ) + ELSE + 'No unresolved references' + END AS "Unresolved Links" +FROM ranked r +WHERE r.rn = 1 + AND r.inventortools_message IS NOT NULL + AND r.inventortools_message <> '' +ORDER BY r.inventortools_id DESC \ No newline at end of file diff --git a/pages/Operations - Job Drawing Status/queries/job_drawing_status/metadata.json b/pages/Operations - Job Drawing Status/queries/job_drawing_status/metadata.json new file mode 100644 index 0000000..ca79492 --- /dev/null +++ b/pages/Operations - Job Drawing Status/queries/job_drawing_status/metadata.json @@ -0,0 +1,31 @@ +{ + "gitSyncId": "ea31ffe3b6fe44579c5a5898_e0eadab7-010c-4011-8151-744e28569b7e", + "id": "Operations - Job Drawing Status_job_drawing_status", + "pluginId": "postgres-plugin", + "pluginType": "DB", + "unpublishedAction": { + "actionConfiguration": { + "body": "WITH ranked AS (\n SELECT\n t.*,\n ROW_NUMBER() OVER (\n PARTITION BY t.inventortools_drawingpath\n ORDER BY t.inventortools_build_date DESC, t.inventortools_id DESC\n ) AS rn\n FROM mpe.inventortools t\n)\nSELECT\n r.inventortools_id AS \"ID\",\n CONCAT('http://magnafastapi:8000/api/v1/webfrontend/logs/itools/job/', r.inventortools_id) AS \"URL\",\n r.inventortools_drawingpath AS \"Drawing Path\",\n CONCAT(r.inventortools_svn_id, ' (', TO_CHAR(r.inventortools_build_date, 'YY-MM-DD HH24:MI'), ')') AS \"SVN\",\n r.inventortools_user AS \"User\",\n r.inventortools_message AS \"Message\",\n COALESCE(array_length(r.inventortools_unresolvedreferencepaths, 1), 0) AS \"Unresolved Count\",\n COALESCE(array_length(r.inventortools_unresolvedreferencepaths, 1), 0) > 0 AS \"Has Unresolved\",\n CASE\n WHEN COALESCE(array_length(r.inventortools_unresolvedreferencepaths, 1), 0) > 0 THEN\n array_to_string(\n ARRAY (\n SELECT CONCAT(\n split_part(regexp_replace(unres_path.path, E'\\\\\\\\','/','g'), '/', 1),\n '/.../',\n regexp_replace(regexp_replace(unres_path.path, E'\\\\\\\\','/','g'), '^.*/', '')\n )\n FROM unnest(r.inventortools_unresolvedreferencepaths) AS unres_path(path)\n ),\n '; '\n )\n ELSE\n 'No unresolved references'\n END AS \"Unresolved Links\"\nFROM ranked r\nWHERE r.rn = 1\n AND r.inventortools_message IS NOT NULL\n AND r.inventortools_message <> ''\nORDER BY r.inventortools_id DESC", + "encodeParamsToggle": true, + "paginationType": "NONE", + "pluginSpecifiedTemplates": [ + { + "value": true + } + ], + "timeoutInMillisecond": 10000 + }, + "confirmBeforeExecute": false, + "datasource": { + "id": "xTuple_GoLive", + "isAutoGenerated": false, + "name": "xTuple_GoLive", + "pluginId": "postgres-plugin" + }, + "dynamicBindingPathList": [], + "name": "job_drawing_status", + "pageId": "Operations - Job Drawing Status", + "runBehaviour": "AUTOMATIC", + "userSetOnLoad": false + } +} \ No newline at end of file diff --git a/pages/Operations - Job Drawing Status/widgets/Container1/Button1.json b/pages/Operations - Job Drawing Status/widgets/Container1/Button1.json new file mode 100644 index 0000000..702c4b3 --- /dev/null +++ b/pages/Operations - Job Drawing Status/widgets/Container1/Button1.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 8, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "jd1btn1k01", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 8, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 4, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Sales - Capacity Planning', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 8, + "originalTopRow": 4, + "parentColumnSpace": 3.841796875, + "parentId": "jd1canvas01", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Capacity Planning", + "topRow": 4, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "jd1btn1cap", + "widgetName": "Button1" +} \ No newline at end of file diff --git a/pages/Operations - Job Drawing Status/widgets/Container1/Button1Copy.json b/pages/Operations - Job Drawing Status/widgets/Container1/Button1Copy.json new file mode 100644 index 0000000..5bf8fb6 --- /dev/null +++ b/pages/Operations - Job Drawing Status/widgets/Container1/Button1Copy.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 12, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "jd1btn1k02", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 12, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 8, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Sales - Units Shipped', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 12, + "originalTopRow": 8, + "parentColumnSpace": 3.841796875, + "parentId": "jd1canvas01", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Units Shipped", + "topRow": 8, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "jd1btn1shp", + "widgetName": "Button1Copy" +} \ No newline at end of file diff --git a/pages/Operations - Job Drawing Status/widgets/Container1/Button1Copy2.json b/pages/Operations - Job Drawing Status/widgets/Container1/Button1Copy2.json new file mode 100644 index 0000000..0a85bdc --- /dev/null +++ b/pages/Operations - Job Drawing Status/widgets/Container1/Button1Copy2.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 16, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "jd1btn1k03", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 16, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 12, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Sales - Units Ordered', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 16, + "originalTopRow": 12, + "parentColumnSpace": 3.841796875, + "parentId": "jd1canvas01", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Units Ordered", + "topRow": 12, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "jd1btn1ord", + "widgetName": "Button1Copy2" +} \ No newline at end of file diff --git a/pages/Operations - Job Drawing Status/widgets/Container1/Button2All.json b/pages/Operations - Job Drawing Status/widgets/Container1/Button2All.json new file mode 100644 index 0000000..ebe13c0 --- /dev/null +++ b/pages/Operations - Job Drawing Status/widgets/Container1/Button2All.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 26, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "jd1btn2k01", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 26, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 22, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Pending POs', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 26, + "originalTopRow": 22, + "parentColumnSpace": 3.841796875, + "parentId": "jd1canvas01", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Pending POs", + "topRow": 22, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "jd1btn2pos", + "widgetName": "Button2All" +} \ No newline at end of file diff --git a/pages/Operations - Job Drawing Status/widgets/Container1/Button2Copy.json b/pages/Operations - Job Drawing Status/widgets/Container1/Button2Copy.json new file mode 100644 index 0000000..45fb800 --- /dev/null +++ b/pages/Operations - Job Drawing Status/widgets/Container1/Button2Copy.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 30, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "jd1btn2k02", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 30, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 26, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Pending Revisions', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 30, + "originalTopRow": 26, + "parentColumnSpace": 3.841796875, + "parentId": "jd1canvas01", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Pending Revisions", + "topRow": 26, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "jd1btn2rev", + "widgetName": "Button2Copy" +} \ No newline at end of file diff --git a/pages/Operations - Job Drawing Status/widgets/Container1/Button2Copy2.json b/pages/Operations - Job Drawing Status/widgets/Container1/Button2Copy2.json new file mode 100644 index 0000000..d9e4d8c --- /dev/null +++ b/pages/Operations - Job Drawing Status/widgets/Container1/Button2Copy2.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 34, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "jd1btn2k03", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 34, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 30, + "needsErrorInfo": false, + "onClick": "{{navigateTo('xGen', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 34, + "originalTopRow": 30, + "parentColumnSpace": 3.841796875, + "parentId": "jd1canvas01", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "xGen", + "topRow": 30, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "jd1btn2xgn", + "widgetName": "Button2Copy2" +} \ No newline at end of file diff --git a/pages/Operations - Job Drawing Status/widgets/Container1/Button3.json b/pages/Operations - Job Drawing Status/widgets/Container1/Button3.json new file mode 100644 index 0000000..738aa40 --- /dev/null +++ b/pages/Operations - Job Drawing Status/widgets/Container1/Button3.json @@ -0,0 +1,49 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 44, + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.backgroundColor}}", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [ + { + "key": "buttonColor" + } + ], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "jd1btn3k01", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 44, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 40, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Operations - Job Drawing Status', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 44, + "originalTopRow": 40, + "parentColumnSpace": 3.841796875, + "parentId": "jd1canvas01", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Job Drawing Status", + "topRow": 40, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "jd1btn3jds", + "widgetName": "Button3" +} \ No newline at end of file diff --git a/pages/Operations - Job Drawing Status/widgets/Container1/Button3Copy.json b/pages/Operations - Job Drawing Status/widgets/Container1/Button3Copy.json new file mode 100644 index 0000000..1353c5b --- /dev/null +++ b/pages/Operations - Job Drawing Status/widgets/Container1/Button3Copy.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 48, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "jd1btn3k02", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 48, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 44, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Operations - Engineering Holds', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 48, + "originalTopRow": 44, + "parentColumnSpace": 3.841796875, + "parentId": "jd1canvas01", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Engineering Holds", + "topRow": 44, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "jd1btn3enh", + "widgetName": "Button3Copy" +} \ No newline at end of file diff --git a/pages/Operations - Job Drawing Status/widgets/Container1/Button3Copy2.json b/pages/Operations - Job Drawing Status/widgets/Container1/Button3Copy2.json new file mode 100644 index 0000000..6ad218d --- /dev/null +++ b/pages/Operations - Job Drawing Status/widgets/Container1/Button3Copy2.json @@ -0,0 +1,47 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 52, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicHeight": "FIXED", + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "jd1btn3uik", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minWidth": 120, + "mobileBottomRow": 52, + "mobileLeftColumn": 0, + "mobileRightColumn": 64, + "mobileTopRow": 48, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Operations - Unused Items', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 52, + "originalTopRow": 48, + "parentColumnSpace": 3.841796875, + "parentId": "jd1canvas01", + "parentRowSpace": 10, + "placement": "START", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Unused Items", + "topRow": 48, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "jd1btn3ui", + "widgetName": "Button3Copy2" +} \ No newline at end of file diff --git a/pages/Operations - Job Drawing Status/widgets/Container1/Container1.json b/pages/Operations - Job Drawing Status/widgets/Container1/Container1.json new file mode 100644 index 0000000..97f80b8 --- /dev/null +++ b/pages/Operations - Job Drawing Status/widgets/Container1/Container1.json @@ -0,0 +1,87 @@ +{ + "animateLoading": true, + "backgroundColor": "#FFFFFF", + "borderColor": "#E0DEDE", + "borderRadius": "0px", + "borderWidth": "1", + "bottomRow": 124, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "children": [ + { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 1240, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "canExtend": false, + "containerStyle": "none", + "detachFromLayout": true, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "flexLayers": [], + "isLoading": false, + "isVisible": true, + "key": "xorz42kdhi", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minHeight": 100, + "minWidth": 450, + "mobileBottomRow": 100, + "mobileLeftColumn": 0, + "mobileRightColumn": 132.9375, + "mobileTopRow": 0, + "needsErrorInfo": false, + "parentColumnSpace": 1, + "parentId": "jd1c0ntain", + "parentRowSpace": 1, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 132.9375, + "topRow": 0, + "type": "CANVAS_WIDGET", + "version": 1, + "widgetId": "jd1canvas01", + "widgetName": "Canvas1" + } + ], + "containerStyle": "card", + "dynamicBindingPathList": [ + { + "key": "boxShadow" + } + ], + "dynamicHeight": "FIXED", + "dynamicTriggerPathList": [], + "flexVerticalAlignment": "stretch", + "isCanvas": true, + "isLoading": false, + "isVisible": true, + "key": "36jaq5m9iy", + "leftColumn": 0, + "maxDynamicHeight": 12, + "minDynamicHeight": 10, + "minWidth": 450, + "mobileBottomRow": 10, + "mobileLeftColumn": 0, + "mobileRightColumn": 3, + "mobileTopRow": 0, + "needsErrorInfo": false, + "parentColumnSpace": 44.3125, + "parentId": "0", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 9, + "shouldScrollContents": true, + "topRow": 0, + "type": "CONTAINER_WIDGET", + "version": 1, + "widgetId": "jd1c0ntain", + "widgetName": "Container1" +} \ No newline at end of file diff --git a/pages/Operations - Job Drawing Status/widgets/Container1/Text1.json b/pages/Operations - Job Drawing Status/widgets/Container1/Text1.json new file mode 100644 index 0000000..68e29d0 --- /dev/null +++ b/pages/Operations - Job Drawing Status/widgets/Container1/Text1.json @@ -0,0 +1,52 @@ +{ + "animateLoading": true, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 4, + "dynamicBindingPathList": [ + { + "key": "truncateButtonColor" + }, + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", + "fontSize": "1rem", + "fontStyle": "BOLD", + "isLoading": false, + "isVisible": true, + "key": "jd1txt1k01", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minWidth": 450, + "mobileBottomRow": 6, + "mobileLeftColumn": 10, + "mobileRightColumn": 26, + "mobileTopRow": 2, + "needsErrorInfo": false, + "originalBottomRow": 4, + "originalTopRow": 0, + "overflow": "NONE", + "parentColumnSpace": 3.841796875, + "parentId": "jd1canvas01", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 64, + "shouldTruncate": false, + "text": "Sales", + "textAlign": "LEFT", + "textColor": "#231F20", + "topRow": 0, + "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "type": "TEXT_WIDGET", + "version": 1, + "widgetId": "jd1txt1sal", + "widgetName": "Text1" +} \ No newline at end of file diff --git a/pages/Operations - Job Drawing Status/widgets/Container1/Text2.json b/pages/Operations - Job Drawing Status/widgets/Container1/Text2.json new file mode 100644 index 0000000..1591891 --- /dev/null +++ b/pages/Operations - Job Drawing Status/widgets/Container1/Text2.json @@ -0,0 +1,52 @@ +{ + "animateLoading": true, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 22, + "dynamicBindingPathList": [ + { + "key": "truncateButtonColor" + }, + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", + "fontSize": "1rem", + "fontStyle": "BOLD", + "isLoading": false, + "isVisible": true, + "key": "jd1txt2k01", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minWidth": 450, + "mobileBottomRow": 22, + "mobileLeftColumn": 10, + "mobileRightColumn": 26, + "mobileTopRow": 18, + "needsErrorInfo": false, + "originalBottomRow": 22, + "originalTopRow": 18, + "overflow": "NONE", + "parentColumnSpace": 3.841796875, + "parentId": "jd1canvas01", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 64, + "shouldTruncate": false, + "text": "Engineering", + "textAlign": "LEFT", + "textColor": "#231F20", + "topRow": 18, + "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "type": "TEXT_WIDGET", + "version": 1, + "widgetId": "jd1txt2eng", + "widgetName": "Text2" +} \ No newline at end of file diff --git a/pages/Operations - Job Drawing Status/widgets/Container1/Text3.json b/pages/Operations - Job Drawing Status/widgets/Container1/Text3.json new file mode 100644 index 0000000..7192d4f --- /dev/null +++ b/pages/Operations - Job Drawing Status/widgets/Container1/Text3.json @@ -0,0 +1,52 @@ +{ + "animateLoading": true, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 40, + "dynamicBindingPathList": [ + { + "key": "truncateButtonColor" + }, + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", + "fontSize": "1rem", + "fontStyle": "BOLD", + "isLoading": false, + "isVisible": true, + "key": "jd1txt3k01", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minWidth": 450, + "mobileBottomRow": 40, + "mobileLeftColumn": 10, + "mobileRightColumn": 26, + "mobileTopRow": 36, + "needsErrorInfo": false, + "originalBottomRow": 40, + "originalTopRow": 36, + "overflow": "NONE", + "parentColumnSpace": 3.841796875, + "parentId": "jd1canvas01", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 64, + "shouldTruncate": false, + "text": "Operations", + "textAlign": "LEFT", + "textColor": "#231F20", + "topRow": 36, + "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "type": "TEXT_WIDGET", + "version": 1, + "widgetId": "jd1txt3ops", + "widgetName": "Text3" +} \ No newline at end of file diff --git a/pages/Operations - Job Drawing Status/widgets/Heading.json b/pages/Operations - Job Drawing Status/widgets/Heading.json new file mode 100644 index 0000000..1bc217e --- /dev/null +++ b/pages/Operations - Job Drawing Status/widgets/Heading.json @@ -0,0 +1,52 @@ +{ + "animateLoading": true, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 5, + "dynamicBindingPathList": [ + { + "key": "truncateButtonColor" + }, + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", + "fontSize": "1.875rem", + "fontStyle": "BOLD", + "isLoading": false, + "isVisible": true, + "key": "jd1hdgkey01", + "leftColumn": 9, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minWidth": 450, + "mobileBottomRow": 5, + "mobileLeftColumn": 1, + "mobileRightColumn": 17, + "mobileTopRow": 1, + "needsErrorInfo": false, + "originalBottomRow": 5, + "originalTopRow": 0, + "overflow": "NONE", + "parentColumnSpace": 25.109375, + "parentId": "0", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 64, + "shouldTruncate": false, + "text": "Operations - Job Drawing Status", + "textAlign": "LEFT", + "textColor": "#231F20", + "topRow": 0, + "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "type": "TEXT_WIDGET", + "version": 1, + "widgetId": "jd1heading1", + "widgetName": "Heading" +} \ No newline at end of file diff --git a/pages/Operations - Job Drawing Status/widgets/Table1.json b/pages/Operations - Job Drawing Status/widgets/Table1.json new file mode 100644 index 0000000..c7380e9 --- /dev/null +++ b/pages/Operations - Job Drawing Status/widgets/Table1.json @@ -0,0 +1,420 @@ +{ + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "animateLoading": true, + "borderColor": "#E0DEDE", + "borderRadius": "0.375rem", + "borderWidth": "1", + "bottomRow": 124, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "cachedTableData": {}, + "canFreezeColumn": true, + "childStylesheet": { + "button": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "editActions": { + "discardBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "discardButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "saveBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "saveButtonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "iconButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "menuButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "menuColor": "{{appsmith.theme.colors.primaryColor}}" + } + }, + "columnOrder": [ + "ID", + "URL", + "Drawing_Path", + "SVN", + "User", + "Message", + "Unresolved_Count", + "Has_Unresolved", + "Unresolved_Links" + ], + "columnUpdatedAt": 1768910474559, + "columnWidthMap": {}, + "compactMode": "SHORT", + "customIsLoading": false, + "customIsLoadingValue": "", + "defaultPageSize": 0, + "defaultSelectedRowIndex": 0, + "defaultSelectedRowIndices": [ + 0 + ], + "delimiter": ",", + "dynamicBindingPathList": [ + { + "key": "accentColor" + }, + { + "key": "boxShadow" + }, + { + "key": "tableData" + }, + { + "key": "primaryColumns.ID.computedValue" + }, + { + "key": "primaryColumns.URL.computedValue" + }, + { + "key": "primaryColumns.Drawing_Path.computedValue" + }, + { + "key": "primaryColumns.SVN.computedValue" + }, + { + "key": "primaryColumns.User.computedValue" + }, + { + "key": "primaryColumns.Message.computedValue" + }, + { + "key": "primaryColumns.Unresolved_Count.computedValue" + }, + { + "key": "primaryColumns.Has_Unresolved.computedValue" + }, + { + "key": "primaryColumns.Unresolved_Links.computedValue" + } + ], + "dynamicPropertyPathList": [ + { + "key": "textSize" + } + ], + "dynamicTriggerPathList": [], + "enableClientSideSearch": true, + "endOfData": false, + "flexVerticalAlignment": "start", + "horizontalAlignment": "LEFT", + "inlineEditingSaveOption": "ROW_LEVEL", + "isLoading": false, + "isSortable": true, + "isVisible": true, + "isVisibleDownload": true, + "isVisibleFilters": false, + "isVisiblePagination": true, + "isVisibleSearch": true, + "key": "jd1tblkey01", + "label": "Data", + "leftColumn": 9, + "minWidth": 450, + "mobileBottomRow": 31, + "mobileLeftColumn": 15, + "mobileRightColumn": 64, + "mobileTopRow": 10, + "needsErrorInfo": false, + "originalBottomRow": 67, + "originalTopRow": 5, + "parentColumnSpace": 11.265625, + "parentId": "0", + "parentRowSpace": 10, + "primaryColumns": { + "Drawing_Path": { + "alias": "Drawing Path", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "columnType": "text", + "computedValue": "{{(() => { const tableData = Table1.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"Drawing Path\"])) : Drawing_Path })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "horizontalAlignment": "LEFT", + "id": "Drawing_Path", + "index": 2, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "Drawing Path", + "notation": "standard", + "originalId": "Drawing Path", + "sticky": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "Has_Unresolved": { + "alias": "Has Unresolved", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "columnType": "text", + "computedValue": "{{(() => { const tableData = Table1.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"Has Unresolved\"])) : Has_Unresolved })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "horizontalAlignment": "LEFT", + "id": "Has_Unresolved", + "index": 7, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "Has Unresolved", + "notation": "standard", + "originalId": "Has Unresolved", + "sticky": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "ID": { + "alias": "ID", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "columnType": "number", + "computedValue": "{{(() => { const tableData = Table1.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"ID\"])) : ID })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "horizontalAlignment": "LEFT", + "id": "ID", + "index": 0, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "ID", + "notation": "standard", + "originalId": "ID", + "sticky": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "Message": { + "alias": "Message", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "columnType": "text", + "computedValue": "{{(() => { const tableData = Table1.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"Message\"])) : Message })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "horizontalAlignment": "LEFT", + "id": "Message", + "index": 5, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "Message", + "notation": "standard", + "originalId": "Message", + "sticky": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "SVN": { + "alias": "SVN", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "columnType": "text", + "computedValue": "{{(() => { const tableData = Table1.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"SVN\"])) : SVN })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "horizontalAlignment": "LEFT", + "id": "SVN", + "index": 3, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "SVN", + "notation": "standard", + "originalId": "SVN", + "sticky": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "URL": { + "alias": "URL", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "columnType": "url", + "computedValue": "{{(() => { const tableData = Table1.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"URL\"])) : URL })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "horizontalAlignment": "LEFT", + "id": "URL", + "index": 1, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "URL", + "notation": "standard", + "originalId": "URL", + "sticky": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "Unresolved_Count": { + "alias": "Unresolved Count", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "columnType": "number", + "computedValue": "{{(() => { const tableData = Table1.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"Unresolved Count\"])) : Unresolved_Count })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "horizontalAlignment": "LEFT", + "id": "Unresolved_Count", + "index": 6, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "Unresolved Count", + "notation": "standard", + "originalId": "Unresolved Count", + "sticky": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "Unresolved_Links": { + "alias": "Unresolved Links", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "columnType": "text", + "computedValue": "{{(() => { const tableData = Table1.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"Unresolved Links\"])) : Unresolved_Links })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "horizontalAlignment": "LEFT", + "id": "Unresolved_Links", + "index": 8, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "Unresolved Links", + "notation": "standard", + "originalId": "Unresolved Links", + "sticky": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "User": { + "alias": "User", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "columnType": "text", + "computedValue": "{{(() => { const tableData = Table1.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"User\"])) : User })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "horizontalAlignment": "LEFT", + "id": "User", + "index": 4, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "User", + "notation": "standard", + "originalId": "User", + "sticky": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + } + }, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 64, + "searchKey": "", + "tableData": "{{job_drawing_status.data}}", + "textSize": "0.775rem", + "topRow": 5, + "totalRecordsCount": 0, + "type": "TABLE_WIDGET_V2", + "version": 2, + "verticalAlignment": "CENTER", + "widgetId": "jd1table001", + "widgetName": "Table1" +} \ No newline at end of file diff --git a/pages/Operations - Unused Items/Operations - Unused Items.json b/pages/Operations - Unused Items/Operations - Unused Items.json new file mode 100644 index 0000000..8a64d4f --- /dev/null +++ b/pages/Operations - Unused Items/Operations - Unused Items.json @@ -0,0 +1,33 @@ +{ + "gitSyncId": "11976947d24e48cf90c738f1_5a55732a-e697-4e41-8144-81e3451d348c", + "unpublishedPage": { + "isHidden": false, + "layouts": [ + { + "dsl": { + "backgroundColor": "none", + "bottomRow": 1240, + "canExtend": true, + "containerStyle": "none", + "detachFromLayout": true, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [], + "leftColumn": 0, + "minHeight": 1292, + "parentColumnSpace": 1, + "parentRowSpace": 1, + "rightColumn": 4896, + "snapColumns": 64, + "snapRows": 124, + "topRow": 0, + "type": "CANVAS_WIDGET", + "version": 94, + "widgetId": "0", + "widgetName": "MainContainer" + } + } + ], + "name": "Operations - Unused Items", + "slug": "operations-unused-items" + } +} \ No newline at end of file diff --git a/pages/Operations - Unused Items/queries/unused_items/metadata.json b/pages/Operations - Unused Items/queries/unused_items/metadata.json new file mode 100644 index 0000000..623ed7c --- /dev/null +++ b/pages/Operations - Unused Items/queries/unused_items/metadata.json @@ -0,0 +1,35 @@ +{ + "gitSyncId": "11976947d24e48cf90c738f1_c8a3dcce-d31d-42fe-9aa7-7773bd28f1d9", + "id": "Operations - Unused Items_unused_items", + "pluginId": "postgres-plugin", + "pluginType": "DB", + "unpublishedAction": { + "actionConfiguration": { + "body": "SELECT\n i.item_number AS \"Item Number\",\n COALESCE(NULLIF(i.item_descrip1, ''), i.item_descrip2) AS \"Description\",\n CASE i.item_type\n WHEN 'P' THEN 'Purchased'\n WHEN 'M' THEN 'Manufactured'\n WHEN 'R' THEN 'Reference'\n WHEN 'T' THEN 'Tooling'\n WHEN 'O' THEN 'Outside Process'\n WHEN 'B' THEN 'Breeder'\n WHEN 'C' THEN 'Co-Product'\n WHEN 'F' THEN 'Phantom'\n ELSE i.item_type\n END AS \"Item Type\",\n clc.classcode_code AS \"Class Code\",\n COALESCE(bom_count.num_boms, 0) AS \"BOMs Used In\",\n COALESCE(qoh.qty_on_hand, 0) AS \"QOH\",\n cc.comment_user AS \"Created By\",\n COALESCE(i.item_created, cc.comment_date)::date AS \"Date Created\",\n last_txn.last_transaction_date::date AS \"Last Transaction\",\n (CURRENT_DATE - COALESCE(last_txn.last_transaction_date, i.item_created, cc.comment_date)::date) AS \"Days Unused\"\nFROM item i\nLEFT JOIN classcode clc ON clc.classcode_id = i.item_classcode_id\nLEFT JOIN (\n SELECT bomitem_item_id, COUNT(DISTINCT bomitem_parent_item_id) AS num_boms\n FROM bomitem\n GROUP BY bomitem_item_id\n) bom_count ON bom_count.bomitem_item_id = i.item_id\nLEFT JOIN (\n SELECT itemsite_item_id, SUM(itemsite_qtyonhand) AS qty_on_hand\n FROM itemsite\n GROUP BY itemsite_item_id\n) qoh ON qoh.itemsite_item_id = i.item_id\nLEFT JOIN comment cc\n ON cc.comment_source_id = i.item_id\n AND cc.comment_source = 'I'\n AND cc.comment_text = 'Created'\nLEFT JOIN (\n SELECT\n isite.itemsite_item_id,\n MAX(ih.invhist_transdate) AS last_transaction_date\n FROM itemsite isite\n JOIN invhist ih ON ih.invhist_itemsite_id = isite.itemsite_id\n GROUP BY isite.itemsite_item_id\n) last_txn ON last_txn.itemsite_item_id = i.item_id\nWHERE i.item_active\n AND (CURRENT_DATE - COALESCE(last_txn.last_transaction_date, i.item_created, cc.comment_date)::date)\n >= '{{UnusedDays.text}}'::int\nORDER BY \"Days Unused\" DESC\n", + "encodeParamsToggle": true, + "paginationType": "NONE", + "pluginSpecifiedTemplates": [ + { + "value": true + } + ], + "timeoutInMillisecond": 30000 + }, + "confirmBeforeExecute": false, + "datasource": { + "id": "xTuple_GoLive", + "isAutoGenerated": false, + "name": "xTuple_GoLive", + "pluginId": "postgres-plugin" + }, + "dynamicBindingPathList": [ + { + "key": "body" + } + ], + "name": "unused_items", + "pageId": "Operations - Unused Items", + "runBehaviour": "AUTOMATIC", + "userSetOnLoad": false + } +} \ No newline at end of file diff --git a/pages/Operations - Unused Items/queries/unused_items/unused_items.txt b/pages/Operations - Unused Items/queries/unused_items/unused_items.txt new file mode 100644 index 0000000..5423c6b --- /dev/null +++ b/pages/Operations - Unused Items/queries/unused_items/unused_items.txt @@ -0,0 +1,49 @@ +SELECT + i.item_number AS "Item Number", + COALESCE(NULLIF(i.item_descrip1, ''), i.item_descrip2) AS "Description", + CASE i.item_type + WHEN 'P' THEN 'Purchased' + WHEN 'M' THEN 'Manufactured' + WHEN 'R' THEN 'Reference' + WHEN 'T' THEN 'Tooling' + WHEN 'O' THEN 'Outside Process' + WHEN 'B' THEN 'Breeder' + WHEN 'C' THEN 'Co-Product' + WHEN 'F' THEN 'Phantom' + ELSE i.item_type + END AS "Item Type", + clc.classcode_code AS "Class Code", + COALESCE(bom_count.num_boms, 0) AS "BOMs Used In", + COALESCE(qoh.qty_on_hand, 0) AS "QOH", + cc.comment_user AS "Created By", + COALESCE(i.item_created, cc.comment_date)::date AS "Date Created", + last_txn.last_transaction_date::date AS "Last Transaction", + (CURRENT_DATE - COALESCE(last_txn.last_transaction_date, i.item_created, cc.comment_date)::date) AS "Days Unused" +FROM item i +LEFT JOIN classcode clc ON clc.classcode_id = i.item_classcode_id +LEFT JOIN ( + SELECT bomitem_item_id, COUNT(DISTINCT bomitem_parent_item_id) AS num_boms + FROM bomitem + GROUP BY bomitem_item_id +) bom_count ON bom_count.bomitem_item_id = i.item_id +LEFT JOIN ( + SELECT itemsite_item_id, SUM(itemsite_qtyonhand) AS qty_on_hand + FROM itemsite + GROUP BY itemsite_item_id +) qoh ON qoh.itemsite_item_id = i.item_id +LEFT JOIN comment cc + ON cc.comment_source_id = i.item_id + AND cc.comment_source = 'I' + AND cc.comment_text = 'Created' +LEFT JOIN ( + SELECT + isite.itemsite_item_id, + MAX(ih.invhist_transdate) AS last_transaction_date + FROM itemsite isite + JOIN invhist ih ON ih.invhist_itemsite_id = isite.itemsite_id + GROUP BY isite.itemsite_item_id +) last_txn ON last_txn.itemsite_item_id = i.item_id +WHERE i.item_active + AND (CURRENT_DATE - COALESCE(last_txn.last_transaction_date, i.item_created, cc.comment_date)::date) + >= '{{UnusedDays.text}}'::int +ORDER BY "Days Unused" DESC diff --git a/pages/Operations - Unused Items/widgets/Container1/Button1.json b/pages/Operations - Unused Items/widgets/Container1/Button1.json new file mode 100644 index 0000000..d84326a --- /dev/null +++ b/pages/Operations - Unused Items/widgets/Container1/Button1.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 8, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "ui1btn1k01", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 8, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 4, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Sales - Capacity Planning', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 8, + "originalTopRow": 4, + "parentColumnSpace": 3.841796875, + "parentId": "ui1canvas01", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Capacity Planning", + "topRow": 4, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "ui1btn1cap", + "widgetName": "Button1" +} \ No newline at end of file diff --git a/pages/Operations - Unused Items/widgets/Container1/Button1Copy.json b/pages/Operations - Unused Items/widgets/Container1/Button1Copy.json new file mode 100644 index 0000000..491f897 --- /dev/null +++ b/pages/Operations - Unused Items/widgets/Container1/Button1Copy.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 12, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "ui1btn1k02", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 12, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 8, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Sales - Units Shipped', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 12, + "originalTopRow": 8, + "parentColumnSpace": 3.841796875, + "parentId": "ui1canvas01", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Units Shipped", + "topRow": 8, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "ui1btn1shp", + "widgetName": "Button1Copy" +} \ No newline at end of file diff --git a/pages/Operations - Unused Items/widgets/Container1/Button1Copy2.json b/pages/Operations - Unused Items/widgets/Container1/Button1Copy2.json new file mode 100644 index 0000000..f5dae19 --- /dev/null +++ b/pages/Operations - Unused Items/widgets/Container1/Button1Copy2.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 16, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "ui1btn1k03", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 16, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 12, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Sales - Units Ordered', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 16, + "originalTopRow": 12, + "parentColumnSpace": 3.841796875, + "parentId": "ui1canvas01", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Units Ordered", + "topRow": 12, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "ui1btn1ord", + "widgetName": "Button1Copy2" +} \ No newline at end of file diff --git a/pages/Operations - Unused Items/widgets/Container1/Button2All.json b/pages/Operations - Unused Items/widgets/Container1/Button2All.json new file mode 100644 index 0000000..d515277 --- /dev/null +++ b/pages/Operations - Unused Items/widgets/Container1/Button2All.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 26, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "ui1btn2k01", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 26, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 22, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Pending POs', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 26, + "originalTopRow": 22, + "parentColumnSpace": 3.841796875, + "parentId": "ui1canvas01", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Pending POs", + "topRow": 22, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "ui1btn2pos", + "widgetName": "Button2All" +} \ No newline at end of file diff --git a/pages/Operations - Unused Items/widgets/Container1/Button2Copy.json b/pages/Operations - Unused Items/widgets/Container1/Button2Copy.json new file mode 100644 index 0000000..d0bbe47 --- /dev/null +++ b/pages/Operations - Unused Items/widgets/Container1/Button2Copy.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 30, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "ui1btn2k02", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 30, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 26, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Pending Revisions', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 30, + "originalTopRow": 26, + "parentColumnSpace": 3.841796875, + "parentId": "ui1canvas01", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Pending Revisions", + "topRow": 26, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "ui1btn2rev", + "widgetName": "Button2Copy" +} \ No newline at end of file diff --git a/pages/Operations - Unused Items/widgets/Container1/Button2Copy2.json b/pages/Operations - Unused Items/widgets/Container1/Button2Copy2.json new file mode 100644 index 0000000..3e1f2e1 --- /dev/null +++ b/pages/Operations - Unused Items/widgets/Container1/Button2Copy2.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 34, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "ui1btn2k03", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 34, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 30, + "needsErrorInfo": false, + "onClick": "{{navigateTo('xGen', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 34, + "originalTopRow": 30, + "parentColumnSpace": 3.841796875, + "parentId": "ui1canvas01", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "xGen", + "topRow": 30, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "ui1btn2xgn", + "widgetName": "Button2Copy2" +} \ No newline at end of file diff --git a/pages/Operations - Unused Items/widgets/Container1/Button3.json b/pages/Operations - Unused Items/widgets/Container1/Button3.json new file mode 100644 index 0000000..5c70cdb --- /dev/null +++ b/pages/Operations - Unused Items/widgets/Container1/Button3.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 44, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "ui1btn3k01", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 44, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 40, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Operations - Job Drawing Status', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 44, + "originalTopRow": 40, + "parentColumnSpace": 3.841796875, + "parentId": "ui1canvas01", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Job Drawing Status", + "topRow": 40, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "ui1btn3jds", + "widgetName": "Button3" +} \ No newline at end of file diff --git a/pages/Operations - Unused Items/widgets/Container1/Button3Copy.json b/pages/Operations - Unused Items/widgets/Container1/Button3Copy.json new file mode 100644 index 0000000..b60fe29 --- /dev/null +++ b/pages/Operations - Unused Items/widgets/Container1/Button3Copy.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 48, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "ui1btn3k02", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 48, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 44, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Operations - Engineering Holds', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 48, + "originalTopRow": 44, + "parentColumnSpace": 3.841796875, + "parentId": "ui1canvas01", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Engineering Holds", + "topRow": 44, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "ui1btn3enh", + "widgetName": "Button3Copy" +} \ No newline at end of file diff --git a/pages/Operations - Unused Items/widgets/Container1/Button3Copy2.json b/pages/Operations - Unused Items/widgets/Container1/Button3Copy2.json new file mode 100644 index 0000000..4e6584b --- /dev/null +++ b/pages/Operations - Unused Items/widgets/Container1/Button3Copy2.json @@ -0,0 +1,48 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 52, + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.backgroundColor}}", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [ + { + "key": "buttonColor" + } + ], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "ui1btn3uik", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 52, + "mobileLeftColumn": 0, + "mobileRightColumn": 64, + "mobileTopRow": 48, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Operations - Unused Items', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 52, + "originalTopRow": 48, + "parentColumnSpace": 3.841796875, + "parentId": "ui1canvas01", + "parentRowSpace": 10, + "placement": "START", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Unused Items", + "topRow": 48, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "ui1btn3ui", + "widgetName": "Button3Copy2" +} \ No newline at end of file diff --git a/pages/Operations - Unused Items/widgets/Container1/Container1.json b/pages/Operations - Unused Items/widgets/Container1/Container1.json new file mode 100644 index 0000000..3511e2c --- /dev/null +++ b/pages/Operations - Unused Items/widgets/Container1/Container1.json @@ -0,0 +1,87 @@ +{ + "animateLoading": true, + "backgroundColor": "#FFFFFF", + "borderColor": "#E0DEDE", + "borderRadius": "0px", + "borderWidth": "1", + "bottomRow": 124, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "children": [ + { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 1240, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "canExtend": false, + "containerStyle": "none", + "detachFromLayout": true, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "flexLayers": [], + "isLoading": false, + "isVisible": true, + "key": "xorz42kdhi", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minHeight": 100, + "minWidth": 450, + "mobileBottomRow": 100, + "mobileLeftColumn": 0, + "mobileRightColumn": 132.9375, + "mobileTopRow": 0, + "needsErrorInfo": false, + "parentColumnSpace": 1, + "parentId": "ui1c0ntain", + "parentRowSpace": 1, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 132.9375, + "topRow": 0, + "type": "CANVAS_WIDGET", + "version": 1, + "widgetId": "ui1canvas01", + "widgetName": "Canvas1" + } + ], + "containerStyle": "card", + "dynamicBindingPathList": [ + { + "key": "boxShadow" + } + ], + "dynamicHeight": "FIXED", + "dynamicTriggerPathList": [], + "flexVerticalAlignment": "stretch", + "isCanvas": true, + "isLoading": false, + "isVisible": true, + "key": "36jaq5m9iy", + "leftColumn": 0, + "maxDynamicHeight": 12, + "minDynamicHeight": 10, + "minWidth": 450, + "mobileBottomRow": 10, + "mobileLeftColumn": 0, + "mobileRightColumn": 3, + "mobileTopRow": 0, + "needsErrorInfo": false, + "parentColumnSpace": 44.3125, + "parentId": "0", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 9, + "shouldScrollContents": true, + "topRow": 0, + "type": "CONTAINER_WIDGET", + "version": 1, + "widgetId": "ui1c0ntain", + "widgetName": "Container1" +} \ No newline at end of file diff --git a/pages/Operations - Unused Items/widgets/Container1/Text1.json b/pages/Operations - Unused Items/widgets/Container1/Text1.json new file mode 100644 index 0000000..86e6e30 --- /dev/null +++ b/pages/Operations - Unused Items/widgets/Container1/Text1.json @@ -0,0 +1,52 @@ +{ + "animateLoading": true, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 4, + "dynamicBindingPathList": [ + { + "key": "truncateButtonColor" + }, + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", + "fontSize": "1rem", + "fontStyle": "BOLD", + "isLoading": false, + "isVisible": true, + "key": "ui1txt1k01", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minWidth": 450, + "mobileBottomRow": 6, + "mobileLeftColumn": 10, + "mobileRightColumn": 26, + "mobileTopRow": 2, + "needsErrorInfo": false, + "originalBottomRow": 4, + "originalTopRow": 0, + "overflow": "NONE", + "parentColumnSpace": 3.841796875, + "parentId": "ui1canvas01", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 64, + "shouldTruncate": false, + "text": "Sales", + "textAlign": "LEFT", + "textColor": "#231F20", + "topRow": 0, + "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "type": "TEXT_WIDGET", + "version": 1, + "widgetId": "ui1txt1sal", + "widgetName": "Text1" +} \ No newline at end of file diff --git a/pages/Operations - Unused Items/widgets/Container1/Text2.json b/pages/Operations - Unused Items/widgets/Container1/Text2.json new file mode 100644 index 0000000..f26b3b5 --- /dev/null +++ b/pages/Operations - Unused Items/widgets/Container1/Text2.json @@ -0,0 +1,52 @@ +{ + "animateLoading": true, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 22, + "dynamicBindingPathList": [ + { + "key": "truncateButtonColor" + }, + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", + "fontSize": "1rem", + "fontStyle": "BOLD", + "isLoading": false, + "isVisible": true, + "key": "ui1txt2k01", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minWidth": 450, + "mobileBottomRow": 22, + "mobileLeftColumn": 10, + "mobileRightColumn": 26, + "mobileTopRow": 18, + "needsErrorInfo": false, + "originalBottomRow": 22, + "originalTopRow": 18, + "overflow": "NONE", + "parentColumnSpace": 3.841796875, + "parentId": "ui1canvas01", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 64, + "shouldTruncate": false, + "text": "Engineering", + "textAlign": "LEFT", + "textColor": "#231F20", + "topRow": 18, + "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "type": "TEXT_WIDGET", + "version": 1, + "widgetId": "ui1txt2eng", + "widgetName": "Text2" +} \ No newline at end of file diff --git a/pages/Operations - Unused Items/widgets/Container1/Text3.json b/pages/Operations - Unused Items/widgets/Container1/Text3.json new file mode 100644 index 0000000..ef4ca38 --- /dev/null +++ b/pages/Operations - Unused Items/widgets/Container1/Text3.json @@ -0,0 +1,52 @@ +{ + "animateLoading": true, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 40, + "dynamicBindingPathList": [ + { + "key": "truncateButtonColor" + }, + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", + "fontSize": "1rem", + "fontStyle": "BOLD", + "isLoading": false, + "isVisible": true, + "key": "ui1txt3k01", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minWidth": 450, + "mobileBottomRow": 40, + "mobileLeftColumn": 10, + "mobileRightColumn": 26, + "mobileTopRow": 36, + "needsErrorInfo": false, + "originalBottomRow": 40, + "originalTopRow": 36, + "overflow": "NONE", + "parentColumnSpace": 3.841796875, + "parentId": "ui1canvas01", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 64, + "shouldTruncate": false, + "text": "Operations", + "textAlign": "LEFT", + "textColor": "#231F20", + "topRow": 36, + "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "type": "TEXT_WIDGET", + "version": 1, + "widgetId": "ui1txt3ops", + "widgetName": "Text3" +} \ No newline at end of file diff --git a/pages/Operations - Unused Items/widgets/Heading.json b/pages/Operations - Unused Items/widgets/Heading.json new file mode 100644 index 0000000..d0de735 --- /dev/null +++ b/pages/Operations - Unused Items/widgets/Heading.json @@ -0,0 +1,52 @@ +{ + "animateLoading": true, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 5, + "dynamicBindingPathList": [ + { + "key": "truncateButtonColor" + }, + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", + "fontSize": "1.875rem", + "fontStyle": "BOLD", + "isLoading": false, + "isVisible": true, + "key": "ui1hdgkey01", + "leftColumn": 9, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minWidth": 450, + "mobileBottomRow": 5, + "mobileLeftColumn": 1, + "mobileRightColumn": 17, + "mobileTopRow": 1, + "needsErrorInfo": false, + "originalBottomRow": 5, + "originalTopRow": 0, + "overflow": "NONE", + "parentColumnSpace": 25.109375, + "parentId": "0", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 64, + "shouldTruncate": false, + "text": "Operations - Unused Items", + "textAlign": "LEFT", + "textColor": "#231F20", + "topRow": 0, + "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "type": "TEXT_WIDGET", + "version": 1, + "widgetId": "ui1heading1", + "widgetName": "Heading" +} \ No newline at end of file diff --git a/pages/Operations - Unused Items/widgets/Table1.json b/pages/Operations - Unused Items/widgets/Table1.json new file mode 100644 index 0000000..7d3ea3e --- /dev/null +++ b/pages/Operations - Unused Items/widgets/Table1.json @@ -0,0 +1,455 @@ +{ + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "animateLoading": true, + "borderColor": "#E0DEDE", + "borderRadius": "0.375rem", + "borderWidth": "1", + "bottomRow": 124, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "cachedTableData": {}, + "canFreezeColumn": true, + "childStylesheet": { + "button": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "editActions": { + "discardBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "discardButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "saveBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "saveButtonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "iconButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "menuButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "menuColor": "{{appsmith.theme.colors.primaryColor}}" + } + }, + "columnOrder": [ + "Item Number", + "Description", + "Item Type", + "Class Code", + "BOMs Used In", + "QOH", + "Created By", + "Date Created", + "Last Transaction", + "Days Unused" + ], + "columnUpdatedAt": 1768910474559, + "columnWidthMap": {}, + "compactMode": "SHORT", + "customIsLoading": false, + "customIsLoadingValue": "", + "defaultPageSize": 0, + "defaultSelectedRowIndex": 0, + "defaultSelectedRowIndices": [ + 0 + ], + "delimiter": ",", + "dynamicBindingPathList": [ + { + "key": "accentColor" + }, + { + "key": "boxShadow" + }, + { + "key": "tableData" + }, + { + "key": "primaryColumns.Item Number.computedValue" + }, + { + "key": "primaryColumns.Description.computedValue" + }, + { + "key": "primaryColumns.Item Type.computedValue" + }, + { + "key": "primaryColumns.Class Code.computedValue" + }, + { + "key": "primaryColumns.BOMs Used In.computedValue" + }, + { + "key": "primaryColumns.QOH.computedValue" + }, + { + "key": "primaryColumns.Created By.computedValue" + }, + { + "key": "primaryColumns.Date Created.computedValue" + }, + { + "key": "primaryColumns.Last Transaction.computedValue" + }, + { + "key": "primaryColumns.Days Unused.computedValue" + } + ], + "dynamicPropertyPathList": [ + { + "key": "textSize" + } + ], + "dynamicTriggerPathList": [], + "enableClientSideSearch": true, + "endOfData": false, + "flexVerticalAlignment": "start", + "horizontalAlignment": "LEFT", + "inlineEditingSaveOption": "ROW_LEVEL", + "isLoading": false, + "isSortable": true, + "isVisible": true, + "isVisibleDownload": true, + "isVisibleFilters": true, + "isVisiblePagination": true, + "isVisibleSearch": true, + "key": "ui1tblkey01", + "label": "Data", + "leftColumn": 9, + "minWidth": 450, + "mobileBottomRow": 31, + "mobileLeftColumn": 15, + "mobileRightColumn": 64, + "mobileTopRow": 10, + "needsErrorInfo": false, + "originalBottomRow": 67, + "originalTopRow": 12, + "parentColumnSpace": 11.265625, + "parentId": "0", + "parentRowSpace": 10, + "primaryColumns": { + "BOMs Used In": { + "alias": "BOMs Used In", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "columnType": "number", + "computedValue": "{{(() => { const tableData = Table1.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"BOMs Used In\"])) : [] })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "horizontalAlignment": "LEFT", + "id": "BOMs Used In", + "index": 4, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "BOMs Used In", + "notation": "standard", + "originalId": "BOMs Used In", + "sticky": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "Class Code": { + "alias": "Class Code", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "columnType": "text", + "computedValue": "{{(() => { const tableData = Table1.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"Class Code\"])) : [] })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "horizontalAlignment": "LEFT", + "id": "Class Code", + "index": 3, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "Class Code", + "notation": "standard", + "originalId": "Class Code", + "sticky": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "Created By": { + "alias": "Created By", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "columnType": "text", + "computedValue": "{{(() => { const tableData = Table1.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"Created By\"])) : [] })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "horizontalAlignment": "LEFT", + "id": "Created By", + "index": 6, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "Created By", + "notation": "standard", + "originalId": "Created By", + "sticky": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "Date Created": { + "alias": "Date Created", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "columnType": "date", + "computedValue": "{{(() => { const tableData = Table1.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"Date Created\"])) : [] })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "horizontalAlignment": "LEFT", + "id": "Date Created", + "index": 7, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "Date Created", + "notation": "standard", + "originalId": "Date Created", + "sticky": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "Days Unused": { + "alias": "Days Unused", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "columnType": "number", + "computedValue": "{{(() => { const tableData = Table1.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"Days Unused\"])) : [] })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "horizontalAlignment": "LEFT", + "id": "Days Unused", + "index": 9, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "Days Unused", + "notation": "standard", + "originalId": "Days Unused", + "sticky": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "Description": { + "alias": "Description", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "columnType": "text", + "computedValue": "{{(() => { const tableData = Table1.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"Description\"])) : [] })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "horizontalAlignment": "LEFT", + "id": "Description", + "index": 1, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "Description", + "notation": "standard", + "originalId": "Description", + "sticky": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "Item Number": { + "alias": "Item Number", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "columnType": "text", + "computedValue": "{{(() => { const tableData = Table1.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"Item Number\"])) : [] })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "horizontalAlignment": "LEFT", + "id": "Item Number", + "index": 0, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "Item Number", + "notation": "standard", + "originalId": "Item Number", + "sticky": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "Item Type": { + "alias": "Item Type", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "columnType": "text", + "computedValue": "{{(() => { const tableData = Table1.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"Item Type\"])) : [] })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "horizontalAlignment": "LEFT", + "id": "Item Type", + "index": 2, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "Item Type", + "notation": "standard", + "originalId": "Item Type", + "sticky": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "Last Transaction": { + "alias": "Last Transaction", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "columnType": "date", + "computedValue": "{{(() => { const tableData = Table1.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"Last Transaction\"])) : [] })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "horizontalAlignment": "LEFT", + "id": "Last Transaction", + "index": 8, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "Last Transaction", + "notation": "standard", + "originalId": "Last Transaction", + "sticky": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "QOH": { + "alias": "QOH", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "columnType": "number", + "computedValue": "{{(() => { const tableData = Table1.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"QOH\"])) : [] })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "horizontalAlignment": "LEFT", + "id": "QOH", + "index": 5, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "QOH", + "notation": "standard", + "originalId": "QOH", + "sticky": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + } + }, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 64, + "searchKey": "", + "tableData": "{{unused_items.data}}", + "textSize": "0.775rem", + "topRow": 12, + "totalRecordsCount": 0, + "type": "TABLE_WIDGET_V2", + "version": 2, + "verticalAlignment": "CENTER", + "widgetId": "ui1table001", + "widgetName": "Table1" +} \ No newline at end of file diff --git a/pages/Operations - Unused Items/widgets/UnusedDays.json b/pages/Operations - Unused Items/widgets/UnusedDays.json new file mode 100644 index 0000000..61d8693 --- /dev/null +++ b/pages/Operations - Unused Items/widgets/UnusedDays.json @@ -0,0 +1,56 @@ +{ + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "animateLoading": true, + "autoFocus": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 12, + "boxShadow": "none", + "defaultText": "365", + "dynamicBindingPathList": [ + { + "key": "accentColor" + }, + { + "key": "borderRadius" + } + ], + "dynamicHeight": "FIXED", + "dynamicTriggerPathList": [], + "iconAlign": "left", + "inputType": "NUMBER", + "isDisabled": false, + "isLoading": false, + "isRequired": false, + "isSpellCheck": false, + "isVisible": true, + "key": "ui1inputkey1", + "label": "Unused Days", + "labelAlignment": "left", + "labelPosition": "Top", + "labelTextSize": "0.875rem", + "labelWidth": 5, + "leftColumn": 9, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minWidth": 450, + "mobileBottomRow": 8, + "mobileLeftColumn": 1, + "mobileRightColumn": 21, + "mobileTopRow": 1, + "needsErrorInfo": false, + "originalBottomRow": 12, + "originalTopRow": 5, + "parentColumnSpace": 25.109375, + "parentId": "0", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "resetOnSubmit": false, + "responsiveBehavior": "fill", + "rightColumn": 18, + "shouldAllowAutofill": false, + "topRow": 5, + "type": "INPUT_WIDGET_V2", + "version": 2, + "widgetId": "ui1unusddays", + "widgetName": "UnusedDays" +} \ No newline at end of file diff --git a/pages/Pending POs/Pending POs.json b/pages/Pending POs/Pending POs.json new file mode 100644 index 0000000..eba2d61 --- /dev/null +++ b/pages/Pending POs/Pending POs.json @@ -0,0 +1,33 @@ +{ + "gitSyncId": "3c80e1fdb2304c28beaba450_200d3bba-408d-4733-8a3e-5b08b11649b3", + "unpublishedPage": { + "isHidden": false, + "layouts": [ + { + "dsl": { + "backgroundColor": "none", + "bottomRow": 1240, + "canExtend": true, + "containerStyle": "none", + "detachFromLayout": true, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [], + "leftColumn": 0, + "minHeight": 1292, + "parentColumnSpace": 1, + "parentRowSpace": 1, + "rightColumn": 4896, + "snapColumns": 64, + "snapRows": 124, + "topRow": 0, + "type": "CANVAS_WIDGET", + "version": 94, + "widgetId": "0", + "widgetName": "MainContainer" + } + } + ], + "name": "Pending POs", + "slug": "pending-pos-all" + } +} \ No newline at end of file diff --git a/pages/Pending POs/queries/pending_pos_all/metadata.json b/pages/Pending POs/queries/pending_pos_all/metadata.json new file mode 100644 index 0000000..412337a --- /dev/null +++ b/pages/Pending POs/queries/pending_pos_all/metadata.json @@ -0,0 +1,31 @@ +{ + "gitSyncId": "3c80e1fdb2304c28beaba450_db5d4d8c-ed8e-49e7-a147-e5ebe833f6bc", + "id": "Pending POs_pending_pos_all", + "pluginId": "postgres-plugin", + "pluginType": "DB", + "unpublishedAction": { + "actionConfiguration": { + "body": "select * from mpe.get_prototype_po_dashboard_data(array['34487','35355','37111','25502','27985','35313']::text[])\n", + "encodeParamsToggle": true, + "paginationType": "NONE", + "pluginSpecifiedTemplates": [ + { + "value": true + } + ], + "timeoutInMillisecond": 10000 + }, + "confirmBeforeExecute": false, + "datasource": { + "id": "xTuple_GoLive", + "isAutoGenerated": false, + "name": "xTuple_GoLive", + "pluginId": "postgres-plugin" + }, + "dynamicBindingPathList": [], + "name": "pending_pos_all", + "pageId": "Pending POs", + "runBehaviour": "AUTOMATIC", + "userSetOnLoad": false + } +} \ No newline at end of file diff --git a/pages/Pending POs/queries/pending_pos_all/pending_pos_all.txt b/pages/Pending POs/queries/pending_pos_all/pending_pos_all.txt new file mode 100644 index 0000000..ce08fc0 --- /dev/null +++ b/pages/Pending POs/queries/pending_pos_all/pending_pos_all.txt @@ -0,0 +1 @@ +select * from mpe.get_prototype_po_dashboard_data(array['34487','35355','37111','25502','27985','35313']::text[]) diff --git a/pages/Pending POs/queries/pending_pos_alx_pending/metadata.json b/pages/Pending POs/queries/pending_pos_alx_pending/metadata.json new file mode 100644 index 0000000..c12281d --- /dev/null +++ b/pages/Pending POs/queries/pending_pos_alx_pending/metadata.json @@ -0,0 +1,31 @@ +{ + "gitSyncId": "3c80e1fdb2304c28beaba450_9c5cb3e8-3419-484f-bffa-e79e23768bfe", + "id": "Pending POs_pending_pos_alx_pending", + "pluginId": "postgres-plugin", + "pluginType": "DB", + "unpublishedAction": { + "actionConfiguration": { + "body": "select * from mpe.get_prototype_po_dashboard_data(array['25502', '27985']::text[]);\n", + "encodeParamsToggle": true, + "paginationType": "NONE", + "pluginSpecifiedTemplates": [ + { + "value": true + } + ], + "timeoutInMillisecond": 10000 + }, + "confirmBeforeExecute": false, + "datasource": { + "id": "xTuple_GoLive", + "isAutoGenerated": false, + "name": "xTuple_GoLive", + "pluginId": "postgres-plugin" + }, + "dynamicBindingPathList": [], + "name": "pending_pos_alx_pending", + "pageId": "Pending POs", + "runBehaviour": "AUTOMATIC", + "userSetOnLoad": false + } +} \ No newline at end of file diff --git a/pages/Pending POs/queries/pending_pos_alx_pending/pending_pos_alx_pending.txt b/pages/Pending POs/queries/pending_pos_alx_pending/pending_pos_alx_pending.txt new file mode 100644 index 0000000..1277f69 --- /dev/null +++ b/pages/Pending POs/queries/pending_pos_alx_pending/pending_pos_alx_pending.txt @@ -0,0 +1 @@ +select * from mpe.get_prototype_po_dashboard_data(array['25502', '27985']::text[]); diff --git a/pages/Pending POs/queries/pending_pos_ml_pending/metadata.json b/pages/Pending POs/queries/pending_pos_ml_pending/metadata.json new file mode 100644 index 0000000..153b12c --- /dev/null +++ b/pages/Pending POs/queries/pending_pos_ml_pending/metadata.json @@ -0,0 +1,31 @@ +{ + "gitSyncId": "3c80e1fdb2304c28beaba450_1cad4bf5-17c0-4be7-b37a-4bfd4c61ddd4", + "id": "Pending POs_pending_pos_ml_pending", + "pluginId": "postgres-plugin", + "pluginType": "DB", + "unpublishedAction": { + "actionConfiguration": { + "body": "select * from mpe.get_prototype_po_dashboard_data(array['37111']::text[]);\n", + "encodeParamsToggle": true, + "paginationType": "NONE", + "pluginSpecifiedTemplates": [ + { + "value": true + } + ], + "timeoutInMillisecond": 10000 + }, + "confirmBeforeExecute": false, + "datasource": { + "id": "xTuple_GoLive", + "isAutoGenerated": false, + "name": "xTuple_GoLive", + "pluginId": "postgres-plugin" + }, + "dynamicBindingPathList": [], + "name": "pending_pos_ml_pending", + "pageId": "Pending POs", + "runBehaviour": "AUTOMATIC", + "userSetOnLoad": false + } +} \ No newline at end of file diff --git a/pages/Pending POs/queries/pending_pos_ml_pending/pending_pos_ml_pending.txt b/pages/Pending POs/queries/pending_pos_ml_pending/pending_pos_ml_pending.txt new file mode 100644 index 0000000..b25b0da --- /dev/null +++ b/pages/Pending POs/queries/pending_pos_ml_pending/pending_pos_ml_pending.txt @@ -0,0 +1 @@ +select * from mpe.get_prototype_po_dashboard_data(array['37111']::text[]); diff --git a/pages/Pending POs/queries/pending_pos_slx_pending/metadata.json b/pages/Pending POs/queries/pending_pos_slx_pending/metadata.json new file mode 100644 index 0000000..f2bfda3 --- /dev/null +++ b/pages/Pending POs/queries/pending_pos_slx_pending/metadata.json @@ -0,0 +1,31 @@ +{ + "gitSyncId": "3c80e1fdb2304c28beaba450_de156d2b-c302-4b7b-bc7d-6e150866194f", + "id": "Pending POs_pending_pos_slx_pending", + "pluginId": "postgres-plugin", + "pluginType": "DB", + "unpublishedAction": { + "actionConfiguration": { + "body": "select * from mpe.get_prototype_po_dashboard_data(array['34487','35355']::text[]);\n", + "encodeParamsToggle": true, + "paginationType": "NONE", + "pluginSpecifiedTemplates": [ + { + "value": true + } + ], + "timeoutInMillisecond": 10000 + }, + "confirmBeforeExecute": false, + "datasource": { + "id": "xTuple_GoLive", + "isAutoGenerated": false, + "name": "xTuple_GoLive", + "pluginId": "postgres-plugin" + }, + "dynamicBindingPathList": [], + "name": "pending_pos_slx_pending", + "pageId": "Pending POs", + "runBehaviour": "AUTOMATIC", + "userSetOnLoad": false + } +} \ No newline at end of file diff --git a/pages/Pending POs/queries/pending_pos_slx_pending/pending_pos_slx_pending.txt b/pages/Pending POs/queries/pending_pos_slx_pending/pending_pos_slx_pending.txt new file mode 100644 index 0000000..7ff2db3 --- /dev/null +++ b/pages/Pending POs/queries/pending_pos_slx_pending/pending_pos_slx_pending.txt @@ -0,0 +1 @@ +select * from mpe.get_prototype_po_dashboard_data(array['34487','35355']::text[]); diff --git a/pages/Pending POs/queries/pending_pos_sr_pending/metadata.json b/pages/Pending POs/queries/pending_pos_sr_pending/metadata.json new file mode 100644 index 0000000..6f5f5fe --- /dev/null +++ b/pages/Pending POs/queries/pending_pos_sr_pending/metadata.json @@ -0,0 +1,31 @@ +{ + "gitSyncId": "3c80e1fdb2304c28beaba450_2861a2ed-a204-4ad6-89e9-3165332e6bce", + "id": "Pending POs_pending_pos_sr_pending", + "pluginId": "postgres-plugin", + "pluginType": "DB", + "unpublishedAction": { + "actionConfiguration": { + "body": "select * from mpe.get_prototype_po_dashboard_data(array['35313']::text[])\n", + "encodeParamsToggle": true, + "paginationType": "NONE", + "pluginSpecifiedTemplates": [ + { + "value": true + } + ], + "timeoutInMillisecond": 10000 + }, + "confirmBeforeExecute": false, + "datasource": { + "id": "xTuple_GoLive", + "isAutoGenerated": false, + "name": "xTuple_GoLive", + "pluginId": "postgres-plugin" + }, + "dynamicBindingPathList": [], + "name": "pending_pos_sr_pending", + "pageId": "Pending POs", + "runBehaviour": "AUTOMATIC", + "userSetOnLoad": false + } +} \ No newline at end of file diff --git a/pages/Pending POs/queries/pending_pos_sr_pending/pending_pos_sr_pending.txt b/pages/Pending POs/queries/pending_pos_sr_pending/pending_pos_sr_pending.txt new file mode 100644 index 0000000..126d826 --- /dev/null +++ b/pages/Pending POs/queries/pending_pos_sr_pending/pending_pos_sr_pending.txt @@ -0,0 +1 @@ +select * from mpe.get_prototype_po_dashboard_data(array['35313']::text[]) diff --git a/pages/Pending POs/widgets/Container1/Button1.json b/pages/Pending POs/widgets/Container1/Button1.json new file mode 100644 index 0000000..aa31a2b --- /dev/null +++ b/pages/Pending POs/widgets/Container1/Button1.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 8, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "pa1btnkey00", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 8, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 4, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Sales - Capacity Planning', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 8, + "originalTopRow": 4, + "parentColumnSpace": 3.841796875, + "parentId": "pa1canvas01", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Capacity Planning", + "topRow": 4, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "pa1btncappl", + "widgetName": "Button1" +} \ No newline at end of file diff --git a/pages/Pending POs/widgets/Container1/Button1Copy.json b/pages/Pending POs/widgets/Container1/Button1Copy.json new file mode 100644 index 0000000..71a2531 --- /dev/null +++ b/pages/Pending POs/widgets/Container1/Button1Copy.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 12, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "pa1btnkey01", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 8, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 4, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Sales - Units Shipped', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 12, + "originalTopRow": 8, + "parentColumnSpace": 3.841796875, + "parentId": "pa1canvas01", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Units Shipped", + "topRow": 8, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "pa1btnships", + "widgetName": "Button1Copy" +} \ No newline at end of file diff --git a/pages/Pending POs/widgets/Container1/Button1Copy2.json b/pages/Pending POs/widgets/Container1/Button1Copy2.json new file mode 100644 index 0000000..6ebe02b --- /dev/null +++ b/pages/Pending POs/widgets/Container1/Button1Copy2.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 16, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "pa1btnkey02", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 8, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 4, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Sales - Units Ordered', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 16, + "originalTopRow": 12, + "parentColumnSpace": 3.841796875, + "parentId": "pa1canvas01", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Units Ordered", + "topRow": 12, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "pa1btnorder", + "widgetName": "Button1Copy2" +} \ No newline at end of file diff --git a/pages/Pending POs/widgets/Container1/Button2All.json b/pages/Pending POs/widgets/Container1/Button2All.json new file mode 100644 index 0000000..a3ef453 --- /dev/null +++ b/pages/Pending POs/widgets/Container1/Button2All.json @@ -0,0 +1,49 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 26, + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.backgroundColor}}", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [ + { + "key": "buttonColor" + } + ], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "pa1btnkeyall", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 26, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 22, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Pending POs', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 26, + "originalTopRow": 22, + "parentColumnSpace": 3.841796875, + "parentId": "pa1canvas01", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Pending POs", + "topRow": 22, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "pa1btnallpn", + "widgetName": "Button2All" +} \ No newline at end of file diff --git a/pages/Pending POs/widgets/Container1/Button2Copy.json b/pages/Pending POs/widgets/Container1/Button2Copy.json new file mode 100644 index 0000000..049888a --- /dev/null +++ b/pages/Pending POs/widgets/Container1/Button2Copy.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 30, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "pa1btnkey005", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 30, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 26, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Pending Revisions', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 30, + "originalTopRow": 26, + "parentColumnSpace": 3.841796875, + "parentId": "pa1canvas01", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Pending Revisions", + "topRow": 26, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "pa1btnpndrv", + "widgetName": "Button2Copy" +} \ No newline at end of file diff --git a/pages/Pending POs/widgets/Container1/Button2Copy2.json b/pages/Pending POs/widgets/Container1/Button2Copy2.json new file mode 100644 index 0000000..3175c73 --- /dev/null +++ b/pages/Pending POs/widgets/Container1/Button2Copy2.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 34, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "pa1btnkxg01", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 34, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 30, + "needsErrorInfo": false, + "onClick": "{{navigateTo('xGen', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 34, + "originalTopRow": 30, + "parentColumnSpace": 3.841796875, + "parentId": "pa1canvas01", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "xGen", + "topRow": 30, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "pa1btnxgen", + "widgetName": "Button2Copy2" +} \ No newline at end of file diff --git a/pages/Pending POs/widgets/Container1/Button3.json b/pages/Pending POs/widgets/Container1/Button3.json new file mode 100644 index 0000000..2b66cf8 --- /dev/null +++ b/pages/Pending POs/widgets/Container1/Button3.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 44, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "pa1btn3k01", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 44, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 40, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Operations - Job Drawing Status', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 44, + "originalTopRow": 40, + "parentColumnSpace": 3.841796875, + "parentId": "pa1canvas01", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Job Drawing Status", + "topRow": 40, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "pa1btn3jds", + "widgetName": "Button3" +} \ No newline at end of file diff --git a/pages/Pending POs/widgets/Container1/Button3Copy.json b/pages/Pending POs/widgets/Container1/Button3Copy.json new file mode 100644 index 0000000..4c4abbf --- /dev/null +++ b/pages/Pending POs/widgets/Container1/Button3Copy.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 48, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "pa1btn3k02", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 48, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 44, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Operations - Engineering Holds', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 48, + "originalTopRow": 44, + "parentColumnSpace": 3.841796875, + "parentId": "pa1canvas01", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Engineering Holds", + "topRow": 44, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "pa1btn3enh", + "widgetName": "Button3Copy" +} \ No newline at end of file diff --git a/pages/Pending POs/widgets/Container1/Button3Copy2.json b/pages/Pending POs/widgets/Container1/Button3Copy2.json new file mode 100644 index 0000000..a25c9f8 --- /dev/null +++ b/pages/Pending POs/widgets/Container1/Button3Copy2.json @@ -0,0 +1,47 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 52, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicHeight": "FIXED", + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "pa1btn3uik", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minWidth": 120, + "mobileBottomRow": 52, + "mobileLeftColumn": 0, + "mobileRightColumn": 64, + "mobileTopRow": 48, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Operations - Unused Items', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 52, + "originalTopRow": 48, + "parentColumnSpace": 3.841796875, + "parentId": "pa1canvas01", + "parentRowSpace": 10, + "placement": "START", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Unused Items", + "topRow": 48, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "pa1btn3ui", + "widgetName": "Button3Copy2" +} \ No newline at end of file diff --git a/pages/Pending POs/widgets/Container1/Container1.json b/pages/Pending POs/widgets/Container1/Container1.json new file mode 100644 index 0000000..a387f6a --- /dev/null +++ b/pages/Pending POs/widgets/Container1/Container1.json @@ -0,0 +1,87 @@ +{ + "animateLoading": true, + "backgroundColor": "#FFFFFF", + "borderColor": "#E0DEDE", + "borderRadius": "0px", + "borderWidth": "1", + "bottomRow": 124, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "children": [ + { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 1240, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "canExtend": false, + "containerStyle": "none", + "detachFromLayout": true, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "flexLayers": [], + "isLoading": false, + "isVisible": true, + "key": "xorz42kdhi", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minHeight": 100, + "minWidth": 450, + "mobileBottomRow": 100, + "mobileLeftColumn": 0, + "mobileRightColumn": 132.9375, + "mobileTopRow": 0, + "needsErrorInfo": false, + "parentColumnSpace": 1, + "parentId": "pa1c0ntain", + "parentRowSpace": 1, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 132.9375, + "topRow": 0, + "type": "CANVAS_WIDGET", + "version": 1, + "widgetId": "pa1canvas01", + "widgetName": "Canvas1" + } + ], + "containerStyle": "card", + "dynamicBindingPathList": [ + { + "key": "boxShadow" + } + ], + "dynamicHeight": "FIXED", + "dynamicTriggerPathList": [], + "flexVerticalAlignment": "stretch", + "isCanvas": true, + "isLoading": false, + "isVisible": true, + "key": "36jaq5m9iy", + "leftColumn": 0, + "maxDynamicHeight": 12, + "minDynamicHeight": 10, + "minWidth": 450, + "mobileBottomRow": 10, + "mobileLeftColumn": 0, + "mobileRightColumn": 3, + "mobileTopRow": 0, + "needsErrorInfo": false, + "parentColumnSpace": 44.3125, + "parentId": "0", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 9, + "shouldScrollContents": true, + "topRow": 0, + "type": "CONTAINER_WIDGET", + "version": 1, + "widgetId": "pa1c0ntain", + "widgetName": "Container1" +} \ No newline at end of file diff --git a/pages/Pending POs/widgets/Container1/Text1.json b/pages/Pending POs/widgets/Container1/Text1.json new file mode 100644 index 0000000..bc52d71 --- /dev/null +++ b/pages/Pending POs/widgets/Container1/Text1.json @@ -0,0 +1,52 @@ +{ + "animateLoading": true, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 4, + "dynamicBindingPathList": [ + { + "key": "truncateButtonColor" + }, + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", + "fontSize": "1rem", + "fontStyle": "BOLD", + "isLoading": false, + "isVisible": true, + "key": "pa1txkey00", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minWidth": 450, + "mobileBottomRow": 6, + "mobileLeftColumn": 10, + "mobileRightColumn": 26, + "mobileTopRow": 2, + "needsErrorInfo": false, + "originalBottomRow": 4, + "originalTopRow": 0, + "overflow": "NONE", + "parentColumnSpace": 3.841796875, + "parentId": "pa1canvas01", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 64, + "shouldTruncate": false, + "text": "Sales", + "textAlign": "LEFT", + "textColor": "#231F20", + "topRow": 0, + "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "type": "TEXT_WIDGET", + "version": 1, + "widgetId": "pa1txtsales", + "widgetName": "Text1" +} \ No newline at end of file diff --git a/pages/Pending POs/widgets/Container1/Text2.json b/pages/Pending POs/widgets/Container1/Text2.json new file mode 100644 index 0000000..f6561bf --- /dev/null +++ b/pages/Pending POs/widgets/Container1/Text2.json @@ -0,0 +1,52 @@ +{ + "animateLoading": true, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 22, + "dynamicBindingPathList": [ + { + "key": "truncateButtonColor" + }, + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", + "fontSize": "1rem", + "fontStyle": "BOLD", + "isLoading": false, + "isVisible": true, + "key": "pa1txkey01", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minWidth": 450, + "mobileBottomRow": 22, + "mobileLeftColumn": 10, + "mobileRightColumn": 26, + "mobileTopRow": 18, + "needsErrorInfo": false, + "originalBottomRow": 22, + "originalTopRow": 18, + "overflow": "NONE", + "parentColumnSpace": 3.841796875, + "parentId": "pa1canvas01", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 64, + "shouldTruncate": false, + "text": "Engineering", + "textAlign": "LEFT", + "textColor": "#231F20", + "topRow": 18, + "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "type": "TEXT_WIDGET", + "version": 1, + "widgetId": "pa1txtpndpo", + "widgetName": "Text2" +} \ No newline at end of file diff --git a/pages/Pending POs/widgets/Container1/Text3.json b/pages/Pending POs/widgets/Container1/Text3.json new file mode 100644 index 0000000..7d00e3d --- /dev/null +++ b/pages/Pending POs/widgets/Container1/Text3.json @@ -0,0 +1,52 @@ +{ + "animateLoading": true, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 40, + "dynamicBindingPathList": [ + { + "key": "truncateButtonColor" + }, + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", + "fontSize": "1rem", + "fontStyle": "BOLD", + "isLoading": false, + "isVisible": true, + "key": "pa1txt3k01", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minWidth": 450, + "mobileBottomRow": 40, + "mobileLeftColumn": 10, + "mobileRightColumn": 26, + "mobileTopRow": 36, + "needsErrorInfo": false, + "originalBottomRow": 40, + "originalTopRow": 36, + "overflow": "NONE", + "parentColumnSpace": 3.841796875, + "parentId": "pa1canvas01", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 64, + "shouldTruncate": false, + "text": "Operations", + "textAlign": "LEFT", + "textColor": "#231F20", + "topRow": 36, + "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "type": "TEXT_WIDGET", + "version": 1, + "widgetId": "pa1txt3ops", + "widgetName": "Text3" +} \ No newline at end of file diff --git a/pages/Pending POs/widgets/Heading.json b/pages/Pending POs/widgets/Heading.json new file mode 100644 index 0000000..64452b8 --- /dev/null +++ b/pages/Pending POs/widgets/Heading.json @@ -0,0 +1,52 @@ +{ + "animateLoading": true, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 5, + "dynamicBindingPathList": [ + { + "key": "truncateButtonColor" + }, + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", + "fontSize": "1.875rem", + "fontStyle": "BOLD", + "isLoading": false, + "isVisible": true, + "key": "pa1hdkey01", + "leftColumn": 9, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minWidth": 450, + "mobileBottomRow": 5, + "mobileLeftColumn": 1, + "mobileRightColumn": 17, + "mobileTopRow": 1, + "needsErrorInfo": false, + "originalBottomRow": 5, + "originalTopRow": 0, + "overflow": "NONE", + "parentColumnSpace": 25.109375, + "parentId": "0", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 64, + "shouldTruncate": false, + "text": "Pending POs", + "textAlign": "LEFT", + "textColor": "#231F20", + "topRow": 0, + "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "type": "TEXT_WIDGET", + "version": 1, + "widgetId": "pa1heading1", + "widgetName": "Heading" +} \ No newline at end of file diff --git a/pages/Pending POs/widgets/Tabs1/TableALx.json b/pages/Pending POs/widgets/Tabs1/TableALx.json new file mode 100644 index 0000000..a87c938 --- /dev/null +++ b/pages/Pending POs/widgets/Tabs1/TableALx.json @@ -0,0 +1,599 @@ +{ + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "animateLoading": true, + "borderColor": "#E0DEDE", + "borderRadius": "0.375rem", + "borderWidth": "1", + "bottomRow": 58, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "cachedTableData": {}, + "canFreezeColumn": true, + "childStylesheet": { + "button": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "editActions": { + "discardBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "discardButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "saveBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "saveButtonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "iconButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "menuButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "menuColor": "{{appsmith.theme.colors.primaryColor}}" + } + }, + "columnOrder": [ + "matl", + "matl_classocde", + "matl_desc", + "matl_spec", + "qoh", + "po_released", + "po_opened", + "po_closed", + "poitem_due", + "wo_item", + "wo_demanding", + "wo_total_demand", + "uom" + ], + "columnUpdatedAt": 1772194562509, + "columnWidthMap": {}, + "compactMode": "SHORT", + "customIsLoading": false, + "customIsLoadingValue": "", + "defaultPageSize": 0, + "defaultSelectedRowIndex": 0, + "defaultSelectedRowIndices": [ + 0 + ], + "delimiter": ",", + "dynamicBindingPathList": [ + { + "key": "accentColor" + }, + { + "key": "boxShadow" + }, + { + "key": "tableData" + }, + { + "key": "primaryColumns.matl.computedValue" + }, + { + "key": "primaryColumns.matl_classocde.computedValue" + }, + { + "key": "primaryColumns.matl_desc.computedValue" + }, + { + "key": "primaryColumns.matl_spec.computedValue" + }, + { + "key": "primaryColumns.qoh.computedValue" + }, + { + "key": "primaryColumns.po_released.computedValue" + }, + { + "key": "primaryColumns.po_opened.computedValue" + }, + { + "key": "primaryColumns.po_closed.computedValue" + }, + { + "key": "primaryColumns.poitem_due.computedValue" + }, + { + "key": "primaryColumns.wo_item.computedValue" + }, + { + "key": "primaryColumns.wo_demanding.computedValue" + }, + { + "key": "primaryColumns.wo_total_demand.computedValue" + }, + { + "key": "primaryColumns.uom.computedValue" + } + ], + "dynamicPropertyPathList": [ + { + "key": "textSize" + } + ], + "dynamicTriggerPathList": [], + "enableClientSideSearch": true, + "endOfData": false, + "flexVerticalAlignment": "start", + "horizontalAlignment": "LEFT", + "inlineEditingSaveOption": "ROW_LEVEL", + "isLoading": false, + "isSortable": true, + "isVisible": true, + "isVisibleDownload": true, + "isVisibleFilters": false, + "isVisiblePagination": true, + "isVisibleSearch": false, + "key": "pa1tblalx1key", + "label": "Data", + "leftColumn": 0, + "minWidth": 450, + "mobileBottomRow": 31, + "mobileLeftColumn": 1, + "mobileRightColumn": 35, + "mobileTopRow": 5, + "needsErrorInfo": false, + "originalBottomRow": 58, + "originalTopRow": 0, + "parentColumnSpace": 11.265625, + "parentId": "pa1cnvsalx", + "parentRowSpace": 10, + "primaryColumns": { + "matl": { + "alias": "matl", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = TableALx.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"matl\"])) : matl })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "matl", + "index": 0, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "matl", + "notation": "standard", + "originalId": "matl", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "matl_classocde": { + "alias": "matl_classocde", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = TableALx.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"matl_classocde\"])) : matl_classocde })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "matl_classocde", + "index": 1, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "matl_classocde", + "notation": "standard", + "originalId": "matl_classocde", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "matl_desc": { + "alias": "matl_desc", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = TableALx.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"matl_desc\"])) : matl_desc })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "matl_desc", + "index": 2, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "matl_desc", + "notation": "standard", + "originalId": "matl_desc", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "matl_spec": { + "alias": "matl_spec", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = TableALx.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"matl_spec\"])) : matl_spec })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "matl_spec", + "index": 3, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "matl_spec", + "notation": "standard", + "originalId": "matl_spec", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "po_closed": { + "alias": "po_closed", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "number", + "computedValue": "{{(() => { const tableData = TableALx.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"po_closed\"])) : po_closed })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "po_closed", + "index": 7, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "po_closed", + "notation": "standard", + "originalId": "po_closed", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "po_opened": { + "alias": "po_opened", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "number", + "computedValue": "{{(() => { const tableData = TableALx.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"po_opened\"])) : po_opened })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "po_opened", + "index": 6, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "po_opened", + "notation": "standard", + "originalId": "po_opened", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "po_released": { + "alias": "po_released", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "number", + "computedValue": "{{(() => { const tableData = TableALx.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"po_released\"])) : po_released })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "po_released", + "index": 5, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "po_released", + "notation": "standard", + "originalId": "po_released", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "poitem_due": { + "alias": "poitem_due", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "date", + "computedValue": "{{(() => { const tableData = TableALx.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"poitem_due\"])) : poitem_due })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "poitem_due", + "index": 8, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "poitem_due", + "notation": "standard", + "originalId": "poitem_due", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "qoh": { + "alias": "qoh", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "number", + "computedValue": "{{(() => { const tableData = TableALx.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"qoh\"])) : qoh })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "qoh", + "index": 4, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "qoh", + "notation": "standard", + "originalId": "qoh", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "uom": { + "alias": "uom", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = TableALx.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"uom\"])) : uom })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "uom", + "index": 12, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "uom", + "notation": "standard", + "originalId": "uom", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "wo_demanding": { + "alias": "wo_demanding", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = TableALx.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"wo_demanding\"])) : wo_demanding })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "wo_demanding", + "index": 10, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "wo_demanding", + "notation": "standard", + "originalId": "wo_demanding", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "wo_item": { + "alias": "wo_item", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = TableALx.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"wo_item\"])) : wo_item })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "wo_item", + "index": 9, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "wo_item", + "notation": "standard", + "originalId": "wo_item", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "wo_total_demand": { + "alias": "wo_total_demand", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "number", + "computedValue": "{{(() => { const tableData = TableALx.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"wo_total_demand\"])) : wo_total_demand })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "wo_total_demand", + "index": 11, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "wo_total_demand", + "notation": "standard", + "originalId": "wo_total_demand", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + } + }, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 62, + "searchKey": "", + "tableData": "{{pending_pos_alx_pending.data}}", + "textSize": "0.775rem", + "topRow": 0, + "totalRecordsCount": 0, + "type": "TABLE_WIDGET_V2", + "version": 2, + "verticalAlignment": "CENTER", + "widgetId": "pa1tblalx1", + "widgetName": "TableALx" +} \ No newline at end of file diff --git a/pages/Pending POs/widgets/Tabs1/TableAll.json b/pages/Pending POs/widgets/Tabs1/TableAll.json new file mode 100644 index 0000000..3800cb4 --- /dev/null +++ b/pages/Pending POs/widgets/Tabs1/TableAll.json @@ -0,0 +1,599 @@ +{ + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "animateLoading": true, + "borderColor": "#E0DEDE", + "borderRadius": "0.375rem", + "borderWidth": "1", + "bottomRow": 113, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "cachedTableData": {}, + "canFreezeColumn": true, + "childStylesheet": { + "button": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "editActions": { + "discardBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "discardButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "saveBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "saveButtonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "iconButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "menuButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "menuColor": "{{appsmith.theme.colors.primaryColor}}" + } + }, + "columnOrder": [ + "matl", + "matl_classocde", + "matl_desc", + "matl_spec", + "qoh", + "po_released", + "po_opened", + "po_closed", + "poitem_due", + "wo_item", + "wo_demanding", + "wo_total_demand", + "uom" + ], + "columnUpdatedAt": 1772194562509, + "columnWidthMap": {}, + "compactMode": "SHORT", + "customIsLoading": false, + "customIsLoadingValue": "", + "defaultPageSize": 0, + "defaultSelectedRowIndex": 0, + "defaultSelectedRowIndices": [ + 0 + ], + "delimiter": ",", + "dynamicBindingPathList": [ + { + "key": "accentColor" + }, + { + "key": "boxShadow" + }, + { + "key": "tableData" + }, + { + "key": "primaryColumns.matl.computedValue" + }, + { + "key": "primaryColumns.matl_classocde.computedValue" + }, + { + "key": "primaryColumns.matl_desc.computedValue" + }, + { + "key": "primaryColumns.matl_spec.computedValue" + }, + { + "key": "primaryColumns.qoh.computedValue" + }, + { + "key": "primaryColumns.po_released.computedValue" + }, + { + "key": "primaryColumns.po_opened.computedValue" + }, + { + "key": "primaryColumns.po_closed.computedValue" + }, + { + "key": "primaryColumns.poitem_due.computedValue" + }, + { + "key": "primaryColumns.wo_item.computedValue" + }, + { + "key": "primaryColumns.wo_demanding.computedValue" + }, + { + "key": "primaryColumns.wo_total_demand.computedValue" + }, + { + "key": "primaryColumns.uom.computedValue" + } + ], + "dynamicPropertyPathList": [ + { + "key": "textSize" + } + ], + "dynamicTriggerPathList": [], + "enableClientSideSearch": true, + "endOfData": false, + "flexVerticalAlignment": "start", + "horizontalAlignment": "LEFT", + "inlineEditingSaveOption": "ROW_LEVEL", + "isLoading": false, + "isSortable": true, + "isVisible": true, + "isVisibleDownload": true, + "isVisibleFilters": false, + "isVisiblePagination": true, + "isVisibleSearch": false, + "key": "pa1tblall1key", + "label": "Data", + "leftColumn": 0, + "minWidth": 450, + "mobileBottomRow": 31, + "mobileLeftColumn": 1, + "mobileRightColumn": 35, + "mobileTopRow": 5, + "needsErrorInfo": false, + "originalBottomRow": 58, + "originalTopRow": 0, + "parentColumnSpace": 11.265625, + "parentId": "pa1cnvsall", + "parentRowSpace": 10, + "primaryColumns": { + "matl": { + "alias": "matl", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = TableAll.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"matl\"])) : matl })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "matl", + "index": 0, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "matl", + "notation": "standard", + "originalId": "matl", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "matl_classocde": { + "alias": "matl_classocde", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = TableAll.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"matl_classocde\"])) : matl_classocde })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "matl_classocde", + "index": 1, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "matl_classocde", + "notation": "standard", + "originalId": "matl_classocde", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "matl_desc": { + "alias": "matl_desc", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = TableAll.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"matl_desc\"])) : matl_desc })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "matl_desc", + "index": 2, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "matl_desc", + "notation": "standard", + "originalId": "matl_desc", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "matl_spec": { + "alias": "matl_spec", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = TableAll.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"matl_spec\"])) : matl_spec })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "matl_spec", + "index": 3, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "matl_spec", + "notation": "standard", + "originalId": "matl_spec", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "po_closed": { + "alias": "po_closed", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "number", + "computedValue": "{{(() => { const tableData = TableAll.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"po_closed\"])) : po_closed })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "po_closed", + "index": 7, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "po_closed", + "notation": "standard", + "originalId": "po_closed", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "po_opened": { + "alias": "po_opened", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "number", + "computedValue": "{{(() => { const tableData = TableAll.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"po_opened\"])) : po_opened })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "po_opened", + "index": 6, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "po_opened", + "notation": "standard", + "originalId": "po_opened", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "po_released": { + "alias": "po_released", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "number", + "computedValue": "{{(() => { const tableData = TableAll.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"po_released\"])) : po_released })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "po_released", + "index": 5, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "po_released", + "notation": "standard", + "originalId": "po_released", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "poitem_due": { + "alias": "poitem_due", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "date", + "computedValue": "{{(() => { const tableData = TableAll.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"poitem_due\"])) : poitem_due })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "poitem_due", + "index": 8, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "poitem_due", + "notation": "standard", + "originalId": "poitem_due", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "qoh": { + "alias": "qoh", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "number", + "computedValue": "{{(() => { const tableData = TableAll.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"qoh\"])) : qoh })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "qoh", + "index": 4, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "qoh", + "notation": "standard", + "originalId": "qoh", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "uom": { + "alias": "uom", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = TableAll.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"uom\"])) : uom })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "uom", + "index": 12, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "uom", + "notation": "standard", + "originalId": "uom", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "wo_demanding": { + "alias": "wo_demanding", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = TableAll.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"wo_demanding\"])) : wo_demanding })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "wo_demanding", + "index": 10, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "wo_demanding", + "notation": "standard", + "originalId": "wo_demanding", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "wo_item": { + "alias": "wo_item", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = TableAll.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"wo_item\"])) : wo_item })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "wo_item", + "index": 9, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "wo_item", + "notation": "standard", + "originalId": "wo_item", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "wo_total_demand": { + "alias": "wo_total_demand", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "number", + "computedValue": "{{(() => { const tableData = TableAll.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"wo_total_demand\"])) : wo_total_demand })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "wo_total_demand", + "index": 11, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "wo_total_demand", + "notation": "standard", + "originalId": "wo_total_demand", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + } + }, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 62, + "searchKey": "", + "tableData": "{{pending_pos_all.data}}", + "textSize": "0.775rem", + "topRow": 0, + "totalRecordsCount": 0, + "type": "TABLE_WIDGET_V2", + "version": 2, + "verticalAlignment": "CENTER", + "widgetId": "pa1tblall1", + "widgetName": "TableAll" +} \ No newline at end of file diff --git a/pages/Pending POs/widgets/Tabs1/TableML.json b/pages/Pending POs/widgets/Tabs1/TableML.json new file mode 100644 index 0000000..f2afb77 --- /dev/null +++ b/pages/Pending POs/widgets/Tabs1/TableML.json @@ -0,0 +1,599 @@ +{ + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "animateLoading": true, + "borderColor": "#E0DEDE", + "borderRadius": "0.375rem", + "borderWidth": "1", + "bottomRow": 58, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "cachedTableData": {}, + "canFreezeColumn": true, + "childStylesheet": { + "button": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "editActions": { + "discardBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "discardButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "saveBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "saveButtonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "iconButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "menuButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "menuColor": "{{appsmith.theme.colors.primaryColor}}" + } + }, + "columnOrder": [ + "matl", + "matl_classocde", + "matl_desc", + "matl_spec", + "qoh", + "po_released", + "po_opened", + "po_closed", + "poitem_due", + "wo_item", + "wo_demanding", + "wo_total_demand", + "uom" + ], + "columnUpdatedAt": 1772194562509, + "columnWidthMap": {}, + "compactMode": "SHORT", + "customIsLoading": false, + "customIsLoadingValue": "", + "defaultPageSize": 0, + "defaultSelectedRowIndex": 0, + "defaultSelectedRowIndices": [ + 0 + ], + "delimiter": ",", + "dynamicBindingPathList": [ + { + "key": "accentColor" + }, + { + "key": "boxShadow" + }, + { + "key": "tableData" + }, + { + "key": "primaryColumns.matl.computedValue" + }, + { + "key": "primaryColumns.matl_classocde.computedValue" + }, + { + "key": "primaryColumns.matl_desc.computedValue" + }, + { + "key": "primaryColumns.matl_spec.computedValue" + }, + { + "key": "primaryColumns.qoh.computedValue" + }, + { + "key": "primaryColumns.po_released.computedValue" + }, + { + "key": "primaryColumns.po_opened.computedValue" + }, + { + "key": "primaryColumns.po_closed.computedValue" + }, + { + "key": "primaryColumns.poitem_due.computedValue" + }, + { + "key": "primaryColumns.wo_item.computedValue" + }, + { + "key": "primaryColumns.wo_demanding.computedValue" + }, + { + "key": "primaryColumns.wo_total_demand.computedValue" + }, + { + "key": "primaryColumns.uom.computedValue" + } + ], + "dynamicPropertyPathList": [ + { + "key": "textSize" + } + ], + "dynamicTriggerPathList": [], + "enableClientSideSearch": true, + "endOfData": false, + "flexVerticalAlignment": "start", + "horizontalAlignment": "LEFT", + "inlineEditingSaveOption": "ROW_LEVEL", + "isLoading": false, + "isSortable": true, + "isVisible": true, + "isVisibleDownload": true, + "isVisibleFilters": false, + "isVisiblePagination": true, + "isVisibleSearch": false, + "key": "pa1tblml01key", + "label": "Data", + "leftColumn": 0, + "minWidth": 450, + "mobileBottomRow": 31, + "mobileLeftColumn": 1, + "mobileRightColumn": 35, + "mobileTopRow": 5, + "needsErrorInfo": false, + "originalBottomRow": 58, + "originalTopRow": 0, + "parentColumnSpace": 11.265625, + "parentId": "pa1cnvsml1", + "parentRowSpace": 10, + "primaryColumns": { + "matl": { + "alias": "matl", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = TableML.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"matl\"])) : matl })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "matl", + "index": 0, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "matl", + "notation": "standard", + "originalId": "matl", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "matl_classocde": { + "alias": "matl_classocde", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = TableML.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"matl_classocde\"])) : matl_classocde })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "matl_classocde", + "index": 1, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "matl_classocde", + "notation": "standard", + "originalId": "matl_classocde", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "matl_desc": { + "alias": "matl_desc", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = TableML.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"matl_desc\"])) : matl_desc })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "matl_desc", + "index": 2, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "matl_desc", + "notation": "standard", + "originalId": "matl_desc", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "matl_spec": { + "alias": "matl_spec", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = TableML.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"matl_spec\"])) : matl_spec })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "matl_spec", + "index": 3, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "matl_spec", + "notation": "standard", + "originalId": "matl_spec", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "po_closed": { + "alias": "po_closed", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "number", + "computedValue": "{{(() => { const tableData = TableML.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"po_closed\"])) : po_closed })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "po_closed", + "index": 7, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "po_closed", + "notation": "standard", + "originalId": "po_closed", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "po_opened": { + "alias": "po_opened", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "number", + "computedValue": "{{(() => { const tableData = TableML.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"po_opened\"])) : po_opened })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "po_opened", + "index": 6, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "po_opened", + "notation": "standard", + "originalId": "po_opened", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "po_released": { + "alias": "po_released", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "number", + "computedValue": "{{(() => { const tableData = TableML.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"po_released\"])) : po_released })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "po_released", + "index": 5, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "po_released", + "notation": "standard", + "originalId": "po_released", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "poitem_due": { + "alias": "poitem_due", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "date", + "computedValue": "{{(() => { const tableData = TableML.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"poitem_due\"])) : poitem_due })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "poitem_due", + "index": 8, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "poitem_due", + "notation": "standard", + "originalId": "poitem_due", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "qoh": { + "alias": "qoh", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "number", + "computedValue": "{{(() => { const tableData = TableML.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"qoh\"])) : qoh })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "qoh", + "index": 4, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "qoh", + "notation": "standard", + "originalId": "qoh", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "uom": { + "alias": "uom", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = TableML.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"uom\"])) : uom })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "uom", + "index": 12, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "uom", + "notation": "standard", + "originalId": "uom", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "wo_demanding": { + "alias": "wo_demanding", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = TableML.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"wo_demanding\"])) : wo_demanding })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "wo_demanding", + "index": 10, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "wo_demanding", + "notation": "standard", + "originalId": "wo_demanding", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "wo_item": { + "alias": "wo_item", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = TableML.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"wo_item\"])) : wo_item })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "wo_item", + "index": 9, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "wo_item", + "notation": "standard", + "originalId": "wo_item", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "wo_total_demand": { + "alias": "wo_total_demand", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "number", + "computedValue": "{{(() => { const tableData = TableML.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"wo_total_demand\"])) : wo_total_demand })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "wo_total_demand", + "index": 11, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "wo_total_demand", + "notation": "standard", + "originalId": "wo_total_demand", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + } + }, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 62, + "searchKey": "", + "tableData": "{{pending_pos_ml_pending.data}}", + "textSize": "0.775rem", + "topRow": 0, + "totalRecordsCount": 0, + "type": "TABLE_WIDGET_V2", + "version": 2, + "verticalAlignment": "CENTER", + "widgetId": "pa1tblml01", + "widgetName": "TableML" +} \ No newline at end of file diff --git a/pages/Pending POs/widgets/Tabs1/TableSLx.json b/pages/Pending POs/widgets/Tabs1/TableSLx.json new file mode 100644 index 0000000..663364a --- /dev/null +++ b/pages/Pending POs/widgets/Tabs1/TableSLx.json @@ -0,0 +1,599 @@ +{ + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "animateLoading": true, + "borderColor": "#E0DEDE", + "borderRadius": "0.375rem", + "borderWidth": "1", + "bottomRow": 58, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "cachedTableData": {}, + "canFreezeColumn": true, + "childStylesheet": { + "button": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "editActions": { + "discardBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "discardButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "saveBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "saveButtonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "iconButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "menuButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "menuColor": "{{appsmith.theme.colors.primaryColor}}" + } + }, + "columnOrder": [ + "matl", + "matl_classocde", + "matl_desc", + "matl_spec", + "qoh", + "po_released", + "po_opened", + "po_closed", + "poitem_due", + "wo_item", + "wo_demanding", + "wo_total_demand", + "uom" + ], + "columnUpdatedAt": 1772194562509, + "columnWidthMap": {}, + "compactMode": "SHORT", + "customIsLoading": false, + "customIsLoadingValue": "", + "defaultPageSize": 0, + "defaultSelectedRowIndex": 0, + "defaultSelectedRowIndices": [ + 0 + ], + "delimiter": ",", + "dynamicBindingPathList": [ + { + "key": "accentColor" + }, + { + "key": "boxShadow" + }, + { + "key": "tableData" + }, + { + "key": "primaryColumns.matl.computedValue" + }, + { + "key": "primaryColumns.matl_classocde.computedValue" + }, + { + "key": "primaryColumns.matl_desc.computedValue" + }, + { + "key": "primaryColumns.matl_spec.computedValue" + }, + { + "key": "primaryColumns.qoh.computedValue" + }, + { + "key": "primaryColumns.po_released.computedValue" + }, + { + "key": "primaryColumns.po_opened.computedValue" + }, + { + "key": "primaryColumns.po_closed.computedValue" + }, + { + "key": "primaryColumns.poitem_due.computedValue" + }, + { + "key": "primaryColumns.wo_item.computedValue" + }, + { + "key": "primaryColumns.wo_demanding.computedValue" + }, + { + "key": "primaryColumns.wo_total_demand.computedValue" + }, + { + "key": "primaryColumns.uom.computedValue" + } + ], + "dynamicPropertyPathList": [ + { + "key": "textSize" + } + ], + "dynamicTriggerPathList": [], + "enableClientSideSearch": true, + "endOfData": false, + "flexVerticalAlignment": "start", + "horizontalAlignment": "LEFT", + "inlineEditingSaveOption": "ROW_LEVEL", + "isLoading": false, + "isSortable": true, + "isVisible": true, + "isVisibleDownload": true, + "isVisibleFilters": false, + "isVisiblePagination": true, + "isVisibleSearch": false, + "key": "pa1tblslx1key", + "label": "Data", + "leftColumn": 0, + "minWidth": 450, + "mobileBottomRow": 31, + "mobileLeftColumn": 1, + "mobileRightColumn": 35, + "mobileTopRow": 5, + "needsErrorInfo": false, + "originalBottomRow": 58, + "originalTopRow": 0, + "parentColumnSpace": 11.265625, + "parentId": "pa1cnvsslx", + "parentRowSpace": 10, + "primaryColumns": { + "matl": { + "alias": "matl", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = TableSLx.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"matl\"])) : matl })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "matl", + "index": 0, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "matl", + "notation": "standard", + "originalId": "matl", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "matl_classocde": { + "alias": "matl_classocde", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = TableSLx.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"matl_classocde\"])) : matl_classocde })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "matl_classocde", + "index": 1, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "matl_classocde", + "notation": "standard", + "originalId": "matl_classocde", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "matl_desc": { + "alias": "matl_desc", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = TableSLx.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"matl_desc\"])) : matl_desc })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "matl_desc", + "index": 2, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "matl_desc", + "notation": "standard", + "originalId": "matl_desc", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "matl_spec": { + "alias": "matl_spec", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = TableSLx.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"matl_spec\"])) : matl_spec })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "matl_spec", + "index": 3, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "matl_spec", + "notation": "standard", + "originalId": "matl_spec", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "po_closed": { + "alias": "po_closed", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "number", + "computedValue": "{{(() => { const tableData = TableSLx.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"po_closed\"])) : po_closed })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "po_closed", + "index": 7, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "po_closed", + "notation": "standard", + "originalId": "po_closed", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "po_opened": { + "alias": "po_opened", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "number", + "computedValue": "{{(() => { const tableData = TableSLx.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"po_opened\"])) : po_opened })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "po_opened", + "index": 6, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "po_opened", + "notation": "standard", + "originalId": "po_opened", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "po_released": { + "alias": "po_released", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "number", + "computedValue": "{{(() => { const tableData = TableSLx.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"po_released\"])) : po_released })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "po_released", + "index": 5, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "po_released", + "notation": "standard", + "originalId": "po_released", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "poitem_due": { + "alias": "poitem_due", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "date", + "computedValue": "{{(() => { const tableData = TableSLx.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"poitem_due\"])) : poitem_due })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "poitem_due", + "index": 8, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "poitem_due", + "notation": "standard", + "originalId": "poitem_due", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "qoh": { + "alias": "qoh", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "number", + "computedValue": "{{(() => { const tableData = TableSLx.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"qoh\"])) : qoh })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "qoh", + "index": 4, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "qoh", + "notation": "standard", + "originalId": "qoh", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "uom": { + "alias": "uom", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = TableSLx.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"uom\"])) : uom })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "uom", + "index": 12, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "uom", + "notation": "standard", + "originalId": "uom", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "wo_demanding": { + "alias": "wo_demanding", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = TableSLx.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"wo_demanding\"])) : wo_demanding })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "wo_demanding", + "index": 10, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "wo_demanding", + "notation": "standard", + "originalId": "wo_demanding", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "wo_item": { + "alias": "wo_item", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = TableSLx.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"wo_item\"])) : wo_item })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "wo_item", + "index": 9, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "wo_item", + "notation": "standard", + "originalId": "wo_item", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "wo_total_demand": { + "alias": "wo_total_demand", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "number", + "computedValue": "{{(() => { const tableData = TableSLx.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"wo_total_demand\"])) : wo_total_demand })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "wo_total_demand", + "index": 11, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "wo_total_demand", + "notation": "standard", + "originalId": "wo_total_demand", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + } + }, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 62, + "searchKey": "", + "tableData": "{{pending_pos_slx_pending.data}}", + "textSize": "0.775rem", + "topRow": 0, + "totalRecordsCount": 0, + "type": "TABLE_WIDGET_V2", + "version": 2, + "verticalAlignment": "CENTER", + "widgetId": "pa1tblslx1", + "widgetName": "TableSLx" +} \ No newline at end of file diff --git a/pages/Pending POs/widgets/Tabs1/TableSR.json b/pages/Pending POs/widgets/Tabs1/TableSR.json new file mode 100644 index 0000000..d37f9f8 --- /dev/null +++ b/pages/Pending POs/widgets/Tabs1/TableSR.json @@ -0,0 +1,599 @@ +{ + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "animateLoading": true, + "borderColor": "#E0DEDE", + "borderRadius": "0.375rem", + "borderWidth": "1", + "bottomRow": 58, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "cachedTableData": {}, + "canFreezeColumn": true, + "childStylesheet": { + "button": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "editActions": { + "discardBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "discardButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "saveBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "saveButtonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "iconButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "menuButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "menuColor": "{{appsmith.theme.colors.primaryColor}}" + } + }, + "columnOrder": [ + "matl", + "matl_classocde", + "matl_desc", + "matl_spec", + "qoh", + "po_released", + "po_opened", + "po_closed", + "poitem_due", + "wo_item", + "wo_demanding", + "wo_total_demand", + "uom" + ], + "columnUpdatedAt": 1772194562509, + "columnWidthMap": {}, + "compactMode": "SHORT", + "customIsLoading": false, + "customIsLoadingValue": "", + "defaultPageSize": 0, + "defaultSelectedRowIndex": 0, + "defaultSelectedRowIndices": [ + 0 + ], + "delimiter": ",", + "dynamicBindingPathList": [ + { + "key": "accentColor" + }, + { + "key": "boxShadow" + }, + { + "key": "tableData" + }, + { + "key": "primaryColumns.matl.computedValue" + }, + { + "key": "primaryColumns.matl_classocde.computedValue" + }, + { + "key": "primaryColumns.matl_desc.computedValue" + }, + { + "key": "primaryColumns.matl_spec.computedValue" + }, + { + "key": "primaryColumns.qoh.computedValue" + }, + { + "key": "primaryColumns.po_released.computedValue" + }, + { + "key": "primaryColumns.po_opened.computedValue" + }, + { + "key": "primaryColumns.po_closed.computedValue" + }, + { + "key": "primaryColumns.poitem_due.computedValue" + }, + { + "key": "primaryColumns.wo_item.computedValue" + }, + { + "key": "primaryColumns.wo_demanding.computedValue" + }, + { + "key": "primaryColumns.wo_total_demand.computedValue" + }, + { + "key": "primaryColumns.uom.computedValue" + } + ], + "dynamicPropertyPathList": [ + { + "key": "textSize" + } + ], + "dynamicTriggerPathList": [], + "enableClientSideSearch": true, + "endOfData": false, + "flexVerticalAlignment": "start", + "horizontalAlignment": "LEFT", + "inlineEditingSaveOption": "ROW_LEVEL", + "isLoading": false, + "isSortable": true, + "isVisible": true, + "isVisibleDownload": true, + "isVisibleFilters": false, + "isVisiblePagination": true, + "isVisibleSearch": false, + "key": "pa1tblsr01key", + "label": "Data", + "leftColumn": 0, + "minWidth": 450, + "mobileBottomRow": 31, + "mobileLeftColumn": 1, + "mobileRightColumn": 35, + "mobileTopRow": 5, + "needsErrorInfo": false, + "originalBottomRow": 58, + "originalTopRow": 0, + "parentColumnSpace": 11.265625, + "parentId": "pa1cnvssr1", + "parentRowSpace": 10, + "primaryColumns": { + "matl": { + "alias": "matl", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = TableSR.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"matl\"])) : matl })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "matl", + "index": 0, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "matl", + "notation": "standard", + "originalId": "matl", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "matl_classocde": { + "alias": "matl_classocde", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = TableSR.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"matl_classocde\"])) : matl_classocde })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "matl_classocde", + "index": 1, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "matl_classocde", + "notation": "standard", + "originalId": "matl_classocde", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "matl_desc": { + "alias": "matl_desc", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = TableSR.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"matl_desc\"])) : matl_desc })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "matl_desc", + "index": 2, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "matl_desc", + "notation": "standard", + "originalId": "matl_desc", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "matl_spec": { + "alias": "matl_spec", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = TableSR.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"matl_spec\"])) : matl_spec })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "matl_spec", + "index": 3, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "matl_spec", + "notation": "standard", + "originalId": "matl_spec", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "po_closed": { + "alias": "po_closed", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "number", + "computedValue": "{{(() => { const tableData = TableSR.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"po_closed\"])) : po_closed })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "po_closed", + "index": 7, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "po_closed", + "notation": "standard", + "originalId": "po_closed", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "po_opened": { + "alias": "po_opened", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "number", + "computedValue": "{{(() => { const tableData = TableSR.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"po_opened\"])) : po_opened })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "po_opened", + "index": 6, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "po_opened", + "notation": "standard", + "originalId": "po_opened", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "po_released": { + "alias": "po_released", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "number", + "computedValue": "{{(() => { const tableData = TableSR.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"po_released\"])) : po_released })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "po_released", + "index": 5, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "po_released", + "notation": "standard", + "originalId": "po_released", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "poitem_due": { + "alias": "poitem_due", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "date", + "computedValue": "{{(() => { const tableData = TableSR.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"poitem_due\"])) : poitem_due })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "poitem_due", + "index": 8, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "poitem_due", + "notation": "standard", + "originalId": "poitem_due", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "qoh": { + "alias": "qoh", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "number", + "computedValue": "{{(() => { const tableData = TableSR.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"qoh\"])) : qoh })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "qoh", + "index": 4, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "qoh", + "notation": "standard", + "originalId": "qoh", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "uom": { + "alias": "uom", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = TableSR.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"uom\"])) : uom })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "uom", + "index": 12, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "uom", + "notation": "standard", + "originalId": "uom", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "wo_demanding": { + "alias": "wo_demanding", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = TableSR.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"wo_demanding\"])) : wo_demanding })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "wo_demanding", + "index": 10, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "wo_demanding", + "notation": "standard", + "originalId": "wo_demanding", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "wo_item": { + "alias": "wo_item", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = TableSR.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"wo_item\"])) : wo_item })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "wo_item", + "index": 9, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "wo_item", + "notation": "standard", + "originalId": "wo_item", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "wo_total_demand": { + "alias": "wo_total_demand", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "number", + "computedValue": "{{(() => { const tableData = TableSR.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"wo_total_demand\"])) : wo_total_demand })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "wo_total_demand", + "index": 11, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "wo_total_demand", + "notation": "standard", + "originalId": "wo_total_demand", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + } + }, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 62, + "searchKey": "", + "tableData": "{{pending_pos_sr_pending.data}}", + "textSize": "0.775rem", + "topRow": 0, + "totalRecordsCount": 0, + "type": "TABLE_WIDGET_V2", + "version": 2, + "verticalAlignment": "CENTER", + "widgetId": "pa1tblsr01", + "widgetName": "TableSR" +} \ No newline at end of file diff --git a/pages/Pending POs/widgets/Tabs1/Tabs1.json b/pages/Pending POs/widgets/Tabs1/Tabs1.json new file mode 100644 index 0000000..f618e8a --- /dev/null +++ b/pages/Pending POs/widgets/Tabs1/Tabs1.json @@ -0,0 +1,324 @@ +{ + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "animateLoading": true, + "backgroundColor": "#FFFFFF", + "borderColor": "#E0DEDE", + "borderRadius": "0.375rem", + "borderWidth": 1, + "bottomRow": 124, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "children": [ + { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 1150, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "canExtend": true, + "detachFromLayout": true, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "flexLayers": [], + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "pa1cnvkey01", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minHeight": 150, + "minWidth": 450, + "mobileBottomRow": 150, + "mobileLeftColumn": 0, + "mobileRightColumn": 602.625, + "mobileTopRow": 0, + "needsErrorInfo": false, + "parentColumnSpace": 1, + "parentId": "pa1tabs001", + "parentRowSpace": 1, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 602.625, + "shouldScrollContents": false, + "tabId": "tab1", + "tabName": "All", + "topRow": 0, + "type": "CANVAS_WIDGET", + "version": 1, + "widgetId": "pa1cnvsall", + "widgetName": "Canvas1" + }, + { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 1150, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "canExtend": true, + "detachFromLayout": true, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "flexLayers": [], + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "pa1cnvkey02", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minHeight": 150, + "minWidth": 450, + "mobileBottomRow": 150, + "mobileLeftColumn": 0, + "mobileRightColumn": 602.625, + "mobileTopRow": 0, + "needsErrorInfo": false, + "parentColumnSpace": 1, + "parentId": "pa1tabs001", + "parentRowSpace": 1, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 602.625, + "shouldScrollContents": false, + "tabId": "tab2", + "tabName": "SLx", + "topRow": 0, + "type": "CANVAS_WIDGET", + "version": 1, + "widgetId": "pa1cnvsslx", + "widgetName": "Canvas2" + }, + { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 1150, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "canExtend": true, + "detachFromLayout": true, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "flexLayers": [], + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "pa1cnvkey03", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minHeight": 150, + "minWidth": 450, + "mobileBottomRow": 150, + "mobileLeftColumn": 0, + "mobileRightColumn": 602.625, + "mobileTopRow": 0, + "needsErrorInfo": false, + "parentColumnSpace": 1, + "parentId": "pa1tabs001", + "parentRowSpace": 1, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 602.625, + "shouldScrollContents": false, + "tabId": "tab3", + "tabName": "ML", + "topRow": 0, + "type": "CANVAS_WIDGET", + "version": 1, + "widgetId": "pa1cnvsml1", + "widgetName": "Canvas3" + }, + { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 1150, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "canExtend": true, + "detachFromLayout": true, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "flexLayers": [], + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "pa1cnvkey04", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minHeight": 150, + "minWidth": 450, + "mobileBottomRow": 150, + "mobileLeftColumn": 0, + "mobileRightColumn": 602.625, + "mobileTopRow": 0, + "needsErrorInfo": false, + "parentColumnSpace": 1, + "parentId": "pa1tabs001", + "parentRowSpace": 1, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 602.625, + "shouldScrollContents": false, + "tabId": "tab4", + "tabName": "ALx", + "topRow": 0, + "type": "CANVAS_WIDGET", + "version": 1, + "widgetId": "pa1cnvsalx", + "widgetName": "Canvas4" + }, + { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 1150, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "canExtend": true, + "detachFromLayout": true, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "flexLayers": [], + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "pa1cnvkey05", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minHeight": 150, + "minWidth": 450, + "mobileBottomRow": 150, + "mobileLeftColumn": 0, + "mobileRightColumn": 602.625, + "mobileTopRow": 0, + "needsErrorInfo": false, + "parentColumnSpace": 1, + "parentId": "pa1tabs001", + "parentRowSpace": 1, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 602.625, + "shouldScrollContents": false, + "tabId": "tab5", + "tabName": "SR", + "topRow": 0, + "type": "CANVAS_WIDGET", + "version": 1, + "widgetId": "pa1cnvssr1", + "widgetName": "Canvas5" + } + ], + "defaultTab": "All", + "dynamicBindingPathList": [ + { + "key": "accentColor" + }, + { + "key": "boxShadow" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "flexVerticalAlignment": "stretch", + "isCanvas": true, + "isLoading": false, + "isVisible": true, + "key": "pa1tabskey1", + "leftColumn": 9, + "maxDynamicHeight": 9000, + "minDynamicHeight": 15, + "minWidth": 450, + "mobileBottomRow": 76, + "mobileLeftColumn": 2, + "mobileRightColumn": 26, + "mobileTopRow": 61, + "needsErrorInfo": false, + "originalBottomRow": 69, + "originalTopRow": 5, + "parentColumnSpace": 25.109375, + "parentId": "0", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 64, + "shouldScrollContents": true, + "shouldShowTabs": true, + "tabsObj": { + "tab1": { + "id": "tab1", + "index": 0, + "isVisible": true, + "label": "All", + "positioning": "vertical", + "widgetId": "pa1cnvsall" + }, + "tab2": { + "id": "tab2", + "index": 1, + "isVisible": true, + "label": "SLx", + "positioning": "vertical", + "widgetId": "pa1cnvsslx" + }, + "tab3": { + "id": "tab3", + "index": 2, + "isVisible": true, + "label": "ML", + "positioning": "vertical", + "widgetId": "pa1cnvsml1" + }, + "tab4": { + "id": "tab4", + "index": 3, + "isVisible": true, + "label": "ALx", + "positioning": "vertical", + "widgetId": "pa1cnvsalx" + }, + "tab5": { + "id": "tab5", + "index": 4, + "isVisible": true, + "label": "SR", + "positioning": "vertical", + "widgetId": "pa1cnvssr1" + } + }, + "topRow": 5, + "type": "TABS_WIDGET", + "version": 3, + "widgetId": "pa1tabs001", + "widgetName": "Tabs1" +} \ No newline at end of file diff --git a/pages/Pending Revisions/Pending Revisions.json b/pages/Pending Revisions/Pending Revisions.json new file mode 100644 index 0000000..f133157 --- /dev/null +++ b/pages/Pending Revisions/Pending Revisions.json @@ -0,0 +1,33 @@ +{ + "gitSyncId": "0598cd55ba984886b668342e_15ec5d9e-3743-4dd6-b670-c9a91142b92a", + "unpublishedPage": { + "isHidden": false, + "layouts": [ + { + "dsl": { + "backgroundColor": "none", + "bottomRow": 1240, + "canExtend": true, + "containerStyle": "none", + "detachFromLayout": true, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [], + "leftColumn": 0, + "minHeight": 1292, + "parentColumnSpace": 1, + "parentRowSpace": 1, + "rightColumn": 4896, + "snapColumns": 64, + "snapRows": 124, + "topRow": 0, + "type": "CANVAS_WIDGET", + "version": 94, + "widgetId": "0", + "widgetName": "MainContainer" + } + } + ], + "name": "Pending Revisions", + "slug": "pending-revisions" + } +} \ No newline at end of file diff --git a/pages/Pending Revisions/queries/pending_revisions_all/metadata.json b/pages/Pending Revisions/queries/pending_revisions_all/metadata.json new file mode 100644 index 0000000..df19c60 --- /dev/null +++ b/pages/Pending Revisions/queries/pending_revisions_all/metadata.json @@ -0,0 +1,31 @@ +{ + "gitSyncId": "0598cd55ba984886b668342e_b1c1fca9-b06c-49e3-b063-720fe1494cf7", + "id": "Pending Revisions_pending_revisions_all", + "pluginId": "postgres-plugin", + "pluginType": "DB", + "unpublishedAction": { + "actionConfiguration": { + "body": "select *\nfrom mpe.get_prototype_dashboard_data(ARRAY ['25502', '27985', '35313', '37111', '34487', '35355']::TEXT[])\n", + "encodeParamsToggle": true, + "paginationType": "NONE", + "pluginSpecifiedTemplates": [ + { + "value": true + } + ], + "timeoutInMillisecond": 10000 + }, + "confirmBeforeExecute": false, + "datasource": { + "id": "xTuple_GoLive", + "isAutoGenerated": false, + "name": "xTuple_GoLive", + "pluginId": "postgres-plugin" + }, + "dynamicBindingPathList": [], + "name": "pending_revisions_all", + "pageId": "Pending Revisions", + "runBehaviour": "AUTOMATIC", + "userSetOnLoad": false + } +} \ No newline at end of file diff --git a/pages/Pending Revisions/queries/pending_revisions_all/pending_revisions_all.txt b/pages/Pending Revisions/queries/pending_revisions_all/pending_revisions_all.txt new file mode 100644 index 0000000..6f476aa --- /dev/null +++ b/pages/Pending Revisions/queries/pending_revisions_all/pending_revisions_all.txt @@ -0,0 +1,2 @@ +select * +from mpe.get_prototype_dashboard_data(ARRAY ['25502', '27985', '35313', '37111', '34487', '35355']::TEXT[]) diff --git a/pages/Pending Revisions/queries/pending_revisions_alx/metadata.json b/pages/Pending Revisions/queries/pending_revisions_alx/metadata.json new file mode 100644 index 0000000..a0c367d --- /dev/null +++ b/pages/Pending Revisions/queries/pending_revisions_alx/metadata.json @@ -0,0 +1,31 @@ +{ + "gitSyncId": "0598cd55ba984886b668342e_9d7abc58-2bd6-4eb5-8503-ee182b143f01", + "id": "Pending Revisions_pending_revisions_alx", + "pluginId": "postgres-plugin", + "pluginType": "DB", + "unpublishedAction": { + "actionConfiguration": { + "body": "select *\nfrom mpe.get_prototype_dashboard_data(ARRAY ['25502', '27985']::TEXT[])\n", + "encodeParamsToggle": true, + "paginationType": "NONE", + "pluginSpecifiedTemplates": [ + { + "value": true + } + ], + "timeoutInMillisecond": 10000 + }, + "confirmBeforeExecute": false, + "datasource": { + "id": "xTuple_GoLive", + "isAutoGenerated": false, + "name": "xTuple_GoLive", + "pluginId": "postgres-plugin" + }, + "dynamicBindingPathList": [], + "name": "pending_revisions_alx", + "pageId": "Pending Revisions", + "runBehaviour": "AUTOMATIC", + "userSetOnLoad": false + } +} \ No newline at end of file diff --git a/pages/Pending Revisions/queries/pending_revisions_alx/pending_revisions_alx.txt b/pages/Pending Revisions/queries/pending_revisions_alx/pending_revisions_alx.txt new file mode 100644 index 0000000..cf4de40 --- /dev/null +++ b/pages/Pending Revisions/queries/pending_revisions_alx/pending_revisions_alx.txt @@ -0,0 +1,2 @@ +select * +from mpe.get_prototype_dashboard_data(ARRAY ['25502', '27985']::TEXT[]) diff --git a/pages/Pending Revisions/queries/pending_revisions_ml/metadata.json b/pages/Pending Revisions/queries/pending_revisions_ml/metadata.json new file mode 100644 index 0000000..b511a56 --- /dev/null +++ b/pages/Pending Revisions/queries/pending_revisions_ml/metadata.json @@ -0,0 +1,31 @@ +{ + "gitSyncId": "0598cd55ba984886b668342e_dbe9fd8c-dab2-4480-ab63-253af80f5477", + "id": "Pending Revisions_pending_revisions_ml", + "pluginId": "postgres-plugin", + "pluginType": "DB", + "unpublishedAction": { + "actionConfiguration": { + "body": "select *\nfrom mpe.get_prototype_dashboard_data(ARRAY ['37111']::TEXT[])\n", + "encodeParamsToggle": true, + "paginationType": "NONE", + "pluginSpecifiedTemplates": [ + { + "value": true + } + ], + "timeoutInMillisecond": 10000 + }, + "confirmBeforeExecute": false, + "datasource": { + "id": "xTuple_GoLive", + "isAutoGenerated": false, + "name": "xTuple_GoLive", + "pluginId": "postgres-plugin" + }, + "dynamicBindingPathList": [], + "name": "pending_revisions_ml", + "pageId": "Pending Revisions", + "runBehaviour": "AUTOMATIC", + "userSetOnLoad": false + } +} \ No newline at end of file diff --git a/pages/Pending Revisions/queries/pending_revisions_ml/pending_revisions_ml.txt b/pages/Pending Revisions/queries/pending_revisions_ml/pending_revisions_ml.txt new file mode 100644 index 0000000..a10201a --- /dev/null +++ b/pages/Pending Revisions/queries/pending_revisions_ml/pending_revisions_ml.txt @@ -0,0 +1,2 @@ +select * +from mpe.get_prototype_dashboard_data(ARRAY ['37111']::TEXT[]) diff --git a/pages/Pending Revisions/queries/pending_revisions_slx/metadata.json b/pages/Pending Revisions/queries/pending_revisions_slx/metadata.json new file mode 100644 index 0000000..84aa02b --- /dev/null +++ b/pages/Pending Revisions/queries/pending_revisions_slx/metadata.json @@ -0,0 +1,31 @@ +{ + "gitSyncId": "0598cd55ba984886b668342e_333bf9d0-4b04-44f8-b6ef-a940e4132992", + "id": "Pending Revisions_pending_revisions_slx", + "pluginId": "postgres-plugin", + "pluginType": "DB", + "unpublishedAction": { + "actionConfiguration": { + "body": "select *\nfrom mpe.get_prototype_dashboard_data(ARRAY ['34487', '35355']::TEXT[])\n", + "encodeParamsToggle": true, + "paginationType": "NONE", + "pluginSpecifiedTemplates": [ + { + "value": true + } + ], + "timeoutInMillisecond": 10000 + }, + "confirmBeforeExecute": false, + "datasource": { + "id": "xTuple_GoLive", + "isAutoGenerated": false, + "name": "xTuple_GoLive", + "pluginId": "postgres-plugin" + }, + "dynamicBindingPathList": [], + "name": "pending_revisions_slx", + "pageId": "Pending Revisions", + "runBehaviour": "AUTOMATIC", + "userSetOnLoad": false + } +} \ No newline at end of file diff --git a/pages/Pending Revisions/queries/pending_revisions_slx/pending_revisions_slx.txt b/pages/Pending Revisions/queries/pending_revisions_slx/pending_revisions_slx.txt new file mode 100644 index 0000000..52b0e5f --- /dev/null +++ b/pages/Pending Revisions/queries/pending_revisions_slx/pending_revisions_slx.txt @@ -0,0 +1,2 @@ +select * +from mpe.get_prototype_dashboard_data(ARRAY ['34487', '35355']::TEXT[]) diff --git a/pages/Pending Revisions/queries/pending_revisions_sr/metadata.json b/pages/Pending Revisions/queries/pending_revisions_sr/metadata.json new file mode 100644 index 0000000..688f3ba --- /dev/null +++ b/pages/Pending Revisions/queries/pending_revisions_sr/metadata.json @@ -0,0 +1,31 @@ +{ + "gitSyncId": "0598cd55ba984886b668342e_6fec5d38-ef2c-4ae0-857f-16e3e1ae5e5c", + "id": "Pending Revisions_pending_revisions_sr", + "pluginId": "postgres-plugin", + "pluginType": "DB", + "unpublishedAction": { + "actionConfiguration": { + "body": "select *\nfrom mpe.get_prototype_dashboard_data(ARRAY ['35313']::TEXT[])\n", + "encodeParamsToggle": true, + "paginationType": "NONE", + "pluginSpecifiedTemplates": [ + { + "value": true + } + ], + "timeoutInMillisecond": 10000 + }, + "confirmBeforeExecute": false, + "datasource": { + "id": "xTuple_GoLive", + "isAutoGenerated": false, + "name": "xTuple_GoLive", + "pluginId": "postgres-plugin" + }, + "dynamicBindingPathList": [], + "name": "pending_revisions_sr", + "pageId": "Pending Revisions", + "runBehaviour": "AUTOMATIC", + "userSetOnLoad": false + } +} \ No newline at end of file diff --git a/pages/Pending Revisions/queries/pending_revisions_sr/pending_revisions_sr.txt b/pages/Pending Revisions/queries/pending_revisions_sr/pending_revisions_sr.txt new file mode 100644 index 0000000..0e20888 --- /dev/null +++ b/pages/Pending Revisions/queries/pending_revisions_sr/pending_revisions_sr.txt @@ -0,0 +1,2 @@ +select * +from mpe.get_prototype_dashboard_data(ARRAY ['35313']::TEXT[]) diff --git a/pages/Pending Revisions/widgets/Container1/Button1.json b/pages/Pending Revisions/widgets/Container1/Button1.json new file mode 100644 index 0000000..20d0587 --- /dev/null +++ b/pages/Pending Revisions/widgets/Container1/Button1.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 8, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "pr1btnkey001", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 8, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 4, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Sales - Capacity Planning', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 8, + "originalTopRow": 4, + "parentColumnSpace": 3.841796875, + "parentId": "pr1canvas01", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Capacity Planning", + "topRow": 4, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "pr1btncplan", + "widgetName": "Button1" +} \ No newline at end of file diff --git a/pages/Pending Revisions/widgets/Container1/Button1Copy.json b/pages/Pending Revisions/widgets/Container1/Button1Copy.json new file mode 100644 index 0000000..c0f606a --- /dev/null +++ b/pages/Pending Revisions/widgets/Container1/Button1Copy.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 12, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "pr1btnkey002", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 12, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 8, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Sales - Units Shipped', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 12, + "originalTopRow": 8, + "parentColumnSpace": 3.841796875, + "parentId": "pr1canvas01", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Units Shipped", + "topRow": 8, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "pr1btnushpd", + "widgetName": "Button1Copy" +} \ No newline at end of file diff --git a/pages/Pending Revisions/widgets/Container1/Button1Copy2.json b/pages/Pending Revisions/widgets/Container1/Button1Copy2.json new file mode 100644 index 0000000..78e6cd0 --- /dev/null +++ b/pages/Pending Revisions/widgets/Container1/Button1Copy2.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 16, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "pr1btnkey003", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 16, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 12, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Sales - Units Ordered', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 16, + "originalTopRow": 12, + "parentColumnSpace": 3.841796875, + "parentId": "pr1canvas01", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Units Ordered", + "topRow": 12, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "pr1btnuordr", + "widgetName": "Button1Copy2" +} \ No newline at end of file diff --git a/pages/Pending Revisions/widgets/Container1/Button2All.json b/pages/Pending Revisions/widgets/Container1/Button2All.json new file mode 100644 index 0000000..ebcec03 --- /dev/null +++ b/pages/Pending Revisions/widgets/Container1/Button2All.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 26, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "pr1btnkey004", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 26, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 22, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Pending POs', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 26, + "originalTopRow": 22, + "parentColumnSpace": 3.841796875, + "parentId": "pr1canvas01", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Pending POs", + "topRow": 22, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "pr1btnpndpo", + "widgetName": "Button2All" +} \ No newline at end of file diff --git a/pages/Pending Revisions/widgets/Container1/Button2Copy.json b/pages/Pending Revisions/widgets/Container1/Button2Copy.json new file mode 100644 index 0000000..00c2f0d --- /dev/null +++ b/pages/Pending Revisions/widgets/Container1/Button2Copy.json @@ -0,0 +1,49 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 30, + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.backgroundColor}}", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [ + { + "key": "buttonColor" + } + ], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "pr1btnkey005", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 30, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 26, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Pending Revisions', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 30, + "originalTopRow": 26, + "parentColumnSpace": 3.841796875, + "parentId": "pr1canvas01", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Pending Revisions", + "topRow": 26, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "pr1btnpndrv", + "widgetName": "Button2Copy" +} \ No newline at end of file diff --git a/pages/Pending Revisions/widgets/Container1/Button2Copy2.json b/pages/Pending Revisions/widgets/Container1/Button2Copy2.json new file mode 100644 index 0000000..4516243 --- /dev/null +++ b/pages/Pending Revisions/widgets/Container1/Button2Copy2.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 34, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "pr1btnkxg01", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 34, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 30, + "needsErrorInfo": false, + "onClick": "{{navigateTo('xGen', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 34, + "originalTopRow": 30, + "parentColumnSpace": 3.841796875, + "parentId": "pr1canvas01", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "xGen", + "topRow": 30, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "pr1btnxgen", + "widgetName": "Button2Copy2" +} \ No newline at end of file diff --git a/pages/Pending Revisions/widgets/Container1/Button3.json b/pages/Pending Revisions/widgets/Container1/Button3.json new file mode 100644 index 0000000..fd47d85 --- /dev/null +++ b/pages/Pending Revisions/widgets/Container1/Button3.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 44, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "pr1btn3k01", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 44, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 40, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Operations - Job Drawing Status', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 44, + "originalTopRow": 40, + "parentColumnSpace": 3.841796875, + "parentId": "pr1canvas01", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Job Drawing Status", + "topRow": 40, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "pr1btn3jds", + "widgetName": "Button3" +} \ No newline at end of file diff --git a/pages/Pending Revisions/widgets/Container1/Button3Copy.json b/pages/Pending Revisions/widgets/Container1/Button3Copy.json new file mode 100644 index 0000000..d58899d --- /dev/null +++ b/pages/Pending Revisions/widgets/Container1/Button3Copy.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 48, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "pr1btn3k02", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 48, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 44, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Operations - Engineering Holds', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 48, + "originalTopRow": 44, + "parentColumnSpace": 3.841796875, + "parentId": "pr1canvas01", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Engineering Holds", + "topRow": 44, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "pr1btn3enh", + "widgetName": "Button3Copy" +} \ No newline at end of file diff --git a/pages/Pending Revisions/widgets/Container1/Button3Copy2.json b/pages/Pending Revisions/widgets/Container1/Button3Copy2.json new file mode 100644 index 0000000..5ed6466 --- /dev/null +++ b/pages/Pending Revisions/widgets/Container1/Button3Copy2.json @@ -0,0 +1,47 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 52, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicHeight": "FIXED", + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "pr1btn3uik", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minWidth": 120, + "mobileBottomRow": 52, + "mobileLeftColumn": 0, + "mobileRightColumn": 64, + "mobileTopRow": 48, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Operations - Unused Items', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 52, + "originalTopRow": 48, + "parentColumnSpace": 3.841796875, + "parentId": "pr1canvas01", + "parentRowSpace": 10, + "placement": "START", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Unused Items", + "topRow": 48, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "pr1btn3ui", + "widgetName": "Button3Copy2" +} \ No newline at end of file diff --git a/pages/Pending Revisions/widgets/Container1/Container1.json b/pages/Pending Revisions/widgets/Container1/Container1.json new file mode 100644 index 0000000..15b03c4 --- /dev/null +++ b/pages/Pending Revisions/widgets/Container1/Container1.json @@ -0,0 +1,87 @@ +{ + "animateLoading": true, + "backgroundColor": "#FFFFFF", + "borderColor": "#E0DEDE", + "borderRadius": "0px", + "borderWidth": "1", + "bottomRow": 124, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "children": [ + { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 1240, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "canExtend": false, + "containerStyle": "none", + "detachFromLayout": true, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "flexLayers": [], + "isLoading": false, + "isVisible": true, + "key": "xorz42kdhi", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minHeight": 100, + "minWidth": 450, + "mobileBottomRow": 100, + "mobileLeftColumn": 0, + "mobileRightColumn": 132.9375, + "mobileTopRow": 0, + "needsErrorInfo": false, + "parentColumnSpace": 1, + "parentId": "pr1c0ntain", + "parentRowSpace": 1, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 132.9375, + "topRow": 0, + "type": "CANVAS_WIDGET", + "version": 1, + "widgetId": "pr1canvas01", + "widgetName": "Canvas1" + } + ], + "containerStyle": "card", + "dynamicBindingPathList": [ + { + "key": "boxShadow" + } + ], + "dynamicHeight": "FIXED", + "dynamicTriggerPathList": [], + "flexVerticalAlignment": "stretch", + "isCanvas": true, + "isLoading": false, + "isVisible": true, + "key": "36jaq5m9iy", + "leftColumn": 0, + "maxDynamicHeight": 12, + "minDynamicHeight": 10, + "minWidth": 450, + "mobileBottomRow": 10, + "mobileLeftColumn": 0, + "mobileRightColumn": 3, + "mobileTopRow": 0, + "needsErrorInfo": false, + "parentColumnSpace": 44.3125, + "parentId": "0", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 9, + "shouldScrollContents": true, + "topRow": 0, + "type": "CONTAINER_WIDGET", + "version": 1, + "widgetId": "pr1c0ntain", + "widgetName": "Container1" +} \ No newline at end of file diff --git a/pages/Pending Revisions/widgets/Container1/Text1.json b/pages/Pending Revisions/widgets/Container1/Text1.json new file mode 100644 index 0000000..d05039b --- /dev/null +++ b/pages/Pending Revisions/widgets/Container1/Text1.json @@ -0,0 +1,52 @@ +{ + "animateLoading": true, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 4, + "dynamicBindingPathList": [ + { + "key": "truncateButtonColor" + }, + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", + "fontSize": "1rem", + "fontStyle": "BOLD", + "isLoading": false, + "isVisible": true, + "key": "pr1txkey001", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minWidth": 450, + "mobileBottomRow": 4, + "mobileLeftColumn": 10, + "mobileRightColumn": 26, + "mobileTopRow": 0, + "needsErrorInfo": false, + "originalBottomRow": 4, + "originalTopRow": 0, + "overflow": "NONE", + "parentColumnSpace": 3.841796875, + "parentId": "pr1canvas01", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 64, + "shouldTruncate": false, + "text": "Sales", + "textAlign": "LEFT", + "textColor": "#231F20", + "topRow": 0, + "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "type": "TEXT_WIDGET", + "version": 1, + "widgetId": "pr1txtsales", + "widgetName": "Text1" +} \ No newline at end of file diff --git a/pages/Pending Revisions/widgets/Container1/Text2.json b/pages/Pending Revisions/widgets/Container1/Text2.json new file mode 100644 index 0000000..2bb9865 --- /dev/null +++ b/pages/Pending Revisions/widgets/Container1/Text2.json @@ -0,0 +1,52 @@ +{ + "animateLoading": true, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 22, + "dynamicBindingPathList": [ + { + "key": "truncateButtonColor" + }, + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", + "fontSize": "1rem", + "fontStyle": "BOLD", + "isLoading": false, + "isVisible": true, + "key": "pr1txkey002", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minWidth": 450, + "mobileBottomRow": 22, + "mobileLeftColumn": 10, + "mobileRightColumn": 26, + "mobileTopRow": 18, + "needsErrorInfo": false, + "originalBottomRow": 22, + "originalTopRow": 18, + "overflow": "NONE", + "parentColumnSpace": 3.841796875, + "parentId": "pr1canvas01", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 64, + "shouldTruncate": false, + "text": "Engineering", + "textAlign": "LEFT", + "textColor": "#231F20", + "topRow": 18, + "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "type": "TEXT_WIDGET", + "version": 1, + "widgetId": "pr1txtengnr", + "widgetName": "Text2" +} \ No newline at end of file diff --git a/pages/Pending Revisions/widgets/Container1/Text3.json b/pages/Pending Revisions/widgets/Container1/Text3.json new file mode 100644 index 0000000..3747412 --- /dev/null +++ b/pages/Pending Revisions/widgets/Container1/Text3.json @@ -0,0 +1,52 @@ +{ + "animateLoading": true, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 40, + "dynamicBindingPathList": [ + { + "key": "truncateButtonColor" + }, + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", + "fontSize": "1rem", + "fontStyle": "BOLD", + "isLoading": false, + "isVisible": true, + "key": "pr1txt3k01", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minWidth": 450, + "mobileBottomRow": 40, + "mobileLeftColumn": 10, + "mobileRightColumn": 26, + "mobileTopRow": 36, + "needsErrorInfo": false, + "originalBottomRow": 40, + "originalTopRow": 36, + "overflow": "NONE", + "parentColumnSpace": 3.841796875, + "parentId": "pr1canvas01", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 64, + "shouldTruncate": false, + "text": "Operations", + "textAlign": "LEFT", + "textColor": "#231F20", + "topRow": 36, + "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "type": "TEXT_WIDGET", + "version": 1, + "widgetId": "pr1txt3ops", + "widgetName": "Text3" +} \ No newline at end of file diff --git a/pages/Pending Revisions/widgets/Heading.json b/pages/Pending Revisions/widgets/Heading.json new file mode 100644 index 0000000..18c893b --- /dev/null +++ b/pages/Pending Revisions/widgets/Heading.json @@ -0,0 +1,52 @@ +{ + "animateLoading": true, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 5, + "dynamicBindingPathList": [ + { + "key": "truncateButtonColor" + }, + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", + "fontSize": "1.875rem", + "fontStyle": "BOLD", + "isLoading": false, + "isVisible": true, + "key": "pr1hdgkey01", + "leftColumn": 9, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minWidth": 450, + "mobileBottomRow": 5, + "mobileLeftColumn": 1, + "mobileRightColumn": 17, + "mobileTopRow": 1, + "needsErrorInfo": false, + "originalBottomRow": 5, + "originalTopRow": 0, + "overflow": "NONE", + "parentColumnSpace": 25.109375, + "parentId": "0", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 64, + "shouldTruncate": false, + "text": "Pending Revisions", + "textAlign": "LEFT", + "textColor": "#231F20", + "topRow": 0, + "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "type": "TEXT_WIDGET", + "version": 1, + "widgetId": "pr1heading1", + "widgetName": "Heading" +} \ No newline at end of file diff --git a/pages/Pending Revisions/widgets/Tabs1/TableALx.json b/pages/Pending Revisions/widgets/Tabs1/TableALx.json new file mode 100644 index 0000000..00457e4 --- /dev/null +++ b/pages/Pending Revisions/widgets/Tabs1/TableALx.json @@ -0,0 +1,101 @@ +{ + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "animateLoading": true, + "borderColor": "#E0DEDE", + "borderRadius": "0.375rem", + "borderWidth": "1", + "bottomRow": 58, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "canFreezeColumn": true, + "childStylesheet": { + "button": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "editActions": { + "discardBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "discardButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "saveBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "saveButtonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "iconButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "menuButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "menuColor": "{{appsmith.theme.colors.primaryColor}}" + } + }, + "columnOrder": [], + "columnWidthMap": {}, + "compactMode": "SHORT", + "customIsLoading": false, + "customIsLoadingValue": "", + "defaultPageSize": 0, + "defaultSelectedRowIndex": 0, + "defaultSelectedRowIndices": [ + 0 + ], + "delimiter": ",", + "dynamicBindingPathList": [ + { + "key": "accentColor" + }, + { + "key": "boxShadow" + }, + { + "key": "tableData" + } + ], + "dynamicPropertyPathList": [ + { + "key": "textSize" + } + ], + "dynamicTriggerPathList": [], + "enableClientSideSearch": true, + "endOfData": false, + "flexVerticalAlignment": "start", + "horizontalAlignment": "LEFT", + "inlineEditingSaveOption": "ROW_LEVEL", + "isLoading": false, + "isSortable": true, + "isVisible": true, + "isVisibleDownload": true, + "isVisibleFilters": false, + "isVisiblePagination": true, + "isVisibleSearch": false, + "key": "pr1tblalxkey", + "label": "Data", + "leftColumn": 0, + "minWidth": 450, + "mobileBottomRow": 31, + "mobileLeftColumn": 1, + "mobileRightColumn": 35, + "mobileTopRow": 5, + "needsErrorInfo": false, + "originalBottomRow": 58, + "originalTopRow": 0, + "parentColumnSpace": 11.265625, + "parentId": "pr1cnvsalx", + "parentRowSpace": 10, + "primaryColumns": {}, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 62, + "searchKey": "", + "tableData": "{{pending_revisions_alx.data}}", + "textSize": "0.775rem", + "topRow": 0, + "totalRecordsCount": 0, + "type": "TABLE_WIDGET_V2", + "version": 2, + "verticalAlignment": "CENTER", + "widgetId": "pr1tblalx1", + "widgetName": "TableALx" +} \ No newline at end of file diff --git a/pages/Pending Revisions/widgets/Tabs1/TableAll.json b/pages/Pending Revisions/widgets/Tabs1/TableAll.json new file mode 100644 index 0000000..8ae997d --- /dev/null +++ b/pages/Pending Revisions/widgets/Tabs1/TableAll.json @@ -0,0 +1,598 @@ +{ + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "animateLoading": true, + "borderColor": "#E0DEDE", + "borderRadius": "0.375rem", + "borderWidth": "1", + "bottomRow": 113, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "canFreezeColumn": true, + "childStylesheet": { + "button": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "editActions": { + "discardBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "discardButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "saveBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "saveButtonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "iconButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "menuButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "menuColor": "{{appsmith.theme.colors.primaryColor}}" + } + }, + "columnOrder": [ + "item", + "type", + "classcode", + "description", + "specification", + "wo_posted", + "wo_wip", + "documents", + "ecn", + "jira", + "ecn_user", + "matl_change_user", + "bom_change_user" + ], + "columnUpdatedAt": 1773398591802, + "columnWidthMap": {}, + "compactMode": "SHORT", + "customIsLoading": false, + "customIsLoadingValue": "", + "defaultPageSize": 0, + "defaultSelectedRowIndex": 0, + "defaultSelectedRowIndices": [ + 0 + ], + "delimiter": ",", + "dynamicBindingPathList": [ + { + "key": "accentColor" + }, + { + "key": "boxShadow" + }, + { + "key": "tableData" + }, + { + "key": "primaryColumns.item.computedValue" + }, + { + "key": "primaryColumns.type.computedValue" + }, + { + "key": "primaryColumns.classcode.computedValue" + }, + { + "key": "primaryColumns.description.computedValue" + }, + { + "key": "primaryColumns.specification.computedValue" + }, + { + "key": "primaryColumns.wo_posted.computedValue" + }, + { + "key": "primaryColumns.wo_wip.computedValue" + }, + { + "key": "primaryColumns.documents.computedValue" + }, + { + "key": "primaryColumns.ecn.computedValue" + }, + { + "key": "primaryColumns.jira.computedValue" + }, + { + "key": "primaryColumns.ecn_user.computedValue" + }, + { + "key": "primaryColumns.matl_change_user.computedValue" + }, + { + "key": "primaryColumns.bom_change_user.computedValue" + } + ], + "dynamicPropertyPathList": [ + { + "key": "textSize" + } + ], + "dynamicTriggerPathList": [], + "enableClientSideSearch": true, + "endOfData": false, + "flexVerticalAlignment": "start", + "horizontalAlignment": "LEFT", + "inlineEditingSaveOption": "ROW_LEVEL", + "isLoading": false, + "isSortable": true, + "isVisible": true, + "isVisibleDownload": true, + "isVisibleFilters": false, + "isVisiblePagination": true, + "isVisibleSearch": false, + "key": "pr1tblallkey", + "label": "Data", + "leftColumn": 0, + "minWidth": 450, + "mobileBottomRow": 31, + "mobileLeftColumn": 1, + "mobileRightColumn": 35, + "mobileTopRow": 5, + "needsErrorInfo": false, + "originalBottomRow": 58, + "originalTopRow": 0, + "parentColumnSpace": 11.265625, + "parentId": "pr1cnvsall", + "parentRowSpace": 10, + "primaryColumns": { + "bom_change_user": { + "alias": "bom_change_user", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = TableAll.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"bom_change_user\"])) : bom_change_user })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "bom_change_user", + "index": 12, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "bom_change_user", + "notation": "standard", + "originalId": "bom_change_user", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "classcode": { + "alias": "classcode", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = TableAll.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"classcode\"])) : classcode })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "classcode", + "index": 2, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "classcode", + "notation": "standard", + "originalId": "classcode", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "description": { + "alias": "description", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = TableAll.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"description\"])) : description })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "description", + "index": 3, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "description", + "notation": "standard", + "originalId": "description", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "documents": { + "alias": "documents", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = TableAll.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"documents\"])) : documents })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "documents", + "index": 7, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "documents", + "notation": "standard", + "originalId": "documents", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "ecn": { + "alias": "ecn", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = TableAll.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"ecn\"])) : ecn })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "ecn", + "index": 8, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "ecn", + "notation": "standard", + "originalId": "ecn", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "ecn_user": { + "alias": "ecn_user", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = TableAll.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"ecn_user\"])) : ecn_user })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "ecn_user", + "index": 10, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "ecn_user", + "notation": "standard", + "originalId": "ecn_user", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "item": { + "alias": "item", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = TableAll.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"item\"])) : item })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "item", + "index": 0, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "item", + "notation": "standard", + "originalId": "item", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "jira": { + "alias": "jira", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = TableAll.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"jira\"])) : jira })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "jira", + "index": 9, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "jira", + "notation": "standard", + "originalId": "jira", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "matl_change_user": { + "alias": "matl_change_user", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = TableAll.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"matl_change_user\"])) : matl_change_user })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "matl_change_user", + "index": 11, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "matl_change_user", + "notation": "standard", + "originalId": "matl_change_user", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "specification": { + "alias": "specification", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = TableAll.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"specification\"])) : specification })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "specification", + "index": 4, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "specification", + "notation": "standard", + "originalId": "specification", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "type": { + "alias": "type", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = TableAll.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"type\"])) : type })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "type", + "index": 1, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "type", + "notation": "standard", + "originalId": "type", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "wo_posted": { + "alias": "wo_posted", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "number", + "computedValue": "{{(() => { const tableData = TableAll.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"wo_posted\"])) : wo_posted })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "wo_posted", + "index": 5, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "wo_posted", + "notation": "standard", + "originalId": "wo_posted", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "wo_wip": { + "alias": "wo_wip", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "number", + "computedValue": "{{(() => { const tableData = TableAll.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"wo_wip\"])) : wo_wip })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "wo_wip", + "index": 6, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "wo_wip", + "notation": "standard", + "originalId": "wo_wip", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + } + }, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 62, + "searchKey": "", + "tableData": "{{pending_revisions_all.data}}", + "textSize": "0.775rem", + "topRow": 0, + "totalRecordsCount": 0, + "type": "TABLE_WIDGET_V2", + "version": 2, + "verticalAlignment": "CENTER", + "widgetId": "pr1tblall1", + "widgetName": "TableAll" +} \ No newline at end of file diff --git a/pages/Pending Revisions/widgets/Tabs1/TableML.json b/pages/Pending Revisions/widgets/Tabs1/TableML.json new file mode 100644 index 0000000..76f28ae --- /dev/null +++ b/pages/Pending Revisions/widgets/Tabs1/TableML.json @@ -0,0 +1,101 @@ +{ + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "animateLoading": true, + "borderColor": "#E0DEDE", + "borderRadius": "0.375rem", + "borderWidth": "1", + "bottomRow": 58, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "canFreezeColumn": true, + "childStylesheet": { + "button": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "editActions": { + "discardBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "discardButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "saveBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "saveButtonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "iconButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "menuButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "menuColor": "{{appsmith.theme.colors.primaryColor}}" + } + }, + "columnOrder": [], + "columnWidthMap": {}, + "compactMode": "SHORT", + "customIsLoading": false, + "customIsLoadingValue": "", + "defaultPageSize": 0, + "defaultSelectedRowIndex": 0, + "defaultSelectedRowIndices": [ + 0 + ], + "delimiter": ",", + "dynamicBindingPathList": [ + { + "key": "accentColor" + }, + { + "key": "boxShadow" + }, + { + "key": "tableData" + } + ], + "dynamicPropertyPathList": [ + { + "key": "textSize" + } + ], + "dynamicTriggerPathList": [], + "enableClientSideSearch": true, + "endOfData": false, + "flexVerticalAlignment": "start", + "horizontalAlignment": "LEFT", + "inlineEditingSaveOption": "ROW_LEVEL", + "isLoading": false, + "isSortable": true, + "isVisible": true, + "isVisibleDownload": true, + "isVisibleFilters": false, + "isVisiblePagination": true, + "isVisibleSearch": false, + "key": "pr1tblmlkey", + "label": "Data", + "leftColumn": 0, + "minWidth": 450, + "mobileBottomRow": 31, + "mobileLeftColumn": 1, + "mobileRightColumn": 35, + "mobileTopRow": 5, + "needsErrorInfo": false, + "originalBottomRow": 58, + "originalTopRow": 0, + "parentColumnSpace": 11.265625, + "parentId": "pr1cnvsml1", + "parentRowSpace": 10, + "primaryColumns": {}, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 62, + "searchKey": "", + "tableData": "{{pending_revisions_ml.data}}", + "textSize": "0.775rem", + "topRow": 0, + "totalRecordsCount": 0, + "type": "TABLE_WIDGET_V2", + "version": 2, + "verticalAlignment": "CENTER", + "widgetId": "pr1tblml01", + "widgetName": "TableML" +} \ No newline at end of file diff --git a/pages/Pending Revisions/widgets/Tabs1/TableSLx.json b/pages/Pending Revisions/widgets/Tabs1/TableSLx.json new file mode 100644 index 0000000..006de95 --- /dev/null +++ b/pages/Pending Revisions/widgets/Tabs1/TableSLx.json @@ -0,0 +1,101 @@ +{ + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "animateLoading": true, + "borderColor": "#E0DEDE", + "borderRadius": "0.375rem", + "borderWidth": "1", + "bottomRow": 58, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "canFreezeColumn": true, + "childStylesheet": { + "button": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "editActions": { + "discardBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "discardButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "saveBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "saveButtonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "iconButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "menuButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "menuColor": "{{appsmith.theme.colors.primaryColor}}" + } + }, + "columnOrder": [], + "columnWidthMap": {}, + "compactMode": "SHORT", + "customIsLoading": false, + "customIsLoadingValue": "", + "defaultPageSize": 0, + "defaultSelectedRowIndex": 0, + "defaultSelectedRowIndices": [ + 0 + ], + "delimiter": ",", + "dynamicBindingPathList": [ + { + "key": "accentColor" + }, + { + "key": "boxShadow" + }, + { + "key": "tableData" + } + ], + "dynamicPropertyPathList": [ + { + "key": "textSize" + } + ], + "dynamicTriggerPathList": [], + "enableClientSideSearch": true, + "endOfData": false, + "flexVerticalAlignment": "start", + "horizontalAlignment": "LEFT", + "inlineEditingSaveOption": "ROW_LEVEL", + "isLoading": false, + "isSortable": true, + "isVisible": true, + "isVisibleDownload": true, + "isVisibleFilters": false, + "isVisiblePagination": true, + "isVisibleSearch": false, + "key": "pr1tblslxkey", + "label": "Data", + "leftColumn": 0, + "minWidth": 450, + "mobileBottomRow": 31, + "mobileLeftColumn": 1, + "mobileRightColumn": 35, + "mobileTopRow": 5, + "needsErrorInfo": false, + "originalBottomRow": 58, + "originalTopRow": 0, + "parentColumnSpace": 11.265625, + "parentId": "pr1cnvsslx", + "parentRowSpace": 10, + "primaryColumns": {}, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 62, + "searchKey": "", + "tableData": "{{pending_revisions_slx.data}}", + "textSize": "0.775rem", + "topRow": 0, + "totalRecordsCount": 0, + "type": "TABLE_WIDGET_V2", + "version": 2, + "verticalAlignment": "CENTER", + "widgetId": "pr1tblslx1", + "widgetName": "TableSLx" +} \ No newline at end of file diff --git a/pages/Pending Revisions/widgets/Tabs1/TableSR.json b/pages/Pending Revisions/widgets/Tabs1/TableSR.json new file mode 100644 index 0000000..dd0e9f9 --- /dev/null +++ b/pages/Pending Revisions/widgets/Tabs1/TableSR.json @@ -0,0 +1,101 @@ +{ + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "animateLoading": true, + "borderColor": "#E0DEDE", + "borderRadius": "0.375rem", + "borderWidth": "1", + "bottomRow": 58, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "canFreezeColumn": true, + "childStylesheet": { + "button": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "editActions": { + "discardBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "discardButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "saveBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "saveButtonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "iconButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "menuButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "menuColor": "{{appsmith.theme.colors.primaryColor}}" + } + }, + "columnOrder": [], + "columnWidthMap": {}, + "compactMode": "SHORT", + "customIsLoading": false, + "customIsLoadingValue": "", + "defaultPageSize": 0, + "defaultSelectedRowIndex": 0, + "defaultSelectedRowIndices": [ + 0 + ], + "delimiter": ",", + "dynamicBindingPathList": [ + { + "key": "accentColor" + }, + { + "key": "boxShadow" + }, + { + "key": "tableData" + } + ], + "dynamicPropertyPathList": [ + { + "key": "textSize" + } + ], + "dynamicTriggerPathList": [], + "enableClientSideSearch": true, + "endOfData": false, + "flexVerticalAlignment": "start", + "horizontalAlignment": "LEFT", + "inlineEditingSaveOption": "ROW_LEVEL", + "isLoading": false, + "isSortable": true, + "isVisible": true, + "isVisibleDownload": true, + "isVisibleFilters": false, + "isVisiblePagination": true, + "isVisibleSearch": false, + "key": "pr1tblsrkey", + "label": "Data", + "leftColumn": 0, + "minWidth": 450, + "mobileBottomRow": 31, + "mobileLeftColumn": 1, + "mobileRightColumn": 35, + "mobileTopRow": 5, + "needsErrorInfo": false, + "originalBottomRow": 58, + "originalTopRow": 0, + "parentColumnSpace": 11.265625, + "parentId": "pr1cnvssr1", + "parentRowSpace": 10, + "primaryColumns": {}, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 62, + "searchKey": "", + "tableData": "{{pending_revisions_sr.data}}", + "textSize": "0.775rem", + "topRow": 0, + "totalRecordsCount": 0, + "type": "TABLE_WIDGET_V2", + "version": 2, + "verticalAlignment": "CENTER", + "widgetId": "pr1tblsr01", + "widgetName": "TableSR" +} \ No newline at end of file diff --git a/pages/Pending Revisions/widgets/Tabs1/Tabs1.json b/pages/Pending Revisions/widgets/Tabs1/Tabs1.json new file mode 100644 index 0000000..9902e96 --- /dev/null +++ b/pages/Pending Revisions/widgets/Tabs1/Tabs1.json @@ -0,0 +1,324 @@ +{ + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "animateLoading": true, + "backgroundColor": "#FFFFFF", + "borderColor": "#E0DEDE", + "borderRadius": "0.375rem", + "borderWidth": 1, + "bottomRow": 124, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "children": [ + { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 1150, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "canExtend": true, + "detachFromLayout": true, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "flexLayers": [], + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "pr1cnvkey01", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minHeight": 150, + "minWidth": 450, + "mobileBottomRow": 150, + "mobileLeftColumn": 0, + "mobileRightColumn": 602.625, + "mobileTopRow": 0, + "needsErrorInfo": false, + "parentColumnSpace": 1, + "parentId": "pr1tabs001", + "parentRowSpace": 1, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 602.625, + "shouldScrollContents": false, + "tabId": "tab1", + "tabName": "All", + "topRow": 0, + "type": "CANVAS_WIDGET", + "version": 1, + "widgetId": "pr1cnvsall", + "widgetName": "Canvas1" + }, + { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 1150, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "canExtend": true, + "detachFromLayout": true, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "flexLayers": [], + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "pr1cnvkey02", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minHeight": 150, + "minWidth": 450, + "mobileBottomRow": 150, + "mobileLeftColumn": 0, + "mobileRightColumn": 602.625, + "mobileTopRow": 0, + "needsErrorInfo": false, + "parentColumnSpace": 1, + "parentId": "pr1tabs001", + "parentRowSpace": 1, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 602.625, + "shouldScrollContents": false, + "tabId": "tab2", + "tabName": "ALx", + "topRow": 0, + "type": "CANVAS_WIDGET", + "version": 1, + "widgetId": "pr1cnvsalx", + "widgetName": "Canvas2" + }, + { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 1150, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "canExtend": true, + "detachFromLayout": true, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "flexLayers": [], + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "pr1cnvkey03", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minHeight": 150, + "minWidth": 450, + "mobileBottomRow": 150, + "mobileLeftColumn": 0, + "mobileRightColumn": 602.625, + "mobileTopRow": 0, + "needsErrorInfo": false, + "parentColumnSpace": 1, + "parentId": "pr1tabs001", + "parentRowSpace": 1, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 602.625, + "shouldScrollContents": false, + "tabId": "tab3", + "tabName": "SR", + "topRow": 0, + "type": "CANVAS_WIDGET", + "version": 1, + "widgetId": "pr1cnvssr1", + "widgetName": "Canvas3" + }, + { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 1150, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "canExtend": true, + "detachFromLayout": true, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "flexLayers": [], + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "pr1cnvkey04", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minHeight": 150, + "minWidth": 450, + "mobileBottomRow": 150, + "mobileLeftColumn": 0, + "mobileRightColumn": 602.625, + "mobileTopRow": 0, + "needsErrorInfo": false, + "parentColumnSpace": 1, + "parentId": "pr1tabs001", + "parentRowSpace": 1, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 602.625, + "shouldScrollContents": false, + "tabId": "tab4", + "tabName": "ML", + "topRow": 0, + "type": "CANVAS_WIDGET", + "version": 1, + "widgetId": "pr1cnvsml1", + "widgetName": "Canvas4" + }, + { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 1150, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "canExtend": true, + "detachFromLayout": true, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "flexLayers": [], + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "pr1cnvkey05", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minHeight": 150, + "minWidth": 450, + "mobileBottomRow": 150, + "mobileLeftColumn": 0, + "mobileRightColumn": 602.625, + "mobileTopRow": 0, + "needsErrorInfo": false, + "parentColumnSpace": 1, + "parentId": "pr1tabs001", + "parentRowSpace": 1, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 602.625, + "shouldScrollContents": false, + "tabId": "tab5", + "tabName": "SLx", + "topRow": 0, + "type": "CANVAS_WIDGET", + "version": 1, + "widgetId": "pr1cnvsslx", + "widgetName": "Canvas5" + } + ], + "defaultTab": "All", + "dynamicBindingPathList": [ + { + "key": "accentColor" + }, + { + "key": "boxShadow" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "flexVerticalAlignment": "stretch", + "isCanvas": true, + "isLoading": false, + "isVisible": true, + "key": "pr1tabskey1", + "leftColumn": 9, + "maxDynamicHeight": 9000, + "minDynamicHeight": 15, + "minWidth": 450, + "mobileBottomRow": 76, + "mobileLeftColumn": 2, + "mobileRightColumn": 26, + "mobileTopRow": 61, + "needsErrorInfo": false, + "originalBottomRow": 125, + "originalTopRow": 5, + "parentColumnSpace": 25.109375, + "parentId": "0", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 64, + "shouldScrollContents": true, + "shouldShowTabs": true, + "tabsObj": { + "tab1": { + "id": "tab1", + "index": 0, + "isVisible": true, + "label": "All", + "positioning": "vertical", + "widgetId": "pr1cnvsall" + }, + "tab2": { + "id": "tab2", + "index": 1, + "isVisible": true, + "label": "ALx", + "positioning": "vertical", + "widgetId": "pr1cnvsalx" + }, + "tab3": { + "id": "tab3", + "index": 2, + "isVisible": true, + "label": "SR", + "positioning": "vertical", + "widgetId": "pr1cnvssr1" + }, + "tab4": { + "id": "tab4", + "index": 3, + "isVisible": true, + "label": "ML", + "positioning": "vertical", + "widgetId": "pr1cnvsml1" + }, + "tab5": { + "id": "tab5", + "index": 4, + "isVisible": true, + "label": "SLx", + "positioning": "vertical", + "widgetId": "pr1cnvsslx" + } + }, + "topRow": 5, + "type": "TABS_WIDGET", + "version": 3, + "widgetId": "pr1tabs001", + "widgetName": "Tabs1" +} \ No newline at end of file diff --git a/pages/Sales - Capacity Planning/Sales - Capacity Planning.json b/pages/Sales - Capacity Planning/Sales - Capacity Planning.json new file mode 100644 index 0000000..5285fd3 --- /dev/null +++ b/pages/Sales - Capacity Planning/Sales - Capacity Planning.json @@ -0,0 +1,33 @@ +{ + "gitSyncId": "6968b6e8271e5e0befde3194_6682924a-a29a-409c-b7a9-2f8bceee050f", + "unpublishedPage": { + "isHidden": false, + "layouts": [ + { + "dsl": { + "backgroundColor": "none", + "bottomRow": 1240, + "canExtend": true, + "containerStyle": "none", + "detachFromLayout": true, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [], + "leftColumn": 0, + "minHeight": 1292, + "parentColumnSpace": 1, + "parentRowSpace": 1, + "rightColumn": 4896, + "snapColumns": 64, + "snapRows": 124, + "topRow": 0, + "type": "CANVAS_WIDGET", + "version": 94, + "widgetId": "0", + "widgetName": "MainContainer" + } + } + ], + "name": "Sales - Capacity Planning", + "slug": "sales-capacity-planning" + } +} \ No newline at end of file diff --git a/pages/Sales - Capacity Planning/queries/capacity_display_all/capacity_display_all.txt b/pages/Sales - Capacity Planning/queries/capacity_display_all/capacity_display_all.txt new file mode 100644 index 0000000..f70f31d --- /dev/null +++ b/pages/Sales - Capacity Planning/queries/capacity_display_all/capacity_display_all.txt @@ -0,0 +1 @@ +select * from mpe.poormancapacity; \ No newline at end of file diff --git a/pages/Sales - Capacity Planning/queries/capacity_display_all/metadata.json b/pages/Sales - Capacity Planning/queries/capacity_display_all/metadata.json new file mode 100644 index 0000000..f752765 --- /dev/null +++ b/pages/Sales - Capacity Planning/queries/capacity_display_all/metadata.json @@ -0,0 +1,31 @@ +{ + "gitSyncId": "6968b6e8271e5e0befde3194_b08e8e8d-3da7-45d6-b038-d06b2bafa9e4", + "id": "Sales - Capacity Planning_capacity_display_all", + "pluginId": "postgres-plugin", + "pluginType": "DB", + "unpublishedAction": { + "actionConfiguration": { + "body": "select * from mpe.poormancapacity;", + "encodeParamsToggle": true, + "paginationType": "NONE", + "pluginSpecifiedTemplates": [ + { + "value": true + } + ], + "timeoutInMillisecond": 10000 + }, + "confirmBeforeExecute": false, + "datasource": { + "id": "xTuple_GoLive", + "isAutoGenerated": false, + "name": "xTuple_GoLive", + "pluginId": "postgres-plugin" + }, + "dynamicBindingPathList": [], + "name": "capacity_display_all", + "pageId": "Sales - Capacity Planning", + "runBehaviour": "AUTOMATIC", + "userSetOnLoad": false + } +} \ No newline at end of file diff --git a/pages/Sales - Capacity Planning/widgets/Container1/Button1.json b/pages/Sales - Capacity Planning/widgets/Container1/Button1.json new file mode 100644 index 0000000..9bbd73e --- /dev/null +++ b/pages/Sales - Capacity Planning/widgets/Container1/Button1.json @@ -0,0 +1,49 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 8, + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.backgroundColor}}", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [ + { + "key": "buttonColor" + } + ], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "0k5ucqsuin", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 8, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 4, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Sales - Capacity Planning', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 8, + "originalTopRow": 4, + "parentColumnSpace": 3.841796875, + "parentId": "x3pc17vp6q", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Capacity Planning", + "topRow": 4, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "s188sbgcao", + "widgetName": "Button1" +} \ No newline at end of file diff --git a/pages/Sales - Capacity Planning/widgets/Container1/Button1Copy.json b/pages/Sales - Capacity Planning/widgets/Container1/Button1Copy.json new file mode 100644 index 0000000..bd9dfd8 --- /dev/null +++ b/pages/Sales - Capacity Planning/widgets/Container1/Button1Copy.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 12, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "0k5ucqsuin", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 8, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 4, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Sales - Units Shipped', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 12, + "originalTopRow": 8, + "parentColumnSpace": 3.841796875, + "parentId": "x3pc17vp6q", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Units Shipped", + "topRow": 8, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "6r4m823fno", + "widgetName": "Button1Copy" +} \ No newline at end of file diff --git a/pages/Sales - Capacity Planning/widgets/Container1/Button1Copy2.json b/pages/Sales - Capacity Planning/widgets/Container1/Button1Copy2.json new file mode 100644 index 0000000..ce0d480 --- /dev/null +++ b/pages/Sales - Capacity Planning/widgets/Container1/Button1Copy2.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 16, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "0j7c9d2q1h", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 8, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 4, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Sales - Units Ordered', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 16, + "originalTopRow": 12, + "parentColumnSpace": 3.841796875, + "parentId": "wj6fxg5wpg", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Units Ordered", + "topRow": 12, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "1p4m2n8kci", + "widgetName": "Button1Copy2" +} \ No newline at end of file diff --git a/pages/Sales - Capacity Planning/widgets/Container1/Button2All.json b/pages/Sales - Capacity Planning/widgets/Container1/Button2All.json new file mode 100644 index 0000000..4e3fa00 --- /dev/null +++ b/pages/Sales - Capacity Planning/widgets/Container1/Button2All.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 26, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "cp1btnkeyall", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 26, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 22, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Pending POs', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 26, + "originalTopRow": 22, + "parentColumnSpace": 3.841796875, + "parentId": "x3pc17vp6q", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Pending POs", + "topRow": 22, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "cp1btnallpn", + "widgetName": "Button2All" +} \ No newline at end of file diff --git a/pages/Sales - Capacity Planning/widgets/Container1/Button2Copy.json b/pages/Sales - Capacity Planning/widgets/Container1/Button2Copy.json new file mode 100644 index 0000000..3689727 --- /dev/null +++ b/pages/Sales - Capacity Planning/widgets/Container1/Button2Copy.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 30, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "cp1btnkey005", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 30, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 26, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Pending Revisions', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 30, + "originalTopRow": 26, + "parentColumnSpace": 3.841796875, + "parentId": "x3pc17vp6q", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Pending Revisions", + "topRow": 26, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "cp1btnpndrv", + "widgetName": "Button2Copy" +} \ No newline at end of file diff --git a/pages/Sales - Capacity Planning/widgets/Container1/Button2Copy2.json b/pages/Sales - Capacity Planning/widgets/Container1/Button2Copy2.json new file mode 100644 index 0000000..f2e70a4 --- /dev/null +++ b/pages/Sales - Capacity Planning/widgets/Container1/Button2Copy2.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 34, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "cp1btnkxg01", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 34, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 30, + "needsErrorInfo": false, + "onClick": "{{navigateTo('xGen', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 34, + "originalTopRow": 30, + "parentColumnSpace": 3.841796875, + "parentId": "x3pc17vp6q", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "xGen", + "topRow": 30, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "cp1btnxgen", + "widgetName": "Button2Copy2" +} \ No newline at end of file diff --git a/pages/Sales - Capacity Planning/widgets/Container1/Button3.json b/pages/Sales - Capacity Planning/widgets/Container1/Button3.json new file mode 100644 index 0000000..3df8408 --- /dev/null +++ b/pages/Sales - Capacity Planning/widgets/Container1/Button3.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 44, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "cp1btn3k01", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 44, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 40, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Operations - Job Drawing Status', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 44, + "originalTopRow": 40, + "parentColumnSpace": 3.841796875, + "parentId": "x3pc17vp6q", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Job Drawing Status", + "topRow": 40, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "cp1btn3jds", + "widgetName": "Button3" +} \ No newline at end of file diff --git a/pages/Sales - Capacity Planning/widgets/Container1/Button3Copy.json b/pages/Sales - Capacity Planning/widgets/Container1/Button3Copy.json new file mode 100644 index 0000000..f461208 --- /dev/null +++ b/pages/Sales - Capacity Planning/widgets/Container1/Button3Copy.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 48, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "cp1btn3k02", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 48, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 44, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Operations - Engineering Holds', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 48, + "originalTopRow": 44, + "parentColumnSpace": 3.841796875, + "parentId": "x3pc17vp6q", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Engineering Holds", + "topRow": 44, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "cp1btn3enh", + "widgetName": "Button3Copy" +} \ No newline at end of file diff --git a/pages/Sales - Capacity Planning/widgets/Container1/Button3Copy2.json b/pages/Sales - Capacity Planning/widgets/Container1/Button3Copy2.json new file mode 100644 index 0000000..c901c3a --- /dev/null +++ b/pages/Sales - Capacity Planning/widgets/Container1/Button3Copy2.json @@ -0,0 +1,47 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 52, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicHeight": "FIXED", + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "cp1btn3uik", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minWidth": 120, + "mobileBottomRow": 52, + "mobileLeftColumn": 0, + "mobileRightColumn": 64, + "mobileTopRow": 48, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Operations - Unused Items', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 52, + "originalTopRow": 48, + "parentColumnSpace": 3.841796875, + "parentId": "x3pc17vp6q", + "parentRowSpace": 10, + "placement": "START", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Unused Items", + "topRow": 48, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "cp1btn3ui", + "widgetName": "Button3Copy2" +} \ No newline at end of file diff --git a/pages/Sales - Capacity Planning/widgets/Container1/Container1.json b/pages/Sales - Capacity Planning/widgets/Container1/Container1.json new file mode 100644 index 0000000..434c665 --- /dev/null +++ b/pages/Sales - Capacity Planning/widgets/Container1/Container1.json @@ -0,0 +1,87 @@ +{ + "animateLoading": true, + "backgroundColor": "#FFFFFF", + "borderColor": "#E0DEDE", + "borderRadius": "0px", + "borderWidth": "1", + "bottomRow": 124, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "children": [ + { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 1240, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "canExtend": false, + "containerStyle": "none", + "detachFromLayout": true, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "flexLayers": [], + "isLoading": false, + "isVisible": true, + "key": "xorz42kdhi", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minHeight": 100, + "minWidth": 450, + "mobileBottomRow": 100, + "mobileLeftColumn": 0, + "mobileRightColumn": 132.9375, + "mobileTopRow": 0, + "needsErrorInfo": false, + "parentColumnSpace": 1, + "parentId": "4ric55du8p", + "parentRowSpace": 1, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 132.9375, + "topRow": 0, + "type": "CANVAS_WIDGET", + "version": 1, + "widgetId": "x3pc17vp6q", + "widgetName": "Canvas1" + } + ], + "containerStyle": "card", + "dynamicBindingPathList": [ + { + "key": "boxShadow" + } + ], + "dynamicHeight": "FIXED", + "dynamicTriggerPathList": [], + "flexVerticalAlignment": "stretch", + "isCanvas": true, + "isLoading": false, + "isVisible": true, + "key": "36jaq5m9iy", + "leftColumn": 0, + "maxDynamicHeight": 12, + "minDynamicHeight": 10, + "minWidth": 450, + "mobileBottomRow": 10, + "mobileLeftColumn": 0, + "mobileRightColumn": 3, + "mobileTopRow": 0, + "needsErrorInfo": false, + "parentColumnSpace": 44.3125, + "parentId": "0", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 9, + "shouldScrollContents": true, + "topRow": 0, + "type": "CONTAINER_WIDGET", + "version": 1, + "widgetId": "4ric55du8p", + "widgetName": "Container1" +} \ No newline at end of file diff --git a/pages/Sales - Capacity Planning/widgets/Container1/Text1.json b/pages/Sales - Capacity Planning/widgets/Container1/Text1.json new file mode 100644 index 0000000..ab4ee66 --- /dev/null +++ b/pages/Sales - Capacity Planning/widgets/Container1/Text1.json @@ -0,0 +1,52 @@ +{ + "animateLoading": true, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 4, + "dynamicBindingPathList": [ + { + "key": "truncateButtonColor" + }, + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", + "fontSize": "1rem", + "fontStyle": "BOLD", + "isLoading": false, + "isVisible": true, + "key": "01n8bhu9n6", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minWidth": 450, + "mobileBottomRow": 6, + "mobileLeftColumn": 10, + "mobileRightColumn": 26, + "mobileTopRow": 2, + "needsErrorInfo": false, + "originalBottomRow": 4, + "originalTopRow": 0, + "overflow": "NONE", + "parentColumnSpace": 3.841796875, + "parentId": "x3pc17vp6q", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 64, + "shouldTruncate": false, + "text": "Sales", + "textAlign": "LEFT", + "textColor": "#231F20", + "topRow": 0, + "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "type": "TEXT_WIDGET", + "version": 1, + "widgetId": "20hjkxb0im", + "widgetName": "Text1" +} \ No newline at end of file diff --git a/pages/Sales - Capacity Planning/widgets/Container1/Text2.json b/pages/Sales - Capacity Planning/widgets/Container1/Text2.json new file mode 100644 index 0000000..5ee609e --- /dev/null +++ b/pages/Sales - Capacity Planning/widgets/Container1/Text2.json @@ -0,0 +1,52 @@ +{ + "animateLoading": true, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 22, + "dynamicBindingPathList": [ + { + "key": "truncateButtonColor" + }, + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", + "fontSize": "1rem", + "fontStyle": "BOLD", + "isLoading": false, + "isVisible": true, + "key": "cp1txkey01", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minWidth": 450, + "mobileBottomRow": 22, + "mobileLeftColumn": 10, + "mobileRightColumn": 26, + "mobileTopRow": 18, + "needsErrorInfo": false, + "originalBottomRow": 22, + "originalTopRow": 18, + "overflow": "NONE", + "parentColumnSpace": 3.841796875, + "parentId": "x3pc17vp6q", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 64, + "shouldTruncate": false, + "text": "Engineering", + "textAlign": "LEFT", + "textColor": "#231F20", + "topRow": 18, + "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "type": "TEXT_WIDGET", + "version": 1, + "widgetId": "cp1txtpndpo", + "widgetName": "Text2" +} \ No newline at end of file diff --git a/pages/Sales - Capacity Planning/widgets/Container1/Text3.json b/pages/Sales - Capacity Planning/widgets/Container1/Text3.json new file mode 100644 index 0000000..c8d4dae --- /dev/null +++ b/pages/Sales - Capacity Planning/widgets/Container1/Text3.json @@ -0,0 +1,52 @@ +{ + "animateLoading": true, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 40, + "dynamicBindingPathList": [ + { + "key": "truncateButtonColor" + }, + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", + "fontSize": "1rem", + "fontStyle": "BOLD", + "isLoading": false, + "isVisible": true, + "key": "cp1txt3k01", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minWidth": 450, + "mobileBottomRow": 40, + "mobileLeftColumn": 10, + "mobileRightColumn": 26, + "mobileTopRow": 36, + "needsErrorInfo": false, + "originalBottomRow": 40, + "originalTopRow": 36, + "overflow": "NONE", + "parentColumnSpace": 3.841796875, + "parentId": "x3pc17vp6q", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 64, + "shouldTruncate": false, + "text": "Operations", + "textAlign": "LEFT", + "textColor": "#231F20", + "topRow": 36, + "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "type": "TEXT_WIDGET", + "version": 1, + "widgetId": "cp1txt3ops", + "widgetName": "Text3" +} \ No newline at end of file diff --git a/pages/Sales - Capacity Planning/widgets/Heading.json b/pages/Sales - Capacity Planning/widgets/Heading.json new file mode 100644 index 0000000..8ac4bb1 --- /dev/null +++ b/pages/Sales - Capacity Planning/widgets/Heading.json @@ -0,0 +1,52 @@ +{ + "animateLoading": true, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 5, + "dynamicBindingPathList": [ + { + "key": "truncateButtonColor" + }, + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", + "fontSize": "1.875rem", + "fontStyle": "BOLD", + "isLoading": false, + "isVisible": true, + "key": "pii8e5rbru", + "leftColumn": 9, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minWidth": 450, + "mobileBottomRow": 5, + "mobileLeftColumn": 1, + "mobileRightColumn": 17, + "mobileTopRow": 1, + "needsErrorInfo": false, + "originalBottomRow": 5, + "originalTopRow": 0, + "overflow": "NONE", + "parentColumnSpace": 25.109375, + "parentId": "0", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 64, + "shouldTruncate": false, + "text": "Sales - Capacity Planning", + "textAlign": "LEFT", + "textColor": "#231F20", + "topRow": 0, + "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "type": "TEXT_WIDGET", + "version": 1, + "widgetId": "mt8rmbyqnn", + "widgetName": "Heading" +} \ No newline at end of file diff --git a/pages/Sales - Capacity Planning/widgets/Table1.json b/pages/Sales - Capacity Planning/widgets/Table1.json new file mode 100644 index 0000000..5f56e20 --- /dev/null +++ b/pages/Sales - Capacity Planning/widgets/Table1.json @@ -0,0 +1,249 @@ +{ + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "animateLoading": true, + "borderColor": "#E0DEDE", + "borderRadius": "0.375rem", + "borderWidth": "1", + "bottomRow": 124, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "cachedTableData": {}, + "canFreezeColumn": true, + "childStylesheet": { + "button": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "editActions": { + "discardBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "discardButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "saveBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "saveButtonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "iconButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "menuButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "menuColor": "{{appsmith.theme.colors.primaryColor}}" + } + }, + "columnOrder": [ + "line_type", + "start_date", + "end_date", + "used_blocks" + ], + "columnUpdatedAt": 1768910474559, + "columnWidthMap": { + "end_date": 207, + "line_type": 103, + "start_date": 211 + }, + "compactMode": "SHORT", + "customIsLoading": false, + "customIsLoadingValue": "", + "defaultPageSize": 0, + "defaultSelectedRowIndex": 0, + "defaultSelectedRowIndices": [ + 0 + ], + "delimiter": ",", + "dynamicBindingPathList": [ + { + "key": "accentColor" + }, + { + "key": "boxShadow" + }, + { + "key": "tableData" + }, + { + "key": "primaryColumns.line_type.computedValue" + }, + { + "key": "primaryColumns.start_date.computedValue" + }, + { + "key": "primaryColumns.end_date.computedValue" + }, + { + "key": "primaryColumns.used_blocks.computedValue" + } + ], + "dynamicPropertyPathList": [ + { + "key": "textSize" + } + ], + "dynamicTriggerPathList": [], + "enableClientSideSearch": true, + "endOfData": false, + "flexVerticalAlignment": "start", + "horizontalAlignment": "LEFT", + "inlineEditingSaveOption": "ROW_LEVEL", + "isLoading": false, + "isSortable": true, + "isVisible": true, + "isVisibleDownload": true, + "isVisibleFilters": false, + "isVisiblePagination": true, + "isVisibleSearch": false, + "key": "o9k9wp97q1", + "label": "Data", + "leftColumn": 9, + "minWidth": 450, + "mobileBottomRow": 31, + "mobileLeftColumn": 15, + "mobileRightColumn": 64, + "mobileTopRow": 10, + "needsErrorInfo": false, + "originalBottomRow": 67, + "originalTopRow": 5, + "parentColumnSpace": 11.265625, + "parentId": "0", + "parentRowSpace": 10, + "primaryColumns": { + "end_date": { + "alias": "end_date", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "columnType": "date", + "computedValue": "{{(() => { const tableData = Table1.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"end_date\"])) : end_date })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "horizontalAlignment": "LEFT", + "id": "end_date", + "index": 2, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "end_date", + "notation": "standard", + "originalId": "end_date", + "sticky": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "line_type": { + "alias": "line_type", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "columnType": "text", + "computedValue": "{{(() => { const tableData = Table1.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"line_type\"])) : line_type })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "horizontalAlignment": "LEFT", + "id": "line_type", + "index": 0, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "line_type", + "notation": "standard", + "originalId": "line_type", + "sticky": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "start_date": { + "alias": "start_date", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "columnType": "date", + "computedValue": "{{(() => { const tableData = Table1.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"start_date\"])) : start_date })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "horizontalAlignment": "LEFT", + "id": "start_date", + "index": 1, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "start_date", + "notation": "standard", + "originalId": "start_date", + "sticky": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "used_blocks": { + "alias": "used_blocks", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "columnType": "number", + "computedValue": "{{(() => { const tableData = Table1.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"used_blocks\"])) : used_blocks })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "horizontalAlignment": "LEFT", + "id": "used_blocks", + "index": 3, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "used_blocks", + "notation": "standard", + "originalId": "used_blocks", + "sticky": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + } + }, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 64, + "searchKey": "", + "tableData": "{{capacity_display_all.data}}", + "textSize": "0.775rem", + "topRow": 5, + "totalRecordsCount": 0, + "type": "TABLE_WIDGET_V2", + "version": 2, + "verticalAlignment": "CENTER", + "widgetId": "auy6rk2yfa", + "widgetName": "Table1" +} \ No newline at end of file diff --git a/pages/Sales - Units Ordered/Sales - Units Ordered.json b/pages/Sales - Units Ordered/Sales - Units Ordered.json new file mode 100644 index 0000000..1368600 --- /dev/null +++ b/pages/Sales - Units Ordered/Sales - Units Ordered.json @@ -0,0 +1,32 @@ +{ + "gitSyncId": "6978a0503f1cbf3622b556da_13c3b8be-1b0f-40d8-a397-78cefb9067d7", + "unpublishedPage": { + "isHidden": false, + "layouts": [ + { + "dsl": { + "backgroundColor": "none", + "bottomRow": 1220, + "canExtend": true, + "containerStyle": "none", + "detachFromLayout": true, + "dynamicBindingPathList": [], + "leftColumn": 0, + "minHeight": 1540, + "parentColumnSpace": 1, + "parentRowSpace": 1, + "rightColumn": 1224, + "snapColumns": 64, + "snapRows": 152, + "topRow": 0, + "type": "CANVAS_WIDGET", + "version": 94, + "widgetId": "0", + "widgetName": "MainContainer" + } + } + ], + "name": "Sales - Units Ordered", + "slug": "sales-units-ordered" + } +} \ No newline at end of file diff --git a/pages/Sales - Units Ordered/queries/units_ordered_by_power_input/metadata.json b/pages/Sales - Units Ordered/queries/units_ordered_by_power_input/metadata.json new file mode 100644 index 0000000..23d86f5 --- /dev/null +++ b/pages/Sales - Units Ordered/queries/units_ordered_by_power_input/metadata.json @@ -0,0 +1,35 @@ +{ + "gitSyncId": "6978a0503f1cbf3622b556da_a33c1a5c-f987-4855-97da-8817781be960", + "id": "Sales - Units Ordered_units_ordered_by_power_input", + "pluginId": "postgres-plugin", + "pluginType": "DB", + "unpublishedAction": { + "actionConfiguration": { + "body": "SELECT \nCASE WHEN item_number IN ('16688','25020') THEN 'XR Series'\nWHEN item_number IN ('22351','24952') THEN 'SL Series'\nWHEN item_number IN ('17861','25021','29243','29752') THEN 'TS Series'\nWHEN item_number IN ('17862') THEN 'MS Series'\nWHEN item_number IN ('17863') THEN 'MT Series'\nWHEN item_number IN ('17873') THEN 'Harmonic Neutralizer'\n\nELSE 'None'\nEND AS \"Product\",\nreportpower.charass_value as \"Power Output\", reportinput.charass_value || ' ' || reportphases.charass_value AS \"Input\", ROUND(SUM(coitem_qtyord),0) as \"Qty Ordered\"\nFROM coitem LEFT OUTER JOIN cohead ON cohead_id=coitem_cohead_id\nLEFT OUTER JOIN itemsite ON coitem_itemsite_id = itemsite_id\nLEFT OUTER JOIN item ON item_id = itemsite_item_id\nLEFT OUTER JOIN charass AS reportpower ON \n(coitem_id = reportpower.charass_target_id \nAND reportpower.charass_target_type = 'SI'\nAND reportpower.charass_char_id = 25)\nLEFT OUTER JOIN charass AS reportinput ON \n(coitem_id = reportinput.charass_target_id \nAND reportinput.charass_target_type = 'SI'\nAND reportinput.charass_char_id = 36)\nLEFT OUTER JOIN charass AS reportphases ON \n(coitem_id = reportphases.charass_target_id \nAND reportphases.charass_target_type = 'SI'\nAND reportphases.charass_char_id = 18)\nWHERE item_number IN ('16688','17861','17862','17863','22351','25020','25144','25147','25021','24952','17873','29243','29752')\nAND (coitem_status <> 'X') \nAND cohead_id NOT IN(SELECT cohead_id from rahead LEFT OUTER JOIN cohead ON rahead_new_cohead_id=cohead_id WHERE cohead_id IS NOT NULL)\nAND coitem_price != 0\nAND (\n\tNULLIF('{{PowerDateFrom.selectedDate}}','') IS NULL\n\tOR NULLIF('{{PowerDateTo.selectedDate}}','') IS NULL\n\tOR cohead_orderdate BETWEEN\n\tNULLIF('{{PowerDateFrom.selectedDate}}','')::date\n\tAND NULLIF('{{PowerDateTo.selectedDate}}','')::date\n)\nAND reportpower.charass_value IS NOT NULL\nGROUP BY reportpower.charass_value, \"Product\", \"Input\"\nORDER BY \"Product\", reportpower.charass_value\n", + "encodeParamsToggle": true, + "paginationType": "NONE", + "pluginSpecifiedTemplates": [ + { + "value": true + } + ], + "timeoutInMillisecond": 10000 + }, + "confirmBeforeExecute": false, + "datasource": { + "id": "xTuple_GoLive", + "isAutoGenerated": false, + "name": "xTuple_GoLive", + "pluginId": "postgres-plugin" + }, + "dynamicBindingPathList": [ + { + "key": "body" + } + ], + "name": "units_ordered_by_power_input", + "pageId": "Sales - Units Ordered", + "runBehaviour": "AUTOMATIC", + "userSetOnLoad": false + } +} \ No newline at end of file diff --git a/pages/Sales - Units Ordered/queries/units_ordered_by_power_input/units_ordered_by_power_input.txt b/pages/Sales - Units Ordered/queries/units_ordered_by_power_input/units_ordered_by_power_input.txt new file mode 100644 index 0000000..c663edf --- /dev/null +++ b/pages/Sales - Units Ordered/queries/units_ordered_by_power_input/units_ordered_by_power_input.txt @@ -0,0 +1,40 @@ +SELECT +CASE WHEN item_number IN ('16688','25020') THEN 'XR Series' +WHEN item_number IN ('22351','24952') THEN 'SL Series' +WHEN item_number IN ('17861','25021','29243','29752') THEN 'TS Series' +WHEN item_number IN ('17862') THEN 'MS Series' +WHEN item_number IN ('17863') THEN 'MT Series' +WHEN item_number IN ('17873') THEN 'Harmonic Neutralizer' + +ELSE 'None' +END AS "Product", +reportpower.charass_value as "Power Output", reportinput.charass_value || ' ' || reportphases.charass_value AS "Input", ROUND(SUM(coitem_qtyord),0) as "Qty Ordered" +FROM coitem LEFT OUTER JOIN cohead ON cohead_id=coitem_cohead_id +LEFT OUTER JOIN itemsite ON coitem_itemsite_id = itemsite_id +LEFT OUTER JOIN item ON item_id = itemsite_item_id +LEFT OUTER JOIN charass AS reportpower ON +(coitem_id = reportpower.charass_target_id +AND reportpower.charass_target_type = 'SI' +AND reportpower.charass_char_id = 25) +LEFT OUTER JOIN charass AS reportinput ON +(coitem_id = reportinput.charass_target_id +AND reportinput.charass_target_type = 'SI' +AND reportinput.charass_char_id = 36) +LEFT OUTER JOIN charass AS reportphases ON +(coitem_id = reportphases.charass_target_id +AND reportphases.charass_target_type = 'SI' +AND reportphases.charass_char_id = 18) +WHERE item_number IN ('16688','17861','17862','17863','22351','25020','25144','25147','25021','24952','17873','29243','29752') +AND (coitem_status <> 'X') +AND cohead_id NOT IN(SELECT cohead_id from rahead LEFT OUTER JOIN cohead ON rahead_new_cohead_id=cohead_id WHERE cohead_id IS NOT NULL) +AND coitem_price != 0 +AND ( + NULLIF('{{PowerDateFrom.selectedDate}}','') IS NULL + OR NULLIF('{{PowerDateTo.selectedDate}}','') IS NULL + OR cohead_orderdate BETWEEN + NULLIF('{{PowerDateFrom.selectedDate}}','')::date + AND NULLIF('{{PowerDateTo.selectedDate}}','')::date +) +AND reportpower.charass_value IS NOT NULL +GROUP BY reportpower.charass_value, "Product", "Input" +ORDER BY "Product", reportpower.charass_value diff --git a/pages/Sales - Units Ordered/queries/units_ordered_by_series/metadata.json b/pages/Sales - Units Ordered/queries/units_ordered_by_series/metadata.json new file mode 100644 index 0000000..9565e94 --- /dev/null +++ b/pages/Sales - Units Ordered/queries/units_ordered_by_series/metadata.json @@ -0,0 +1,35 @@ +{ + "gitSyncId": "6978a0503f1cbf3622b556da_bb85ebfe-2773-4f11-880e-df88217f957d", + "id": "Sales - Units Ordered_units_ordered_by_series", + "pluginId": "postgres-plugin", + "pluginType": "DB", + "unpublishedAction": { + "actionConfiguration": { + "body": "SELECT \nCASE WHEN item_number IN ('16688','25020') THEN 'XR Series'\nWHEN item_number IN ('22351','24952') THEN 'SL Series'\nWHEN item_number IN ('17861','25021','29243','29752') THEN 'TS Series'\nWHEN item_number IN ('17862') THEN 'MS Series'\nWHEN item_number IN ('17863') THEN 'MT Series'\nWHEN item_number IN ('17873') THEN 'Harmonic Neutralizer'\n\nELSE 'None'\nEND AS \"Product\",\nROUND(SUM(coitem_qtyord),0) as \"Qty Ordered\"\nFROM coitem LEFT OUTER JOIN cohead ON cohead_id=coitem_cohead_id\nLEFT OUTER JOIN itemsite ON coitem_itemsite_id = itemsite_id\nLEFT OUTER JOIN item ON item_id = itemsite_item_id\nLEFT OUTER JOIN charass AS reportpower ON \n(coitem_id = reportpower.charass_target_id \nAND reportpower.charass_target_type = 'SI'\nAND reportpower.charass_char_id = 25)\nWHERE item_number IN ('16688','17861','17862','17863','22351','25020','25144','25147','25021','24952','17873','29243','29752')\nAND (coitem_status <> 'X') \nAND cohead_id NOT IN(SELECT cohead_id from rahead LEFT OUTER JOIN cohead ON rahead_new_cohead_id=cohead_id WHERE cohead_id IS NOT NULL)\nAND coitem_price != 0\nAND reportpower.charass_value IS NOT NULL\nAND (\n\tNULLIF('{{SeriesDateFrom.selectedDate}}','') IS NULL\n\tOR NULLIF('{{SeriesDateTo.selectedDate}}','') IS NULL\n\tOR cohead_orderdate BETWEEN\n\tNULLIF('{{SeriesDateFrom.selectedDate}}','')::date\n\tAND NULLIF('{{SeriesDateTo.selectedDate}}','')::date\n)\nGROUP BY \"Product\"\nORDER BY \"Product\"\n", + "encodeParamsToggle": true, + "paginationType": "NONE", + "pluginSpecifiedTemplates": [ + { + "value": true + } + ], + "timeoutInMillisecond": 10000 + }, + "confirmBeforeExecute": false, + "datasource": { + "id": "xTuple_GoLive", + "isAutoGenerated": false, + "name": "xTuple_GoLive", + "pluginId": "postgres-plugin" + }, + "dynamicBindingPathList": [ + { + "key": "body" + } + ], + "name": "units_ordered_by_series", + "pageId": "Sales - Units Ordered", + "runBehaviour": "AUTOMATIC", + "userSetOnLoad": false + } +} \ No newline at end of file diff --git a/pages/Sales - Units Ordered/queries/units_ordered_by_series/units_ordered_by_series.txt b/pages/Sales - Units Ordered/queries/units_ordered_by_series/units_ordered_by_series.txt new file mode 100644 index 0000000..56a2c21 --- /dev/null +++ b/pages/Sales - Units Ordered/queries/units_ordered_by_series/units_ordered_by_series.txt @@ -0,0 +1,32 @@ +SELECT +CASE WHEN item_number IN ('16688','25020') THEN 'XR Series' +WHEN item_number IN ('22351','24952') THEN 'SL Series' +WHEN item_number IN ('17861','25021','29243','29752') THEN 'TS Series' +WHEN item_number IN ('17862') THEN 'MS Series' +WHEN item_number IN ('17863') THEN 'MT Series' +WHEN item_number IN ('17873') THEN 'Harmonic Neutralizer' + +ELSE 'None' +END AS "Product", +ROUND(SUM(coitem_qtyord),0) as "Qty Ordered" +FROM coitem LEFT OUTER JOIN cohead ON cohead_id=coitem_cohead_id +LEFT OUTER JOIN itemsite ON coitem_itemsite_id = itemsite_id +LEFT OUTER JOIN item ON item_id = itemsite_item_id +LEFT OUTER JOIN charass AS reportpower ON +(coitem_id = reportpower.charass_target_id +AND reportpower.charass_target_type = 'SI' +AND reportpower.charass_char_id = 25) +WHERE item_number IN ('16688','17861','17862','17863','22351','25020','25144','25147','25021','24952','17873','29243','29752') +AND (coitem_status <> 'X') +AND cohead_id NOT IN(SELECT cohead_id from rahead LEFT OUTER JOIN cohead ON rahead_new_cohead_id=cohead_id WHERE cohead_id IS NOT NULL) +AND coitem_price != 0 +AND reportpower.charass_value IS NOT NULL +AND ( + NULLIF('{{SeriesDateFrom.selectedDate}}','') IS NULL + OR NULLIF('{{SeriesDateTo.selectedDate}}','') IS NULL + OR cohead_orderdate BETWEEN + NULLIF('{{SeriesDateFrom.selectedDate}}','')::date + AND NULLIF('{{SeriesDateTo.selectedDate}}','')::date +) +GROUP BY "Product" +ORDER BY "Product" diff --git a/pages/Sales - Units Ordered/widgets/Container1/Button1.json b/pages/Sales - Units Ordered/widgets/Container1/Button1.json new file mode 100644 index 0000000..ec9d78a --- /dev/null +++ b/pages/Sales - Units Ordered/widgets/Container1/Button1.json @@ -0,0 +1,43 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 8, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "0k5ucqsuin", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 8, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 4, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Sales - Capacity Planning', {}, 'SAME_WINDOW');}}", + "parentColumnSpace": 3.841796875, + "parentId": "wj6fxg5wpg", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Capacity Planning", + "topRow": 4, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "oqzyf0e1bi", + "widgetName": "Button1" +} \ No newline at end of file diff --git a/pages/Sales - Units Ordered/widgets/Container1/Button1Copy.json b/pages/Sales - Units Ordered/widgets/Container1/Button1Copy.json new file mode 100644 index 0000000..0d86fd9 --- /dev/null +++ b/pages/Sales - Units Ordered/widgets/Container1/Button1Copy.json @@ -0,0 +1,43 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 12, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "0k5ucqsuin", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 8, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 4, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Sales - Units Shipped', {}, 'SAME_WINDOW');}}", + "parentColumnSpace": 3.841796875, + "parentId": "wj6fxg5wpg", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Units Shipped", + "topRow": 8, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "n1t7a2l372", + "widgetName": "Button1Copy" +} \ No newline at end of file diff --git a/pages/Sales - Units Ordered/widgets/Container1/Button1Copy2.json b/pages/Sales - Units Ordered/widgets/Container1/Button1Copy2.json new file mode 100644 index 0000000..f770cb4 --- /dev/null +++ b/pages/Sales - Units Ordered/widgets/Container1/Button1Copy2.json @@ -0,0 +1,47 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 16, + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.backgroundColor}}", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [ + { + "key": "buttonColor" + } + ], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "0n7b4r9lze", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 8, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 4, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Sales - Units Ordered', {}, 'SAME_WINDOW');}}", + "parentColumnSpace": 3.841796875, + "parentId": "wj6fxg5wpg", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Units Ordered", + "topRow": 12, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "v3k4lvbmoc", + "widgetName": "Button1Copy2" +} \ No newline at end of file diff --git a/pages/Sales - Units Ordered/widgets/Container1/Button2All.json b/pages/Sales - Units Ordered/widgets/Container1/Button2All.json new file mode 100644 index 0000000..5460c84 --- /dev/null +++ b/pages/Sales - Units Ordered/widgets/Container1/Button2All.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 26, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "uo1btnkeyall", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 26, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 22, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Pending POs', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 26, + "originalTopRow": 22, + "parentColumnSpace": 3.841796875, + "parentId": "wj6fxg5wpg", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Pending POs", + "topRow": 22, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "uo1btnallpn", + "widgetName": "Button2All" +} \ No newline at end of file diff --git a/pages/Sales - Units Ordered/widgets/Container1/Button2Copy.json b/pages/Sales - Units Ordered/widgets/Container1/Button2Copy.json new file mode 100644 index 0000000..530cbcb --- /dev/null +++ b/pages/Sales - Units Ordered/widgets/Container1/Button2Copy.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 30, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "uo1btnkey005", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 30, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 26, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Pending Revisions', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 30, + "originalTopRow": 26, + "parentColumnSpace": 3.841796875, + "parentId": "wj6fxg5wpg", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Pending Revisions", + "topRow": 26, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "uo1btnpndrv", + "widgetName": "Button2Copy" +} \ No newline at end of file diff --git a/pages/Sales - Units Ordered/widgets/Container1/Button2Copy2.json b/pages/Sales - Units Ordered/widgets/Container1/Button2Copy2.json new file mode 100644 index 0000000..91044e5 --- /dev/null +++ b/pages/Sales - Units Ordered/widgets/Container1/Button2Copy2.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 34, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "uo1btnkxg01", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 34, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 30, + "needsErrorInfo": false, + "onClick": "{{navigateTo('xGen', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 34, + "originalTopRow": 30, + "parentColumnSpace": 3.841796875, + "parentId": "wj6fxg5wpg", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "xGen", + "topRow": 30, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "uo1btnxgen", + "widgetName": "Button2Copy2" +} \ No newline at end of file diff --git a/pages/Sales - Units Ordered/widgets/Container1/Button3.json b/pages/Sales - Units Ordered/widgets/Container1/Button3.json new file mode 100644 index 0000000..08a1708 --- /dev/null +++ b/pages/Sales - Units Ordered/widgets/Container1/Button3.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 44, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "or1btn3k01", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 44, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 40, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Operations - Job Drawing Status', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 44, + "originalTopRow": 40, + "parentColumnSpace": 3.841796875, + "parentId": "wj6fxg5wpg", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Job Drawing Status", + "topRow": 40, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "or1btn3jds", + "widgetName": "Button3" +} \ No newline at end of file diff --git a/pages/Sales - Units Ordered/widgets/Container1/Button3Copy.json b/pages/Sales - Units Ordered/widgets/Container1/Button3Copy.json new file mode 100644 index 0000000..942a444 --- /dev/null +++ b/pages/Sales - Units Ordered/widgets/Container1/Button3Copy.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 48, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "or1btn3k02", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 48, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 44, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Operations - Engineering Holds', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 48, + "originalTopRow": 44, + "parentColumnSpace": 3.841796875, + "parentId": "wj6fxg5wpg", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Engineering Holds", + "topRow": 44, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "or1btn3enh", + "widgetName": "Button3Copy" +} \ No newline at end of file diff --git a/pages/Sales - Units Ordered/widgets/Container1/Button3Copy2.json b/pages/Sales - Units Ordered/widgets/Container1/Button3Copy2.json new file mode 100644 index 0000000..d9a2887 --- /dev/null +++ b/pages/Sales - Units Ordered/widgets/Container1/Button3Copy2.json @@ -0,0 +1,47 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 52, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicHeight": "FIXED", + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "so1btn3uik", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minWidth": 120, + "mobileBottomRow": 52, + "mobileLeftColumn": 0, + "mobileRightColumn": 64, + "mobileTopRow": 48, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Operations - Unused Items', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 52, + "originalTopRow": 48, + "parentColumnSpace": 3.841796875, + "parentId": "wj6fxg5wpg", + "parentRowSpace": 10, + "placement": "START", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Unused Items", + "topRow": 48, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "so1btn3ui", + "widgetName": "Button3Copy2" +} \ No newline at end of file diff --git a/pages/Sales - Units Ordered/widgets/Container1/Container1.json b/pages/Sales - Units Ordered/widgets/Container1/Container1.json new file mode 100644 index 0000000..f5ecaae --- /dev/null +++ b/pages/Sales - Units Ordered/widgets/Container1/Container1.json @@ -0,0 +1,87 @@ +{ + "animateLoading": true, + "backgroundColor": "#FFFFFF", + "borderColor": "#E0DEDE", + "borderRadius": "0px", + "borderWidth": "1", + "bottomRow": 122, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "children": [ + { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 1220, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "canExtend": false, + "containerStyle": "none", + "detachFromLayout": true, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "flexLayers": [], + "isLoading": false, + "isVisible": true, + "key": "xorz42kdhi", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minHeight": 100, + "minWidth": 450, + "mobileBottomRow": 100, + "mobileLeftColumn": 0, + "mobileRightColumn": 132.9375, + "mobileTopRow": 0, + "needsErrorInfo": false, + "parentColumnSpace": 1, + "parentId": "oi2qb8kxz9", + "parentRowSpace": 1, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 132.9375, + "topRow": 0, + "type": "CANVAS_WIDGET", + "version": 1, + "widgetId": "wj6fxg5wpg", + "widgetName": "Canvas1Copy" + } + ], + "containerStyle": "card", + "dynamicBindingPathList": [ + { + "key": "boxShadow" + } + ], + "dynamicHeight": "FIXED", + "dynamicTriggerPathList": [], + "flexVerticalAlignment": "stretch", + "isCanvas": true, + "isLoading": false, + "isVisible": true, + "key": "36jaq5m9iy", + "leftColumn": 0, + "maxDynamicHeight": 12, + "minDynamicHeight": 10, + "minWidth": 450, + "mobileBottomRow": 10, + "mobileLeftColumn": 0, + "mobileRightColumn": 3, + "mobileTopRow": 0, + "needsErrorInfo": false, + "parentColumnSpace": 44.3125, + "parentId": "0", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 9, + "shouldScrollContents": true, + "topRow": 0, + "type": "CONTAINER_WIDGET", + "version": 1, + "widgetId": "oi2qb8kxz9", + "widgetName": "Container1" +} \ No newline at end of file diff --git a/pages/Sales - Units Ordered/widgets/Container1/Text1Copy.json b/pages/Sales - Units Ordered/widgets/Container1/Text1Copy.json new file mode 100644 index 0000000..7689d05 --- /dev/null +++ b/pages/Sales - Units Ordered/widgets/Container1/Text1Copy.json @@ -0,0 +1,52 @@ +{ + "animateLoading": true, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 4, + "dynamicBindingPathList": [ + { + "key": "truncateButtonColor" + }, + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", + "fontSize": "1rem", + "fontStyle": "BOLD", + "isLoading": false, + "isVisible": true, + "key": "01n8bhu9n6", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minWidth": 450, + "mobileBottomRow": 6, + "mobileLeftColumn": 10, + "mobileRightColumn": 26, + "mobileTopRow": 2, + "needsErrorInfo": false, + "originalBottomRow": 7, + "originalTopRow": 0, + "overflow": "NONE", + "parentColumnSpace": 3.841796875, + "parentId": "wj6fxg5wpg", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 64, + "shouldTruncate": false, + "text": "Sales", + "textAlign": "LEFT", + "textColor": "#231F20", + "topRow": 0, + "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "type": "TEXT_WIDGET", + "version": 1, + "widgetId": "8edga77jlx", + "widgetName": "Text1Copy" +} \ No newline at end of file diff --git a/pages/Sales - Units Ordered/widgets/Container1/Text2.json b/pages/Sales - Units Ordered/widgets/Container1/Text2.json new file mode 100644 index 0000000..5861c29 --- /dev/null +++ b/pages/Sales - Units Ordered/widgets/Container1/Text2.json @@ -0,0 +1,52 @@ +{ + "animateLoading": true, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 22, + "dynamicBindingPathList": [ + { + "key": "truncateButtonColor" + }, + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", + "fontSize": "1rem", + "fontStyle": "BOLD", + "isLoading": false, + "isVisible": true, + "key": "uo1txkey01", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minWidth": 450, + "mobileBottomRow": 22, + "mobileLeftColumn": 10, + "mobileRightColumn": 26, + "mobileTopRow": 18, + "needsErrorInfo": false, + "originalBottomRow": 22, + "originalTopRow": 18, + "overflow": "NONE", + "parentColumnSpace": 3.841796875, + "parentId": "wj6fxg5wpg", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 64, + "shouldTruncate": false, + "text": "Engineering", + "textAlign": "LEFT", + "textColor": "#231F20", + "topRow": 18, + "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "type": "TEXT_WIDGET", + "version": 1, + "widgetId": "uo1txtpndpo", + "widgetName": "Text2" +} \ No newline at end of file diff --git a/pages/Sales - Units Ordered/widgets/Container1/Text3.json b/pages/Sales - Units Ordered/widgets/Container1/Text3.json new file mode 100644 index 0000000..c8a829e --- /dev/null +++ b/pages/Sales - Units Ordered/widgets/Container1/Text3.json @@ -0,0 +1,52 @@ +{ + "animateLoading": true, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 40, + "dynamicBindingPathList": [ + { + "key": "truncateButtonColor" + }, + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", + "fontSize": "1rem", + "fontStyle": "BOLD", + "isLoading": false, + "isVisible": true, + "key": "or1txt3k01", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minWidth": 450, + "mobileBottomRow": 40, + "mobileLeftColumn": 10, + "mobileRightColumn": 26, + "mobileTopRow": 36, + "needsErrorInfo": false, + "originalBottomRow": 40, + "originalTopRow": 36, + "overflow": "NONE", + "parentColumnSpace": 3.841796875, + "parentId": "wj6fxg5wpg", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 64, + "shouldTruncate": false, + "text": "Operations", + "textAlign": "LEFT", + "textColor": "#231F20", + "topRow": 36, + "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "type": "TEXT_WIDGET", + "version": 1, + "widgetId": "or1txt3ops", + "widgetName": "Text3" +} \ No newline at end of file diff --git a/pages/Sales - Units Ordered/widgets/Heading.json b/pages/Sales - Units Ordered/widgets/Heading.json new file mode 100644 index 0000000..c9d026d --- /dev/null +++ b/pages/Sales - Units Ordered/widgets/Heading.json @@ -0,0 +1,52 @@ +{ + "animateLoading": true, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 5, + "dynamicBindingPathList": [ + { + "key": "truncateButtonColor" + }, + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", + "fontSize": "1.875rem", + "fontStyle": "BOLD", + "isLoading": false, + "isVisible": true, + "key": "pii8e5rbru", + "leftColumn": 9, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minWidth": 450, + "mobileBottomRow": 5, + "mobileLeftColumn": 1, + "mobileRightColumn": 17, + "mobileTopRow": 1, + "needsErrorInfo": false, + "originalBottomRow": 5, + "originalTopRow": 0, + "overflow": "NONE", + "parentColumnSpace": 25.109375, + "parentId": "0", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 64, + "shouldTruncate": false, + "text": "Sales - Units Ordered", + "textAlign": "LEFT", + "textColor": "#231F20", + "topRow": 0, + "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "type": "TEXT_WIDGET", + "version": 1, + "widgetId": "250t24g0mo", + "widgetName": "Heading" +} \ No newline at end of file diff --git a/pages/Sales - Units Ordered/widgets/Tabs1/PowerDateFrom.json b/pages/Sales - Units Ordered/widgets/Tabs1/PowerDateFrom.json new file mode 100644 index 0000000..6619daa --- /dev/null +++ b/pages/Sales - Units Ordered/widgets/Tabs1/PowerDateFrom.json @@ -0,0 +1,55 @@ +{ + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "animateLoading": true, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 7, + "boxShadow": "none", + "closeOnSelection": true, + "dateFormat": "YYYY-MM-DD HH:mm", + "datePickerType": "DATE_PICKER", + "dynamicBindingPathList": [ + { + "key": "accentColor" + }, + { + "key": "borderRadius" + } + ], + "dynamicHeight": "FIXED", + "dynamicTriggerPathList": [], + "firstDayOfWeek": 0, + "isDisabled": false, + "isLoading": false, + "isRequired": false, + "isVisible": true, + "key": "1n4gn1ssf4", + "label": "Start Date", + "labelAlignment": "left", + "labelPosition": "Top", + "labelTextSize": "0.875rem", + "labelWidth": 5, + "leftColumn": 0, + "maxDate": "2121-12-31T18:29:00.000Z", + "maxDynamicHeight": 9000, + "minDate": "1920-12-31T18:30:00.000Z", + "minDynamicHeight": 4, + "minWidth": 450, + "mobileBottomRow": 8, + "mobileLeftColumn": 1, + "mobileRightColumn": 21, + "mobileTopRow": 1, + "needsErrorInfo": false, + "parentColumnSpace": 10.263671875, + "parentId": "5ghij529ih", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 5, + "shortcuts": false, + "timePrecision": "minute", + "topRow": 0, + "type": "DATE_PICKER_WIDGET2", + "version": 2, + "widgetId": "uflt0124wq", + "widgetName": "PowerDateFrom" +} \ No newline at end of file diff --git a/pages/Sales - Units Ordered/widgets/Tabs1/PowerDateTo.json b/pages/Sales - Units Ordered/widgets/Tabs1/PowerDateTo.json new file mode 100644 index 0000000..a807e8b --- /dev/null +++ b/pages/Sales - Units Ordered/widgets/Tabs1/PowerDateTo.json @@ -0,0 +1,55 @@ +{ + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "animateLoading": true, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 7, + "boxShadow": "none", + "closeOnSelection": true, + "dateFormat": "YYYY-MM-DD HH:mm", + "datePickerType": "DATE_PICKER", + "dynamicBindingPathList": [ + { + "key": "accentColor" + }, + { + "key": "borderRadius" + } + ], + "dynamicHeight": "FIXED", + "dynamicTriggerPathList": [], + "firstDayOfWeek": 0, + "isDisabled": false, + "isLoading": false, + "isRequired": false, + "isVisible": true, + "key": "1n4gn1ssf4", + "label": "End Date", + "labelAlignment": "left", + "labelPosition": "Top", + "labelTextSize": "0.875rem", + "labelWidth": 5, + "leftColumn": 5, + "maxDate": "2121-12-31T18:29:00.000Z", + "maxDynamicHeight": 9000, + "minDate": "1920-12-31T18:30:00.000Z", + "minDynamicHeight": 4, + "minWidth": 450, + "mobileBottomRow": 8, + "mobileLeftColumn": 1, + "mobileRightColumn": 21, + "mobileTopRow": 1, + "needsErrorInfo": false, + "parentColumnSpace": 10.263671875, + "parentId": "5ghij529ih", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 10, + "shortcuts": false, + "timePrecision": "minute", + "topRow": 0, + "type": "DATE_PICKER_WIDGET2", + "version": 2, + "widgetId": "w69wh9oixl", + "widgetName": "PowerDateTo" +} \ No newline at end of file diff --git a/pages/Sales - Units Ordered/widgets/Tabs1/SeriesDateFrom.json b/pages/Sales - Units Ordered/widgets/Tabs1/SeriesDateFrom.json new file mode 100644 index 0000000..a35db9c --- /dev/null +++ b/pages/Sales - Units Ordered/widgets/Tabs1/SeriesDateFrom.json @@ -0,0 +1,55 @@ +{ + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "animateLoading": true, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 7, + "boxShadow": "none", + "closeOnSelection": true, + "dateFormat": "YYYY-MM-DD HH:mm", + "datePickerType": "DATE_PICKER", + "dynamicBindingPathList": [ + { + "key": "accentColor" + }, + { + "key": "borderRadius" + } + ], + "dynamicHeight": "FIXED", + "dynamicTriggerPathList": [], + "firstDayOfWeek": 0, + "isDisabled": false, + "isLoading": false, + "isRequired": false, + "isVisible": true, + "key": "1n4gn1ssf4", + "label": "Start Date", + "labelAlignment": "left", + "labelPosition": "Top", + "labelTextSize": "0.875rem", + "labelWidth": 5, + "leftColumn": 0, + "maxDate": "2121-12-31T18:29:00.000Z", + "maxDynamicHeight": 9000, + "minDate": "1920-12-31T18:30:00.000Z", + "minDynamicHeight": 4, + "minWidth": 450, + "mobileBottomRow": 8, + "mobileLeftColumn": 1, + "mobileRightColumn": 21, + "mobileTopRow": 1, + "needsErrorInfo": false, + "parentColumnSpace": 10.263671875, + "parentId": "o7m1w5vrow", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 5, + "shortcuts": false, + "timePrecision": "minute", + "topRow": 0, + "type": "DATE_PICKER_WIDGET2", + "version": 2, + "widgetId": "35qo2qtt26", + "widgetName": "SeriesDateFrom" +} \ No newline at end of file diff --git a/pages/Sales - Units Ordered/widgets/Tabs1/SeriesDateTo.json b/pages/Sales - Units Ordered/widgets/Tabs1/SeriesDateTo.json new file mode 100644 index 0000000..51c85ed --- /dev/null +++ b/pages/Sales - Units Ordered/widgets/Tabs1/SeriesDateTo.json @@ -0,0 +1,55 @@ +{ + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "animateLoading": true, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 7, + "boxShadow": "none", + "closeOnSelection": true, + "dateFormat": "YYYY-MM-DD HH:mm", + "datePickerType": "DATE_PICKER", + "dynamicBindingPathList": [ + { + "key": "accentColor" + }, + { + "key": "borderRadius" + } + ], + "dynamicHeight": "FIXED", + "dynamicTriggerPathList": [], + "firstDayOfWeek": 0, + "isDisabled": false, + "isLoading": false, + "isRequired": false, + "isVisible": true, + "key": "1n4gn1ssf4", + "label": "End Date", + "labelAlignment": "left", + "labelPosition": "Top", + "labelTextSize": "0.875rem", + "labelWidth": 5, + "leftColumn": 5, + "maxDate": "2121-12-31T18:29:00.000Z", + "maxDynamicHeight": 9000, + "minDate": "1920-12-31T18:30:00.000Z", + "minDynamicHeight": 4, + "minWidth": 450, + "mobileBottomRow": 8, + "mobileLeftColumn": 1, + "mobileRightColumn": 21, + "mobileTopRow": 1, + "needsErrorInfo": false, + "parentColumnSpace": 10.263671875, + "parentId": "o7m1w5vrow", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 10, + "shortcuts": false, + "timePrecision": "minute", + "topRow": 0, + "type": "DATE_PICKER_WIDGET2", + "version": 2, + "widgetId": "33mzf7ghwq", + "widgetName": "SeriesDateTo" +} \ No newline at end of file diff --git a/pages/Sales - Units Ordered/widgets/Tabs1/Table1.json b/pages/Sales - Units Ordered/widgets/Tabs1/Table1.json new file mode 100644 index 0000000..5275837 --- /dev/null +++ b/pages/Sales - Units Ordered/widgets/Tabs1/Table1.json @@ -0,0 +1,186 @@ +{ + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "animateLoading": true, + "borderColor": "#E0DEDE", + "borderRadius": "0.375rem", + "borderWidth": "1", + "bottomRow": 111, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "cachedTableData": {}, + "canFreezeColumn": true, + "childStylesheet": { + "button": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "editActions": { + "discardBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "discardButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "saveBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "saveButtonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "iconButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "menuButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "menuColor": "{{appsmith.theme.colors.primaryColor}}" + } + }, + "columnOrder": [ + "Product", + "Qty_Ordered" + ], + "columnUpdatedAt": 1768911391236, + "columnWidthMap": { + "Product": 152 + }, + "compactMode": "SHORT", + "customIsLoading": false, + "customIsLoadingValue": "", + "defaultPageSize": 0, + "defaultSelectedRowIndex": 0, + "defaultSelectedRowIndices": [ + 0 + ], + "delimiter": ",", + "dynamicBindingPathList": [ + { + "key": "accentColor" + }, + { + "key": "boxShadow" + }, + { + "key": "tableData" + }, + { + "key": "primaryColumns.Product.computedValue" + }, + { + "key": "primaryColumns.Qty_Ordered.computedValue" + } + ], + "dynamicPropertyPathList": [ + { + "key": "tableData" + }, + { + "key": "textSize" + } + ], + "dynamicTriggerPathList": [], + "enableClientSideSearch": true, + "endOfData": false, + "flexVerticalAlignment": "start", + "horizontalAlignment": "LEFT", + "inlineEditingSaveOption": "ROW_LEVEL", + "isLoading": false, + "isSortable": true, + "isVisible": true, + "isVisibleDownload": true, + "isVisibleFilters": false, + "isVisiblePagination": true, + "isVisibleSearch": false, + "key": "9mn8k38jb0", + "label": "Data", + "leftColumn": 0, + "minWidth": 450, + "mobileBottomRow": 33, + "mobileLeftColumn": 1, + "mobileRightColumn": 35, + "mobileTopRow": 5, + "needsErrorInfo": false, + "originalBottomRow": 41, + "originalTopRow": 5, + "parentColumnSpace": 11.265625, + "parentId": "o7m1w5vrow", + "parentRowSpace": 10, + "primaryColumns": { + "Product": { + "alias": "Product", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = Table1.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"Product\"])) : Product })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "Product", + "index": 0, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "Product", + "notation": "standard", + "originalId": "Product", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "Qty_Ordered": { + "alias": "Qty Ordered", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "number", + "computedValue": "{{(() => { const tableData = Table1.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"Qty Ordered\"])) : Qty Ordered })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "Qty_Ordered", + "index": 1, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "Qty Ordered", + "notation": "standard", + "originalId": "Qty Ordered", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + } + }, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 62, + "searchKey": "", + "tableData": "{{units_ordered_by_series.data}}", + "textSize": "0.775rem", + "topRow": 7, + "totalRecordsCount": 0, + "type": "TABLE_WIDGET_V2", + "version": 2, + "verticalAlignment": "CENTER", + "widgetId": "09qniwp9nt", + "widgetName": "Table1" +} \ No newline at end of file diff --git a/pages/Sales - Units Ordered/widgets/Tabs1/Table1Copy.json b/pages/Sales - Units Ordered/widgets/Tabs1/Table1Copy.json new file mode 100644 index 0000000..99ebbbe --- /dev/null +++ b/pages/Sales - Units Ordered/widgets/Tabs1/Table1Copy.json @@ -0,0 +1,264 @@ +{ + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "animateLoading": true, + "borderColor": "#E0DEDE", + "borderRadius": "0.375rem", + "borderWidth": "1", + "bottomRow": 168, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "cachedTableData": {}, + "canFreezeColumn": true, + "childStylesheet": { + "button": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "editActions": { + "discardBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "discardButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "saveBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "saveButtonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "iconButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "menuButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "menuColor": "{{appsmith.theme.colors.primaryColor}}" + } + }, + "columnOrder": [ + "Product", + "Qty_Ordered", + "Power_Output", + "Input" + ], + "columnUpdatedAt": 1769094100515, + "columnWidthMap": { + "Power_Output": 150, + "Product": 146, + "Qty_Ordered": 130 + }, + "compactMode": "SHORT", + "customIsLoading": false, + "customIsLoadingValue": "", + "defaultPageSize": 0, + "defaultSelectedRowIndex": 0, + "defaultSelectedRowIndices": [ + 0 + ], + "delimiter": ",", + "dynamicBindingPathList": [ + { + "key": "accentColor" + }, + { + "key": "boxShadow" + }, + { + "key": "primaryColumns.Product.computedValue" + }, + { + "key": "primaryColumns.Qty_Ordered.computedValue" + }, + { + "key": "tableData" + }, + { + "key": "primaryColumns.Power_Output.computedValue" + }, + { + "key": "primaryColumns.Input.computedValue" + } + ], + "dynamicPropertyPathList": [ + { + "key": "tableData" + }, + { + "key": "textSize" + } + ], + "dynamicTriggerPathList": [], + "enableClientSideSearch": true, + "endOfData": false, + "flexVerticalAlignment": "start", + "horizontalAlignment": "LEFT", + "inlineEditingSaveOption": "ROW_LEVEL", + "isLoading": false, + "isSortable": true, + "isVisible": true, + "isVisibleDownload": true, + "isVisibleFilters": false, + "isVisiblePagination": true, + "isVisibleSearch": false, + "key": "9mn8k38jb0", + "label": "Data", + "leftColumn": 0, + "minWidth": 450, + "mobileBottomRow": 33, + "mobileLeftColumn": 1, + "mobileRightColumn": 35, + "mobileTopRow": 5, + "needsErrorInfo": false, + "originalBottomRow": 42, + "originalTopRow": 6, + "parentColumnSpace": 11.265625, + "parentId": "5ghij529ih", + "parentRowSpace": 10, + "primaryColumns": { + "Input": { + "alias": "Input", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = Table1Copy.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"Input\"])) : Input })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "Input", + "index": 2, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "Input", + "notation": "standard", + "originalId": "Input", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "Power_Output": { + "alias": "Power Output", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = Table1Copy.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"Power Output\"])) : Power Output })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "Power_Output", + "index": 1, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "Power Output", + "notation": "standard", + "originalId": "Power Output", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "Product": { + "alias": "Product", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = Table1Copy.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"Product\"])) : Product })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "Product", + "index": 0, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "Product", + "notation": "standard", + "originalId": "Product", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "Qty_Ordered": { + "alias": "Qty Ordered", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "number", + "computedValue": "{{(() => { const tableData = Table1Copy.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"Qty Ordered\"])) : Qty Ordered })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "Qty_Ordered", + "index": 1, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "Qty Shipped", + "notation": "standard", + "originalId": "Qty Ordered", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + } + }, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 61, + "searchKey": "", + "tableData": "{{units_ordered_by_power_input.data}}", + "textSize": "0.775rem", + "topRow": 7, + "totalRecordsCount": 0, + "type": "TABLE_WIDGET_V2", + "version": 2, + "verticalAlignment": "CENTER", + "widgetId": "sxi5n9a1yp", + "widgetName": "Table1Copy" +} \ No newline at end of file diff --git a/pages/Sales - Units Ordered/widgets/Tabs1/Tabs1.json b/pages/Sales - Units Ordered/widgets/Tabs1/Tabs1.json new file mode 100644 index 0000000..f3d2e43 --- /dev/null +++ b/pages/Sales - Units Ordered/widgets/Tabs1/Tabs1.json @@ -0,0 +1,162 @@ +{ + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "animateLoading": true, + "backgroundColor": "#FFFFFF", + "borderColor": "#E0DEDE", + "borderRadius": "0.375rem", + "borderWidth": 1, + "bottomRow": 122, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "children": [ + { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 1130, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "canExtend": true, + "detachFromLayout": true, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "flexLayers": [], + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "fye1v5uu19", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minHeight": 150, + "minWidth": 450, + "mobileBottomRow": 150, + "mobileLeftColumn": 0, + "mobileRightColumn": 602.625, + "mobileTopRow": 0, + "needsErrorInfo": false, + "parentColumnSpace": 1, + "parentId": "cgiukoz6f7", + "parentRowSpace": 1, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 602.625, + "shouldScrollContents": false, + "tabId": "tab1", + "tabName": "Series", + "topRow": 0, + "type": "CANVAS_WIDGET", + "version": 1, + "widgetId": "o7m1w5vrow", + "widgetName": "Canvas1" + }, + { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 1680, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "canExtend": true, + "detachFromLayout": true, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "flexLayers": [], + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "fye1v5uu19", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minHeight": 150, + "minWidth": 450, + "mobileBottomRow": 150, + "mobileLeftColumn": 0, + "mobileRightColumn": 602.625, + "mobileTopRow": 0, + "needsErrorInfo": false, + "parentColumnSpace": 1, + "parentId": "cgiukoz6f7", + "parentRowSpace": 1, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 602.625, + "shouldScrollContents": false, + "tabId": "tab2", + "tabName": "Power Level, Input Voltage", + "topRow": 0, + "type": "CANVAS_WIDGET", + "version": 1, + "widgetId": "5ghij529ih", + "widgetName": "Canvas2" + } + ], + "defaultTab": "By Series", + "dynamicBindingPathList": [ + { + "key": "accentColor" + }, + { + "key": "boxShadow" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "flexVerticalAlignment": "stretch", + "isCanvas": true, + "isLoading": false, + "isVisible": true, + "key": "r7d08pu9q8", + "leftColumn": 9, + "maxDynamicHeight": 9000, + "minDynamicHeight": 15, + "minWidth": 450, + "mobileBottomRow": 76, + "mobileLeftColumn": 2, + "mobileRightColumn": 26, + "mobileTopRow": 61, + "needsErrorInfo": false, + "originalBottomRow": 123, + "originalTopRow": 5, + "parentColumnSpace": 25.109375, + "parentId": "0", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 64, + "shouldScrollContents": true, + "shouldShowTabs": true, + "tabsObj": { + "tab1": { + "id": "tab1", + "index": 0, + "isVisible": true, + "label": "Series", + "positioning": "vertical", + "widgetId": "o7m1w5vrow" + }, + "tab2": { + "id": "tab2", + "index": 1, + "isVisible": true, + "label": "Power Level, Input Voltage", + "positioning": "vertical", + "widgetId": "5ghij529ih" + } + }, + "topRow": 5, + "type": "TABS_WIDGET", + "version": 3, + "widgetId": "cgiukoz6f7", + "widgetName": "Tabs1" +} \ No newline at end of file diff --git a/pages/Sales - Units Shipped/Sales - Units Shipped.json b/pages/Sales - Units Shipped/Sales - Units Shipped.json new file mode 100644 index 0000000..bd78b18 --- /dev/null +++ b/pages/Sales - Units Shipped/Sales - Units Shipped.json @@ -0,0 +1,32 @@ +{ + "gitSyncId": "6806a8bdc0c8882e5a70d0a0_5431d255-7eef-429a-9b5c-fd512fa27280", + "unpublishedPage": { + "isHidden": false, + "layouts": [ + { + "dsl": { + "backgroundColor": "none", + "bottomRow": 1220, + "canExtend": true, + "containerStyle": "none", + "detachFromLayout": true, + "dynamicBindingPathList": [], + "leftColumn": 0, + "minHeight": 1540, + "parentColumnSpace": 1, + "parentRowSpace": 1, + "rightColumn": 1224, + "snapColumns": 64, + "snapRows": 152, + "topRow": 0, + "type": "CANVAS_WIDGET", + "version": 94, + "widgetId": "0", + "widgetName": "MainContainer" + } + } + ], + "name": "Sales - Units Shipped", + "slug": "sales-units-shipped" + } +} \ No newline at end of file diff --git a/pages/Sales - Units Shipped/queries/units_shipped_by_power_input/metadata.json b/pages/Sales - Units Shipped/queries/units_shipped_by_power_input/metadata.json new file mode 100644 index 0000000..358cfd7 --- /dev/null +++ b/pages/Sales - Units Shipped/queries/units_shipped_by_power_input/metadata.json @@ -0,0 +1,35 @@ +{ + "gitSyncId": "6968b6e8271e5e0befde3194_98c37e6e-a601-42f5-891b-1f5d43184f50", + "id": "Sales - Units Shipped_units_shipped_by_power_input", + "pluginId": "postgres-plugin", + "pluginType": "DB", + "unpublishedAction": { + "actionConfiguration": { + "body": "SELECT\nCASE WHEN item_number IN ('16688','25020') THEN 'XR Series'\nWHEN item_number IN ('22351','24952') THEN 'SL Series'\nWHEN item_number IN ('17861','25021','29243','29752') THEN 'TS Series'\nWHEN item_number IN ('17862') THEN 'MS Series'\nWHEN item_number IN ('17863') THEN 'MT Series'\nWHEN item_number IN ('17873') THEN 'Harmonic Neutralizer'\n\nELSE 'None'\nEND AS \"Product\",\nreportpower.charass_value as \"Power Output\", reportinput.charass_value || ' ' || reportphases.charass_value AS \"Input\", ROUND(SUM(coitem_qtyshipped),0) as \"Qty Shipped\"\nFROM coitem LEFT OUTER JOIN cohead ON cohead_id=coitem_cohead_id\nLEFT OUTER JOIN itemsite ON coitem_itemsite_id = itemsite_id\nLEFT OUTER JOIN item ON item_id = itemsite_item_id\nLEFT OUTER JOIN charass AS reportpower ON\n(coitem_id = reportpower.charass_target_id\nAND reportpower.charass_target_type = 'SI'\nAND reportpower.charass_char_id = 25)\nLEFT OUTER JOIN charass AS reportinput ON\n(coitem_id = reportinput.charass_target_id\nAND reportinput.charass_target_type = 'SI'\nAND reportinput.charass_char_id = 36)\nLEFT OUTER JOIN charass AS reportphases ON\n(coitem_id = reportphases.charass_target_id\nAND reportphases.charass_target_type = 'SI'\nAND reportphases.charass_char_id = 18)\nWHERE item_number IN ('16688','17861','17862','17863','22351','25020','25144','25147','25021','24952','17873','29243','29752')\nAND (coitem_status <> 'X')\nAND cohead_id NOT IN(SELECT cohead_id from rahead LEFT OUTER JOIN cohead ON rahead_new_cohead_id=cohead_id WHERE cohead_id IS NOT NULL)\nAND coitem_price != 0\nAND (\n\tNULLIF('{{PowerDateFrom.selectedDate}}','') IS NULL\n\tOR NULLIF('{{PowerDateTo.selectedDate}}','') IS NULL\n\tOR cohead_orderdate BETWEEN\n\tNULLIF('{{PowerDateFrom.selectedDate}}','')::date\n\tAND NULLIF('{{PowerDateTo.selectedDate}}','')::date\n)\nAND reportpower.charass_value IS NOT NULL\nGROUP BY reportpower.charass_value, \"Product\", \"Input\"\nORDER BY \"Product\", reportpower.charass_value\n", + "encodeParamsToggle": true, + "paginationType": "NONE", + "pluginSpecifiedTemplates": [ + { + "value": true + } + ], + "timeoutInMillisecond": 10000 + }, + "confirmBeforeExecute": false, + "datasource": { + "id": "xTuple_GoLive", + "isAutoGenerated": false, + "name": "xTuple_GoLive", + "pluginId": "postgres-plugin" + }, + "dynamicBindingPathList": [ + { + "key": "body" + } + ], + "name": "units_shipped_by_power_input", + "pageId": "Sales - Units Shipped", + "runBehaviour": "AUTOMATIC", + "userSetOnLoad": false + } +} \ No newline at end of file diff --git a/pages/Sales - Units Shipped/queries/units_shipped_by_power_input/units_shipped_by_power_input.txt b/pages/Sales - Units Shipped/queries/units_shipped_by_power_input/units_shipped_by_power_input.txt new file mode 100644 index 0000000..7c66ff6 --- /dev/null +++ b/pages/Sales - Units Shipped/queries/units_shipped_by_power_input/units_shipped_by_power_input.txt @@ -0,0 +1,40 @@ +SELECT +CASE WHEN item_number IN ('16688','25020') THEN 'XR Series' +WHEN item_number IN ('22351','24952') THEN 'SL Series' +WHEN item_number IN ('17861','25021','29243','29752') THEN 'TS Series' +WHEN item_number IN ('17862') THEN 'MS Series' +WHEN item_number IN ('17863') THEN 'MT Series' +WHEN item_number IN ('17873') THEN 'Harmonic Neutralizer' + +ELSE 'None' +END AS "Product", +reportpower.charass_value as "Power Output", reportinput.charass_value || ' ' || reportphases.charass_value AS "Input", ROUND(SUM(coitem_qtyshipped),0) as "Qty Shipped" +FROM coitem LEFT OUTER JOIN cohead ON cohead_id=coitem_cohead_id +LEFT OUTER JOIN itemsite ON coitem_itemsite_id = itemsite_id +LEFT OUTER JOIN item ON item_id = itemsite_item_id +LEFT OUTER JOIN charass AS reportpower ON +(coitem_id = reportpower.charass_target_id +AND reportpower.charass_target_type = 'SI' +AND reportpower.charass_char_id = 25) +LEFT OUTER JOIN charass AS reportinput ON +(coitem_id = reportinput.charass_target_id +AND reportinput.charass_target_type = 'SI' +AND reportinput.charass_char_id = 36) +LEFT OUTER JOIN charass AS reportphases ON +(coitem_id = reportphases.charass_target_id +AND reportphases.charass_target_type = 'SI' +AND reportphases.charass_char_id = 18) +WHERE item_number IN ('16688','17861','17862','17863','22351','25020','25144','25147','25021','24952','17873','29243','29752') +AND (coitem_status <> 'X') +AND cohead_id NOT IN(SELECT cohead_id from rahead LEFT OUTER JOIN cohead ON rahead_new_cohead_id=cohead_id WHERE cohead_id IS NOT NULL) +AND coitem_price != 0 +AND ( + NULLIF('{{PowerDateFrom.selectedDate}}','') IS NULL + OR NULLIF('{{PowerDateTo.selectedDate}}','') IS NULL + OR cohead_orderdate BETWEEN + NULLIF('{{PowerDateFrom.selectedDate}}','')::date + AND NULLIF('{{PowerDateTo.selectedDate}}','')::date +) +AND reportpower.charass_value IS NOT NULL +GROUP BY reportpower.charass_value, "Product", "Input" +ORDER BY "Product", reportpower.charass_value diff --git a/pages/Sales - Units Shipped/queries/units_shipped_by_series/metadata.json b/pages/Sales - Units Shipped/queries/units_shipped_by_series/metadata.json new file mode 100644 index 0000000..c994ae6 --- /dev/null +++ b/pages/Sales - Units Shipped/queries/units_shipped_by_series/metadata.json @@ -0,0 +1,35 @@ +{ + "gitSyncId": "6968b6e8271e5e0befde3194_5de92824-82c7-4bcd-b6d9-418ce79d7c71", + "id": "Sales - Units Shipped_units_shipped_by_series", + "pluginId": "postgres-plugin", + "pluginType": "DB", + "unpublishedAction": { + "actionConfiguration": { + "body": "SELECT \nCASE WHEN item_number IN ('16688','25020') THEN 'XR Series'\nWHEN item_number IN ('22351','24952') THEN 'SL Series'\nWHEN item_number IN ('17861','25021','29243','29752') THEN 'TS Series'\nWHEN item_number IN ('17862') THEN 'MS Series'\nWHEN item_number IN ('17863') THEN 'MT Series'\nWHEN item_number IN ('17873') THEN 'Harmonic Neutralizer'\n\nELSE 'None'\nEND AS \"Product\",\nROUND(SUM(coitem_qtyord),0) as \"Qty Ordered\"\nFROM coitem LEFT OUTER JOIN cohead ON cohead_id=coitem_cohead_id\nLEFT OUTER JOIN itemsite ON coitem_itemsite_id = itemsite_id\nLEFT OUTER JOIN item ON item_id = itemsite_item_id\nLEFT OUTER JOIN charass AS reportpower ON \n(coitem_id = reportpower.charass_target_id \n AND reportpower.charass_target_type = 'SI'\n AND reportpower.charass_char_id = 25)\nWHERE item_number IN ('16688','17861','17862','17863','22351','25020','25144','25147','25021','24952','17873','29243','29752')\nAND (coitem_status <> 'X') \nAND cohead_id NOT IN(SELECT cohead_id from rahead LEFT OUTER JOIN cohead ON rahead_new_cohead_id=cohead_id WHERE cohead_id IS NOT NULL)\nAND coitem_price != 0\nAND reportpower.charass_value IS NOT NULL\nAND (\n\tNULLIF('{{SeriesDateFrom.selectedDate}}','') IS NULL\n\tOR NULLIF('{{SeriesDateTo.selectedDate}}','') IS NULL\n\tOR cohead_orderdate BETWEEN\n\tNULLIF('{{SeriesDateFrom.selectedDate}}','')::date\n\tAND NULLIF('{{SeriesDateTo.selectedDate}}','')::date\n)\nGROUP BY \"Product\"\nORDER BY \"Product\"", + "encodeParamsToggle": true, + "paginationType": "NONE", + "pluginSpecifiedTemplates": [ + { + "value": true + } + ], + "timeoutInMillisecond": 10000 + }, + "confirmBeforeExecute": false, + "datasource": { + "id": "xTuple_GoLive", + "isAutoGenerated": false, + "name": "xTuple_GoLive", + "pluginId": "postgres-plugin" + }, + "dynamicBindingPathList": [ + { + "key": "body" + } + ], + "name": "units_shipped_by_series", + "pageId": "Sales - Units Shipped", + "runBehaviour": "AUTOMATIC", + "userSetOnLoad": false + } +} \ No newline at end of file diff --git a/pages/Sales - Units Shipped/queries/units_shipped_by_series/units_shipped_by_series.txt b/pages/Sales - Units Shipped/queries/units_shipped_by_series/units_shipped_by_series.txt new file mode 100644 index 0000000..dc70a79 --- /dev/null +++ b/pages/Sales - Units Shipped/queries/units_shipped_by_series/units_shipped_by_series.txt @@ -0,0 +1,32 @@ +SELECT +CASE WHEN item_number IN ('16688','25020') THEN 'XR Series' +WHEN item_number IN ('22351','24952') THEN 'SL Series' +WHEN item_number IN ('17861','25021','29243','29752') THEN 'TS Series' +WHEN item_number IN ('17862') THEN 'MS Series' +WHEN item_number IN ('17863') THEN 'MT Series' +WHEN item_number IN ('17873') THEN 'Harmonic Neutralizer' + +ELSE 'None' +END AS "Product", +ROUND(SUM(coitem_qtyord),0) as "Qty Ordered" +FROM coitem LEFT OUTER JOIN cohead ON cohead_id=coitem_cohead_id +LEFT OUTER JOIN itemsite ON coitem_itemsite_id = itemsite_id +LEFT OUTER JOIN item ON item_id = itemsite_item_id +LEFT OUTER JOIN charass AS reportpower ON +(coitem_id = reportpower.charass_target_id + AND reportpower.charass_target_type = 'SI' + AND reportpower.charass_char_id = 25) +WHERE item_number IN ('16688','17861','17862','17863','22351','25020','25144','25147','25021','24952','17873','29243','29752') +AND (coitem_status <> 'X') +AND cohead_id NOT IN(SELECT cohead_id from rahead LEFT OUTER JOIN cohead ON rahead_new_cohead_id=cohead_id WHERE cohead_id IS NOT NULL) +AND coitem_price != 0 +AND reportpower.charass_value IS NOT NULL +AND ( + NULLIF('{{SeriesDateFrom.selectedDate}}','') IS NULL + OR NULLIF('{{SeriesDateTo.selectedDate}}','') IS NULL + OR cohead_orderdate BETWEEN + NULLIF('{{SeriesDateFrom.selectedDate}}','')::date + AND NULLIF('{{SeriesDateTo.selectedDate}}','')::date +) +GROUP BY "Product" +ORDER BY "Product" \ No newline at end of file diff --git a/pages/Sales - Units Shipped/widgets/Container1/Button1.json b/pages/Sales - Units Shipped/widgets/Container1/Button1.json new file mode 100644 index 0000000..ec9d78a --- /dev/null +++ b/pages/Sales - Units Shipped/widgets/Container1/Button1.json @@ -0,0 +1,43 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 8, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "0k5ucqsuin", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 8, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 4, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Sales - Capacity Planning', {}, 'SAME_WINDOW');}}", + "parentColumnSpace": 3.841796875, + "parentId": "wj6fxg5wpg", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Capacity Planning", + "topRow": 4, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "oqzyf0e1bi", + "widgetName": "Button1" +} \ No newline at end of file diff --git a/pages/Sales - Units Shipped/widgets/Container1/Button1Copy.json b/pages/Sales - Units Shipped/widgets/Container1/Button1Copy.json new file mode 100644 index 0000000..382cae4 --- /dev/null +++ b/pages/Sales - Units Shipped/widgets/Container1/Button1Copy.json @@ -0,0 +1,47 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 12, + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.backgroundColor}}", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [ + { + "key": "buttonColor" + } + ], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "0k5ucqsuin", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 8, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 4, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Sales - Units Shipped', {}, 'SAME_WINDOW');}}", + "parentColumnSpace": 3.841796875, + "parentId": "wj6fxg5wpg", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Units Shipped", + "topRow": 8, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "n1t7a2l372", + "widgetName": "Button1Copy" +} \ No newline at end of file diff --git a/pages/Sales - Units Shipped/widgets/Container1/Button1Copy2.json b/pages/Sales - Units Shipped/widgets/Container1/Button1Copy2.json new file mode 100644 index 0000000..6813536 --- /dev/null +++ b/pages/Sales - Units Shipped/widgets/Container1/Button1Copy2.json @@ -0,0 +1,43 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 16, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "0q2m6y1b7z", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 8, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 4, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Sales - Units Ordered', {}, 'SAME_WINDOW');}}", + "parentColumnSpace": 3.841796875, + "parentId": "wj6fxg5wpg", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Units Ordered", + "topRow": 12, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "c7t1ah8lmv", + "widgetName": "Button1Copy2" +} \ No newline at end of file diff --git a/pages/Sales - Units Shipped/widgets/Container1/Button2All.json b/pages/Sales - Units Shipped/widgets/Container1/Button2All.json new file mode 100644 index 0000000..fc5d569 --- /dev/null +++ b/pages/Sales - Units Shipped/widgets/Container1/Button2All.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 26, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "us1btnkeyall", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 26, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 22, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Pending POs', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 26, + "originalTopRow": 22, + "parentColumnSpace": 3.841796875, + "parentId": "wj6fxg5wpg", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Pending POs", + "topRow": 22, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "us1btnallpn", + "widgetName": "Button2All" +} \ No newline at end of file diff --git a/pages/Sales - Units Shipped/widgets/Container1/Button2Copy.json b/pages/Sales - Units Shipped/widgets/Container1/Button2Copy.json new file mode 100644 index 0000000..26ca730 --- /dev/null +++ b/pages/Sales - Units Shipped/widgets/Container1/Button2Copy.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 30, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "su1btnkey005", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 30, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 26, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Pending Revisions', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 30, + "originalTopRow": 26, + "parentColumnSpace": 3.841796875, + "parentId": "wj6fxg5wpg", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Pending Revisions", + "topRow": 26, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "su1btnpndrv", + "widgetName": "Button2Copy" +} \ No newline at end of file diff --git a/pages/Sales - Units Shipped/widgets/Container1/Button2Copy2.json b/pages/Sales - Units Shipped/widgets/Container1/Button2Copy2.json new file mode 100644 index 0000000..2a85f60 --- /dev/null +++ b/pages/Sales - Units Shipped/widgets/Container1/Button2Copy2.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 34, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "su1btnkxg01", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 34, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 30, + "needsErrorInfo": false, + "onClick": "{{navigateTo('xGen', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 34, + "originalTopRow": 30, + "parentColumnSpace": 3.841796875, + "parentId": "wj6fxg5wpg", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "xGen", + "topRow": 30, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "su1btnxgen", + "widgetName": "Button2Copy2" +} \ No newline at end of file diff --git a/pages/Sales - Units Shipped/widgets/Container1/Button3.json b/pages/Sales - Units Shipped/widgets/Container1/Button3.json new file mode 100644 index 0000000..c5f1889 --- /dev/null +++ b/pages/Sales - Units Shipped/widgets/Container1/Button3.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 44, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "sh1btn3k01", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 44, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 40, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Operations - Job Drawing Status', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 44, + "originalTopRow": 40, + "parentColumnSpace": 3.841796875, + "parentId": "wj6fxg5wpg", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Job Drawing Status", + "topRow": 40, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "sh1btn3jds", + "widgetName": "Button3" +} \ No newline at end of file diff --git a/pages/Sales - Units Shipped/widgets/Container1/Button3Copy.json b/pages/Sales - Units Shipped/widgets/Container1/Button3Copy.json new file mode 100644 index 0000000..9f7ecf2 --- /dev/null +++ b/pages/Sales - Units Shipped/widgets/Container1/Button3Copy.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 48, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "sh1btn3k02", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 48, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 44, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Operations - Engineering Holds', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 48, + "originalTopRow": 44, + "parentColumnSpace": 3.841796875, + "parentId": "wj6fxg5wpg", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Engineering Holds", + "topRow": 44, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "sh1btn3enh", + "widgetName": "Button3Copy" +} \ No newline at end of file diff --git a/pages/Sales - Units Shipped/widgets/Container1/Button3Copy2.json b/pages/Sales - Units Shipped/widgets/Container1/Button3Copy2.json new file mode 100644 index 0000000..d510c03 --- /dev/null +++ b/pages/Sales - Units Shipped/widgets/Container1/Button3Copy2.json @@ -0,0 +1,47 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 52, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicHeight": "FIXED", + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "su1btn3uik", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minWidth": 120, + "mobileBottomRow": 52, + "mobileLeftColumn": 0, + "mobileRightColumn": 64, + "mobileTopRow": 48, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Operations - Unused Items', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 52, + "originalTopRow": 48, + "parentColumnSpace": 3.841796875, + "parentId": "wj6fxg5wpg", + "parentRowSpace": 10, + "placement": "START", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Unused Items", + "topRow": 48, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "su1btn3ui", + "widgetName": "Button3Copy2" +} \ No newline at end of file diff --git a/pages/Sales - Units Shipped/widgets/Container1/Container1.json b/pages/Sales - Units Shipped/widgets/Container1/Container1.json new file mode 100644 index 0000000..f5ecaae --- /dev/null +++ b/pages/Sales - Units Shipped/widgets/Container1/Container1.json @@ -0,0 +1,87 @@ +{ + "animateLoading": true, + "backgroundColor": "#FFFFFF", + "borderColor": "#E0DEDE", + "borderRadius": "0px", + "borderWidth": "1", + "bottomRow": 122, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "children": [ + { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 1220, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "canExtend": false, + "containerStyle": "none", + "detachFromLayout": true, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "flexLayers": [], + "isLoading": false, + "isVisible": true, + "key": "xorz42kdhi", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minHeight": 100, + "minWidth": 450, + "mobileBottomRow": 100, + "mobileLeftColumn": 0, + "mobileRightColumn": 132.9375, + "mobileTopRow": 0, + "needsErrorInfo": false, + "parentColumnSpace": 1, + "parentId": "oi2qb8kxz9", + "parentRowSpace": 1, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 132.9375, + "topRow": 0, + "type": "CANVAS_WIDGET", + "version": 1, + "widgetId": "wj6fxg5wpg", + "widgetName": "Canvas1Copy" + } + ], + "containerStyle": "card", + "dynamicBindingPathList": [ + { + "key": "boxShadow" + } + ], + "dynamicHeight": "FIXED", + "dynamicTriggerPathList": [], + "flexVerticalAlignment": "stretch", + "isCanvas": true, + "isLoading": false, + "isVisible": true, + "key": "36jaq5m9iy", + "leftColumn": 0, + "maxDynamicHeight": 12, + "minDynamicHeight": 10, + "minWidth": 450, + "mobileBottomRow": 10, + "mobileLeftColumn": 0, + "mobileRightColumn": 3, + "mobileTopRow": 0, + "needsErrorInfo": false, + "parentColumnSpace": 44.3125, + "parentId": "0", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 9, + "shouldScrollContents": true, + "topRow": 0, + "type": "CONTAINER_WIDGET", + "version": 1, + "widgetId": "oi2qb8kxz9", + "widgetName": "Container1" +} \ No newline at end of file diff --git a/pages/Sales - Units Shipped/widgets/Container1/Text1Copy.json b/pages/Sales - Units Shipped/widgets/Container1/Text1Copy.json new file mode 100644 index 0000000..7689d05 --- /dev/null +++ b/pages/Sales - Units Shipped/widgets/Container1/Text1Copy.json @@ -0,0 +1,52 @@ +{ + "animateLoading": true, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 4, + "dynamicBindingPathList": [ + { + "key": "truncateButtonColor" + }, + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", + "fontSize": "1rem", + "fontStyle": "BOLD", + "isLoading": false, + "isVisible": true, + "key": "01n8bhu9n6", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minWidth": 450, + "mobileBottomRow": 6, + "mobileLeftColumn": 10, + "mobileRightColumn": 26, + "mobileTopRow": 2, + "needsErrorInfo": false, + "originalBottomRow": 7, + "originalTopRow": 0, + "overflow": "NONE", + "parentColumnSpace": 3.841796875, + "parentId": "wj6fxg5wpg", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 64, + "shouldTruncate": false, + "text": "Sales", + "textAlign": "LEFT", + "textColor": "#231F20", + "topRow": 0, + "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "type": "TEXT_WIDGET", + "version": 1, + "widgetId": "8edga77jlx", + "widgetName": "Text1Copy" +} \ No newline at end of file diff --git a/pages/Sales - Units Shipped/widgets/Container1/Text2.json b/pages/Sales - Units Shipped/widgets/Container1/Text2.json new file mode 100644 index 0000000..64486e5 --- /dev/null +++ b/pages/Sales - Units Shipped/widgets/Container1/Text2.json @@ -0,0 +1,52 @@ +{ + "animateLoading": true, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 22, + "dynamicBindingPathList": [ + { + "key": "truncateButtonColor" + }, + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", + "fontSize": "1rem", + "fontStyle": "BOLD", + "isLoading": false, + "isVisible": true, + "key": "us1txkey01", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minWidth": 450, + "mobileBottomRow": 22, + "mobileLeftColumn": 10, + "mobileRightColumn": 26, + "mobileTopRow": 18, + "needsErrorInfo": false, + "originalBottomRow": 22, + "originalTopRow": 18, + "overflow": "NONE", + "parentColumnSpace": 3.841796875, + "parentId": "wj6fxg5wpg", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 64, + "shouldTruncate": false, + "text": "Engineering", + "textAlign": "LEFT", + "textColor": "#231F20", + "topRow": 18, + "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "type": "TEXT_WIDGET", + "version": 1, + "widgetId": "us1txtpndpo", + "widgetName": "Text2" +} \ No newline at end of file diff --git a/pages/Sales - Units Shipped/widgets/Container1/Text3.json b/pages/Sales - Units Shipped/widgets/Container1/Text3.json new file mode 100644 index 0000000..87063ca --- /dev/null +++ b/pages/Sales - Units Shipped/widgets/Container1/Text3.json @@ -0,0 +1,52 @@ +{ + "animateLoading": true, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 40, + "dynamicBindingPathList": [ + { + "key": "truncateButtonColor" + }, + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", + "fontSize": "1rem", + "fontStyle": "BOLD", + "isLoading": false, + "isVisible": true, + "key": "us1txt3k01", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minWidth": 450, + "mobileBottomRow": 40, + "mobileLeftColumn": 10, + "mobileRightColumn": 26, + "mobileTopRow": 36, + "needsErrorInfo": false, + "originalBottomRow": 40, + "originalTopRow": 36, + "overflow": "NONE", + "parentColumnSpace": 3.841796875, + "parentId": "wj6fxg5wpg", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 64, + "shouldTruncate": false, + "text": "Operations", + "textAlign": "LEFT", + "textColor": "#231F20", + "topRow": 36, + "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "type": "TEXT_WIDGET", + "version": 1, + "widgetId": "us1txt3ops", + "widgetName": "Text3" +} \ No newline at end of file diff --git a/pages/Sales - Units Shipped/widgets/Heading.json b/pages/Sales - Units Shipped/widgets/Heading.json new file mode 100644 index 0000000..38e955d --- /dev/null +++ b/pages/Sales - Units Shipped/widgets/Heading.json @@ -0,0 +1,52 @@ +{ + "animateLoading": true, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 5, + "dynamicBindingPathList": [ + { + "key": "truncateButtonColor" + }, + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", + "fontSize": "1.875rem", + "fontStyle": "BOLD", + "isLoading": false, + "isVisible": true, + "key": "pii8e5rbru", + "leftColumn": 9, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minWidth": 450, + "mobileBottomRow": 5, + "mobileLeftColumn": 1, + "mobileRightColumn": 17, + "mobileTopRow": 1, + "needsErrorInfo": false, + "originalBottomRow": 5, + "originalTopRow": 0, + "overflow": "NONE", + "parentColumnSpace": 25.109375, + "parentId": "0", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 64, + "shouldTruncate": false, + "text": "Sales - Units Shipped", + "textAlign": "LEFT", + "textColor": "#231F20", + "topRow": 0, + "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "type": "TEXT_WIDGET", + "version": 1, + "widgetId": "250t24g0mo", + "widgetName": "Heading" +} \ No newline at end of file diff --git a/pages/Sales - Units Shipped/widgets/Tabs1/PowerDateFrom.json b/pages/Sales - Units Shipped/widgets/Tabs1/PowerDateFrom.json new file mode 100644 index 0000000..6619daa --- /dev/null +++ b/pages/Sales - Units Shipped/widgets/Tabs1/PowerDateFrom.json @@ -0,0 +1,55 @@ +{ + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "animateLoading": true, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 7, + "boxShadow": "none", + "closeOnSelection": true, + "dateFormat": "YYYY-MM-DD HH:mm", + "datePickerType": "DATE_PICKER", + "dynamicBindingPathList": [ + { + "key": "accentColor" + }, + { + "key": "borderRadius" + } + ], + "dynamicHeight": "FIXED", + "dynamicTriggerPathList": [], + "firstDayOfWeek": 0, + "isDisabled": false, + "isLoading": false, + "isRequired": false, + "isVisible": true, + "key": "1n4gn1ssf4", + "label": "Start Date", + "labelAlignment": "left", + "labelPosition": "Top", + "labelTextSize": "0.875rem", + "labelWidth": 5, + "leftColumn": 0, + "maxDate": "2121-12-31T18:29:00.000Z", + "maxDynamicHeight": 9000, + "minDate": "1920-12-31T18:30:00.000Z", + "minDynamicHeight": 4, + "minWidth": 450, + "mobileBottomRow": 8, + "mobileLeftColumn": 1, + "mobileRightColumn": 21, + "mobileTopRow": 1, + "needsErrorInfo": false, + "parentColumnSpace": 10.263671875, + "parentId": "5ghij529ih", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 5, + "shortcuts": false, + "timePrecision": "minute", + "topRow": 0, + "type": "DATE_PICKER_WIDGET2", + "version": 2, + "widgetId": "uflt0124wq", + "widgetName": "PowerDateFrom" +} \ No newline at end of file diff --git a/pages/Sales - Units Shipped/widgets/Tabs1/PowerDateTo.json b/pages/Sales - Units Shipped/widgets/Tabs1/PowerDateTo.json new file mode 100644 index 0000000..a807e8b --- /dev/null +++ b/pages/Sales - Units Shipped/widgets/Tabs1/PowerDateTo.json @@ -0,0 +1,55 @@ +{ + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "animateLoading": true, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 7, + "boxShadow": "none", + "closeOnSelection": true, + "dateFormat": "YYYY-MM-DD HH:mm", + "datePickerType": "DATE_PICKER", + "dynamicBindingPathList": [ + { + "key": "accentColor" + }, + { + "key": "borderRadius" + } + ], + "dynamicHeight": "FIXED", + "dynamicTriggerPathList": [], + "firstDayOfWeek": 0, + "isDisabled": false, + "isLoading": false, + "isRequired": false, + "isVisible": true, + "key": "1n4gn1ssf4", + "label": "End Date", + "labelAlignment": "left", + "labelPosition": "Top", + "labelTextSize": "0.875rem", + "labelWidth": 5, + "leftColumn": 5, + "maxDate": "2121-12-31T18:29:00.000Z", + "maxDynamicHeight": 9000, + "minDate": "1920-12-31T18:30:00.000Z", + "minDynamicHeight": 4, + "minWidth": 450, + "mobileBottomRow": 8, + "mobileLeftColumn": 1, + "mobileRightColumn": 21, + "mobileTopRow": 1, + "needsErrorInfo": false, + "parentColumnSpace": 10.263671875, + "parentId": "5ghij529ih", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 10, + "shortcuts": false, + "timePrecision": "minute", + "topRow": 0, + "type": "DATE_PICKER_WIDGET2", + "version": 2, + "widgetId": "w69wh9oixl", + "widgetName": "PowerDateTo" +} \ No newline at end of file diff --git a/pages/Sales - Units Shipped/widgets/Tabs1/SeriesDateFrom.json b/pages/Sales - Units Shipped/widgets/Tabs1/SeriesDateFrom.json new file mode 100644 index 0000000..a35db9c --- /dev/null +++ b/pages/Sales - Units Shipped/widgets/Tabs1/SeriesDateFrom.json @@ -0,0 +1,55 @@ +{ + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "animateLoading": true, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 7, + "boxShadow": "none", + "closeOnSelection": true, + "dateFormat": "YYYY-MM-DD HH:mm", + "datePickerType": "DATE_PICKER", + "dynamicBindingPathList": [ + { + "key": "accentColor" + }, + { + "key": "borderRadius" + } + ], + "dynamicHeight": "FIXED", + "dynamicTriggerPathList": [], + "firstDayOfWeek": 0, + "isDisabled": false, + "isLoading": false, + "isRequired": false, + "isVisible": true, + "key": "1n4gn1ssf4", + "label": "Start Date", + "labelAlignment": "left", + "labelPosition": "Top", + "labelTextSize": "0.875rem", + "labelWidth": 5, + "leftColumn": 0, + "maxDate": "2121-12-31T18:29:00.000Z", + "maxDynamicHeight": 9000, + "minDate": "1920-12-31T18:30:00.000Z", + "minDynamicHeight": 4, + "minWidth": 450, + "mobileBottomRow": 8, + "mobileLeftColumn": 1, + "mobileRightColumn": 21, + "mobileTopRow": 1, + "needsErrorInfo": false, + "parentColumnSpace": 10.263671875, + "parentId": "o7m1w5vrow", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 5, + "shortcuts": false, + "timePrecision": "minute", + "topRow": 0, + "type": "DATE_PICKER_WIDGET2", + "version": 2, + "widgetId": "35qo2qtt26", + "widgetName": "SeriesDateFrom" +} \ No newline at end of file diff --git a/pages/Sales - Units Shipped/widgets/Tabs1/SeriesDateTo.json b/pages/Sales - Units Shipped/widgets/Tabs1/SeriesDateTo.json new file mode 100644 index 0000000..51c85ed --- /dev/null +++ b/pages/Sales - Units Shipped/widgets/Tabs1/SeriesDateTo.json @@ -0,0 +1,55 @@ +{ + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "animateLoading": true, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 7, + "boxShadow": "none", + "closeOnSelection": true, + "dateFormat": "YYYY-MM-DD HH:mm", + "datePickerType": "DATE_PICKER", + "dynamicBindingPathList": [ + { + "key": "accentColor" + }, + { + "key": "borderRadius" + } + ], + "dynamicHeight": "FIXED", + "dynamicTriggerPathList": [], + "firstDayOfWeek": 0, + "isDisabled": false, + "isLoading": false, + "isRequired": false, + "isVisible": true, + "key": "1n4gn1ssf4", + "label": "End Date", + "labelAlignment": "left", + "labelPosition": "Top", + "labelTextSize": "0.875rem", + "labelWidth": 5, + "leftColumn": 5, + "maxDate": "2121-12-31T18:29:00.000Z", + "maxDynamicHeight": 9000, + "minDate": "1920-12-31T18:30:00.000Z", + "minDynamicHeight": 4, + "minWidth": 450, + "mobileBottomRow": 8, + "mobileLeftColumn": 1, + "mobileRightColumn": 21, + "mobileTopRow": 1, + "needsErrorInfo": false, + "parentColumnSpace": 10.263671875, + "parentId": "o7m1w5vrow", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 10, + "shortcuts": false, + "timePrecision": "minute", + "topRow": 0, + "type": "DATE_PICKER_WIDGET2", + "version": 2, + "widgetId": "33mzf7ghwq", + "widgetName": "SeriesDateTo" +} \ No newline at end of file diff --git a/pages/Sales - Units Shipped/widgets/Tabs1/Table1.json b/pages/Sales - Units Shipped/widgets/Tabs1/Table1.json new file mode 100644 index 0000000..5c45328 --- /dev/null +++ b/pages/Sales - Units Shipped/widgets/Tabs1/Table1.json @@ -0,0 +1,186 @@ +{ + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "animateLoading": true, + "borderColor": "#E0DEDE", + "borderRadius": "0.375rem", + "borderWidth": "1", + "bottomRow": 111, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "cachedTableData": {}, + "canFreezeColumn": true, + "childStylesheet": { + "button": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "editActions": { + "discardBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "discardButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "saveBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "saveButtonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "iconButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "menuButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "menuColor": "{{appsmith.theme.colors.primaryColor}}" + } + }, + "columnOrder": [ + "Product", + "Qty_Ordered" + ], + "columnUpdatedAt": 1768911391236, + "columnWidthMap": { + "Product": 152 + }, + "compactMode": "SHORT", + "customIsLoading": false, + "customIsLoadingValue": "", + "defaultPageSize": 0, + "defaultSelectedRowIndex": 0, + "defaultSelectedRowIndices": [ + 0 + ], + "delimiter": ",", + "dynamicBindingPathList": [ + { + "key": "accentColor" + }, + { + "key": "boxShadow" + }, + { + "key": "tableData" + }, + { + "key": "primaryColumns.Product.computedValue" + }, + { + "key": "primaryColumns.Qty_Ordered.computedValue" + } + ], + "dynamicPropertyPathList": [ + { + "key": "tableData" + }, + { + "key": "textSize" + } + ], + "dynamicTriggerPathList": [], + "enableClientSideSearch": true, + "endOfData": false, + "flexVerticalAlignment": "start", + "horizontalAlignment": "LEFT", + "inlineEditingSaveOption": "ROW_LEVEL", + "isLoading": false, + "isSortable": true, + "isVisible": true, + "isVisibleDownload": true, + "isVisibleFilters": false, + "isVisiblePagination": true, + "isVisibleSearch": false, + "key": "9mn8k38jb0", + "label": "Data", + "leftColumn": 0, + "minWidth": 450, + "mobileBottomRow": 33, + "mobileLeftColumn": 1, + "mobileRightColumn": 35, + "mobileTopRow": 5, + "needsErrorInfo": false, + "originalBottomRow": 41, + "originalTopRow": 5, + "parentColumnSpace": 11.265625, + "parentId": "o7m1w5vrow", + "parentRowSpace": 10, + "primaryColumns": { + "Product": { + "alias": "Product", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = Table1.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"Product\"])) : Product })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "Product", + "index": 0, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "Product", + "notation": "standard", + "originalId": "Product", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "Qty_Ordered": { + "alias": "Qty Ordered", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "number", + "computedValue": "{{(() => { const tableData = Table1.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"Qty Ordered\"])) : Qty Ordered })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "Qty_Ordered", + "index": 1, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "Qty Ordered", + "notation": "standard", + "originalId": "Qty Ordered", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + } + }, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 62, + "searchKey": "", + "tableData": "{{units_shipped_by_series.data}}", + "textSize": "0.775rem", + "topRow": 7, + "totalRecordsCount": 0, + "type": "TABLE_WIDGET_V2", + "version": 2, + "verticalAlignment": "CENTER", + "widgetId": "09qniwp9nt", + "widgetName": "Table1" +} \ No newline at end of file diff --git a/pages/Sales - Units Shipped/widgets/Tabs1/Table1Copy.json b/pages/Sales - Units Shipped/widgets/Tabs1/Table1Copy.json new file mode 100644 index 0000000..7244733 --- /dev/null +++ b/pages/Sales - Units Shipped/widgets/Tabs1/Table1Copy.json @@ -0,0 +1,264 @@ +{ + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "animateLoading": true, + "borderColor": "#E0DEDE", + "borderRadius": "0.375rem", + "borderWidth": "1", + "bottomRow": 168, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "cachedTableData": {}, + "canFreezeColumn": true, + "childStylesheet": { + "button": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "editActions": { + "discardBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "discardButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "saveBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "saveButtonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "iconButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "menuButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "menuColor": "{{appsmith.theme.colors.primaryColor}}" + } + }, + "columnOrder": [ + "Product", + "Power_Output", + "Input", + "Qty_Shipped" + ], + "columnUpdatedAt": 1773397352189, + "columnWidthMap": { + "Power_Output": 150, + "Product": 146, + "Qty_Ordered": 130 + }, + "compactMode": "SHORT", + "customIsLoading": false, + "customIsLoadingValue": "", + "defaultPageSize": 0, + "defaultSelectedRowIndex": 0, + "defaultSelectedRowIndices": [ + 0 + ], + "delimiter": ",", + "dynamicBindingPathList": [ + { + "key": "accentColor" + }, + { + "key": "boxShadow" + }, + { + "key": "primaryColumns.Product.computedValue" + }, + { + "key": "tableData" + }, + { + "key": "primaryColumns.Power_Output.computedValue" + }, + { + "key": "primaryColumns.Input.computedValue" + }, + { + "key": "primaryColumns.Qty_Shipped.computedValue" + } + ], + "dynamicPropertyPathList": [ + { + "key": "tableData" + }, + { + "key": "textSize" + } + ], + "dynamicTriggerPathList": [], + "enableClientSideSearch": true, + "endOfData": false, + "flexVerticalAlignment": "start", + "horizontalAlignment": "LEFT", + "inlineEditingSaveOption": "ROW_LEVEL", + "isLoading": false, + "isSortable": true, + "isVisible": true, + "isVisibleDownload": true, + "isVisibleFilters": false, + "isVisiblePagination": true, + "isVisibleSearch": false, + "key": "9mn8k38jb0", + "label": "Data", + "leftColumn": 0, + "minWidth": 450, + "mobileBottomRow": 33, + "mobileLeftColumn": 1, + "mobileRightColumn": 35, + "mobileTopRow": 5, + "needsErrorInfo": false, + "originalBottomRow": 42, + "originalTopRow": 6, + "parentColumnSpace": 11.265625, + "parentId": "5ghij529ih", + "parentRowSpace": 10, + "primaryColumns": { + "Input": { + "alias": "Input", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = Table1Copy.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"Input\"])) : Input })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "Input", + "index": 2, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "Input", + "notation": "standard", + "originalId": "Input", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "Power_Output": { + "alias": "Power Output", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = Table1Copy.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"Power Output\"])) : Power Output })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "Power_Output", + "index": 1, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "Power Output", + "notation": "standard", + "originalId": "Power Output", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "Product": { + "alias": "Product", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = Table1Copy.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"Product\"])) : Product })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "Product", + "index": 0, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "Product", + "notation": "standard", + "originalId": "Product", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "Qty_Shipped": { + "alias": "Qty Shipped", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "number", + "computedValue": "{{(() => { const tableData = Table1Copy.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"Qty Shipped\"])) : Qty Shipped })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "Qty_Shipped", + "index": 3, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "Qty Shipped", + "notation": "standard", + "originalId": "Qty Shipped", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + } + }, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 61, + "searchKey": "", + "tableData": "{{units_shipped_by_power_input.data}}", + "textSize": "0.775rem", + "topRow": 7, + "totalRecordsCount": 0, + "type": "TABLE_WIDGET_V2", + "version": 2, + "verticalAlignment": "CENTER", + "widgetId": "sxi5n9a1yp", + "widgetName": "Table1Copy" +} \ No newline at end of file diff --git a/pages/Sales - Units Shipped/widgets/Tabs1/Tabs1.json b/pages/Sales - Units Shipped/widgets/Tabs1/Tabs1.json new file mode 100644 index 0000000..4199c99 --- /dev/null +++ b/pages/Sales - Units Shipped/widgets/Tabs1/Tabs1.json @@ -0,0 +1,162 @@ +{ + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "animateLoading": true, + "backgroundColor": "#FFFFFF", + "borderColor": "#E0DEDE", + "borderRadius": "0.375rem", + "borderWidth": 1, + "bottomRow": 122, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "children": [ + { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 1130, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "canExtend": true, + "detachFromLayout": true, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "flexLayers": [], + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "fye1v5uu19", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minHeight": 150, + "minWidth": 450, + "mobileBottomRow": 150, + "mobileLeftColumn": 0, + "mobileRightColumn": 602.625, + "mobileTopRow": 0, + "needsErrorInfo": false, + "parentColumnSpace": 1, + "parentId": "cgiukoz6f7", + "parentRowSpace": 1, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 602.625, + "shouldScrollContents": false, + "tabId": "tab1", + "tabName": "Series", + "topRow": 0, + "type": "CANVAS_WIDGET", + "version": 1, + "widgetId": "o7m1w5vrow", + "widgetName": "Canvas1" + }, + { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 1680, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "canExtend": true, + "detachFromLayout": true, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "flexLayers": [], + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "fye1v5uu19", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minHeight": 150, + "minWidth": 450, + "mobileBottomRow": 150, + "mobileLeftColumn": 0, + "mobileRightColumn": 602.625, + "mobileTopRow": 0, + "needsErrorInfo": false, + "parentColumnSpace": 1, + "parentId": "cgiukoz6f7", + "parentRowSpace": 1, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 602.625, + "shouldScrollContents": false, + "tabId": "tab2", + "tabName": "Power Level, Input Voltage", + "topRow": 0, + "type": "CANVAS_WIDGET", + "version": 1, + "widgetId": "5ghij529ih", + "widgetName": "Canvas2" + } + ], + "defaultTab": "By Series", + "dynamicBindingPathList": [ + { + "key": "accentColor" + }, + { + "key": "boxShadow" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "flexVerticalAlignment": "stretch", + "isCanvas": true, + "isLoading": false, + "isVisible": true, + "key": "r7d08pu9q8", + "leftColumn": 9, + "maxDynamicHeight": 9000, + "minDynamicHeight": 15, + "minWidth": 450, + "mobileBottomRow": 76, + "mobileLeftColumn": 2, + "mobileRightColumn": 26, + "mobileTopRow": 61, + "needsErrorInfo": false, + "originalBottomRow": 51, + "originalTopRow": 5, + "parentColumnSpace": 25.109375, + "parentId": "0", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 64, + "shouldScrollContents": true, + "shouldShowTabs": true, + "tabsObj": { + "tab1": { + "id": "tab1", + "index": 0, + "isVisible": true, + "label": "Series", + "positioning": "vertical", + "widgetId": "o7m1w5vrow" + }, + "tab2": { + "id": "tab2", + "index": 1, + "isVisible": true, + "label": "Power Level, Input Voltage", + "positioning": "vertical", + "widgetId": "5ghij529ih" + } + }, + "topRow": 5, + "type": "TABS_WIDGET", + "version": 3, + "widgetId": "cgiukoz6f7", + "widgetName": "Tabs1" +} \ No newline at end of file diff --git a/pages/xGen/queries/xgen_buildinfo/metadata.json b/pages/xGen/queries/xgen_buildinfo/metadata.json new file mode 100644 index 0000000..c0d79b1 --- /dev/null +++ b/pages/xGen/queries/xgen_buildinfo/metadata.json @@ -0,0 +1,31 @@ +{ + "gitSyncId": "e3b197954c324fb2bd7ad792_1bbdaf37-14d8-44f2-9f9f-e4b5bfe7cda0", + "id": "xGen_xgen_buildinfo", + "pluginId": "postgres-plugin", + "pluginType": "DB", + "unpublishedAction": { + "actionConfiguration": { + "body": "SELECT * FROM mpe.buildinfo ORDER BY buildinfo_sub_id DESC\n", + "encodeParamsToggle": true, + "paginationType": "NONE", + "pluginSpecifiedTemplates": [ + { + "value": true + } + ], + "timeoutInMillisecond": 10000 + }, + "confirmBeforeExecute": false, + "datasource": { + "id": "xTuple_GoLive", + "isAutoGenerated": false, + "name": "xTuple_GoLive", + "pluginId": "postgres-plugin" + }, + "dynamicBindingPathList": [], + "name": "xgen_buildinfo", + "pageId": "xGen", + "runBehaviour": "AUTOMATIC", + "userSetOnLoad": false + } +} \ No newline at end of file diff --git a/pages/xGen/queries/xgen_buildinfo/xgen_buildinfo.txt b/pages/xGen/queries/xgen_buildinfo/xgen_buildinfo.txt new file mode 100644 index 0000000..3c04a5e --- /dev/null +++ b/pages/xGen/queries/xgen_buildinfo/xgen_buildinfo.txt @@ -0,0 +1 @@ +SELECT * FROM mpe.buildinfo ORDER BY buildinfo_sub_id DESC diff --git a/pages/xGen/queries/xgen_compatibility_items/metadata.json b/pages/xGen/queries/xgen_compatibility_items/metadata.json new file mode 100644 index 0000000..c664d33 --- /dev/null +++ b/pages/xGen/queries/xgen_compatibility_items/metadata.json @@ -0,0 +1,31 @@ +{ + "gitSyncId": "e3b197954c324fb2bd7ad792_cd267f31-d5b7-45ae-9dbd-e198d9dd2d15", + "id": "xGen_xgen_compatibility_items", + "pluginId": "postgres-plugin", + "pluginType": "DB", + "unpublishedAction": { + "actionConfiguration": { + "body": "SELECT DISTINCT hwcompatibility.hwcompatibility_item_number AS item, item.item_descrip1 AS title, item.item_descrip2 AS specification\n FROM mpe.hwcompatibility\n JOIN mpe.hwcompatibilitynotes ON hwcompatibilitynotes.hwcompatibilitynotes_hwcompatibility_association = hwcompatibility.hwcompatibility_association\n JOIN public.item ON item_number = hwcompatibility.hwcompatibility_item_number\n ORDER BY hwcompatibility.hwcompatibility_item_number\n", + "encodeParamsToggle": true, + "paginationType": "NONE", + "pluginSpecifiedTemplates": [ + { + "value": true + } + ], + "timeoutInMillisecond": 10000 + }, + "confirmBeforeExecute": false, + "datasource": { + "id": "xTuple_GoLive", + "isAutoGenerated": false, + "name": "xTuple_GoLive", + "pluginId": "postgres-plugin" + }, + "dynamicBindingPathList": [], + "name": "xgen_compatibility_items", + "pageId": "xGen", + "runBehaviour": "AUTOMATIC", + "userSetOnLoad": false + } +} \ No newline at end of file diff --git a/pages/xGen/queries/xgen_compatibility_items/xgen_compatibility_items.txt b/pages/xGen/queries/xgen_compatibility_items/xgen_compatibility_items.txt new file mode 100644 index 0000000..c5e42b6 --- /dev/null +++ b/pages/xGen/queries/xgen_compatibility_items/xgen_compatibility_items.txt @@ -0,0 +1,5 @@ +SELECT DISTINCT hwcompatibility.hwcompatibility_item_number AS item, item.item_descrip1 AS title, item.item_descrip2 AS specification + FROM mpe.hwcompatibility + JOIN mpe.hwcompatibilitynotes ON hwcompatibilitynotes.hwcompatibilitynotes_hwcompatibility_association = hwcompatibility.hwcompatibility_association + JOIN public.item ON item_number = hwcompatibility.hwcompatibility_item_number + ORDER BY hwcompatibility.hwcompatibility_item_number diff --git a/pages/xGen/queries/xgen_firmware_shipped/metadata.json b/pages/xGen/queries/xgen_firmware_shipped/metadata.json new file mode 100644 index 0000000..2eea1a7 --- /dev/null +++ b/pages/xGen/queries/xgen_firmware_shipped/metadata.json @@ -0,0 +1,31 @@ +{ + "gitSyncId": "e3b197954c324fb2bd7ad792_9a7ecca0-7bb5-4333-b63b-31e18ce7810c", + "id": "xGen_xgen_firmware_shipped", + "pluginId": "postgres-plugin", + "pluginType": "DB", + "unpublishedAction": { + "actionConfiguration": { + "body": "SELECT testhist_id AS id,\n wo_number || '-' || wo_subnumber || '-' || testhist_product_id AS wo,\n testhist_testwith_version AS firmware_version,\n testhist_testwith_buildinfo_id AS firmware_build_id,\n MAX(CASE\n WHEN (char_name = 'M/S') AND charass_value LIKE 'MS%' THEN 'true'\n ELSE NULL\n END) AS multimodule,\n MAX(CASE\n WHEN (char_name = 'Series') THEN charass_value\n ELSE NULL\n END) AS product_type,\n MAX(CASE\n WHEN (char_name = 'Configuration-Product') THEN charass_value\n ELSE NULL\n END) AS product_config,\n to_char(testhist_timestamp, 'YYYY-MM-DD') AS date\nFROM wo\n LEFT JOIN charass ON wo_id = charass_target_id\n JOIN char ON charass_char_id = char_id\n JOIN itemsite ON wo_itemsite_id = itemsite_id\n JOIN item ON itemsite.itemsite_item_id = item.item_id\n JOIN mpe.testhist ON wo_id = mpe.testhist.testhist_wo_id\nWHERE char_name IN ('Series', 'M/S', 'Configuration-Product')\n AND testhist_testwith_item_number = '28207'\nGROUP BY wo_number,\n wo_subnumber,\n testhist_testwith_version,\n testhist_id,\n testhist_product_id,\n testhist_testwith_buildinfo_id\nORDER By id DESC\n", + "encodeParamsToggle": true, + "paginationType": "NONE", + "pluginSpecifiedTemplates": [ + { + "value": true + } + ], + "timeoutInMillisecond": 10000 + }, + "confirmBeforeExecute": false, + "datasource": { + "id": "xTuple_GoLive", + "isAutoGenerated": false, + "name": "xTuple_GoLive", + "pluginId": "postgres-plugin" + }, + "dynamicBindingPathList": [], + "name": "xgen_firmware_shipped", + "pageId": "xGen", + "runBehaviour": "AUTOMATIC", + "userSetOnLoad": false + } +} \ No newline at end of file diff --git a/pages/xGen/queries/xgen_firmware_shipped/xgen_firmware_shipped.txt b/pages/xGen/queries/xgen_firmware_shipped/xgen_firmware_shipped.txt new file mode 100644 index 0000000..49d879d --- /dev/null +++ b/pages/xGen/queries/xgen_firmware_shipped/xgen_firmware_shipped.txt @@ -0,0 +1,32 @@ +SELECT testhist_id AS id, + wo_number || '-' || wo_subnumber || '-' || testhist_product_id AS wo, + testhist_testwith_version AS firmware_version, + testhist_testwith_buildinfo_id AS firmware_build_id, + MAX(CASE + WHEN (char_name = 'M/S') AND charass_value LIKE 'MS%' THEN 'true' + ELSE NULL + END) AS multimodule, + MAX(CASE + WHEN (char_name = 'Series') THEN charass_value + ELSE NULL + END) AS product_type, + MAX(CASE + WHEN (char_name = 'Configuration-Product') THEN charass_value + ELSE NULL + END) AS product_config, + to_char(testhist_timestamp, 'YYYY-MM-DD') AS date +FROM wo + LEFT JOIN charass ON wo_id = charass_target_id + JOIN char ON charass_char_id = char_id + JOIN itemsite ON wo_itemsite_id = itemsite_id + JOIN item ON itemsite.itemsite_item_id = item.item_id + JOIN mpe.testhist ON wo_id = mpe.testhist.testhist_wo_id +WHERE char_name IN ('Series', 'M/S', 'Configuration-Product') + AND testhist_testwith_item_number = '28207' +GROUP BY wo_number, + wo_subnumber, + testhist_testwith_version, + testhist_id, + testhist_product_id, + testhist_testwith_buildinfo_id +ORDER By id DESC diff --git a/pages/xGen/queries/xgen_forward_compat_break/metadata.json b/pages/xGen/queries/xgen_forward_compat_break/metadata.json new file mode 100644 index 0000000..6e2165b --- /dev/null +++ b/pages/xGen/queries/xgen_forward_compat_break/metadata.json @@ -0,0 +1,31 @@ +{ + "gitSyncId": "e3b197954c324fb2bd7ad792_4cdd56a3-29db-4b18-ba93-9dfd1df6b532", + "id": "xGen_xgen_forward_compat_break", + "pluginId": "postgres-plugin", + "pluginType": "DB", + "unpublishedAction": { + "actionConfiguration": { + "body": "select forwardcompatibilitybreak_cause_item_name as break_cause,\n array_to_string(forwardcompatibilitybreak_effected_item_names, ', ') as affected_items,\n forwardcompatibilitybreak_hwcompatibility_association as assoc,\n forwardcompatibilitybreak_timestamp::date as date_of_break from mpe.forwardcompatibilitybreak\n", + "encodeParamsToggle": true, + "paginationType": "NONE", + "pluginSpecifiedTemplates": [ + { + "value": true + } + ], + "timeoutInMillisecond": 10000 + }, + "confirmBeforeExecute": false, + "datasource": { + "id": "xTuple_GoLive", + "isAutoGenerated": false, + "name": "xTuple_GoLive", + "pluginId": "postgres-plugin" + }, + "dynamicBindingPathList": [], + "name": "xgen_forward_compat_break", + "pageId": "xGen", + "runBehaviour": "AUTOMATIC", + "userSetOnLoad": false + } +} \ No newline at end of file diff --git a/pages/xGen/queries/xgen_forward_compat_break/xgen_forward_compat_break.txt b/pages/xGen/queries/xgen_forward_compat_break/xgen_forward_compat_break.txt new file mode 100644 index 0000000..2664e7d --- /dev/null +++ b/pages/xGen/queries/xgen_forward_compat_break/xgen_forward_compat_break.txt @@ -0,0 +1,4 @@ +select forwardcompatibilitybreak_cause_item_name as break_cause, + array_to_string(forwardcompatibilitybreak_effected_item_names, ', ') as affected_items, + forwardcompatibilitybreak_hwcompatibility_association as assoc, + forwardcompatibilitybreak_timestamp::date as date_of_break from mpe.forwardcompatibilitybreak diff --git a/pages/xGen/queries/xgen_hw_compatibility_summary/metadata.json b/pages/xGen/queries/xgen_hw_compatibility_summary/metadata.json new file mode 100644 index 0000000..09eb98f --- /dev/null +++ b/pages/xGen/queries/xgen_hw_compatibility_summary/metadata.json @@ -0,0 +1,31 @@ +{ + "gitSyncId": "e3b197954c324fb2bd7ad792_16700451-1518-4db9-a6b4-e1aa90f54892", + "id": "xGen_xgen_hw_compatibility_summary", + "pluginId": "postgres-plugin", + "pluginType": "DB", + "unpublishedAction": { + "actionConfiguration": { + "body": "SELECT * FROM mpe.hwcompatibilitysummary\n", + "encodeParamsToggle": true, + "paginationType": "NONE", + "pluginSpecifiedTemplates": [ + { + "value": true + } + ], + "timeoutInMillisecond": 10000 + }, + "confirmBeforeExecute": false, + "datasource": { + "id": "xTuple_GoLive", + "isAutoGenerated": false, + "name": "xTuple_GoLive", + "pluginId": "postgres-plugin" + }, + "dynamicBindingPathList": [], + "name": "xgen_hw_compatibility_summary", + "pageId": "xGen", + "runBehaviour": "AUTOMATIC", + "userSetOnLoad": false + } +} \ No newline at end of file diff --git a/pages/xGen/queries/xgen_hw_compatibility_summary/xgen_hw_compatibility_summary.txt b/pages/xGen/queries/xgen_hw_compatibility_summary/xgen_hw_compatibility_summary.txt new file mode 100644 index 0000000..026be2d --- /dev/null +++ b/pages/xGen/queries/xgen_hw_compatibility_summary/xgen_hw_compatibility_summary.txt @@ -0,0 +1 @@ +SELECT * FROM mpe.hwcompatibilitysummary diff --git a/pages/xGen/queries/xgen_pairs/metadata.json b/pages/xGen/queries/xgen_pairs/metadata.json new file mode 100644 index 0000000..f7534df --- /dev/null +++ b/pages/xGen/queries/xgen_pairs/metadata.json @@ -0,0 +1,31 @@ +{ + "gitSyncId": "e3b197954c324fb2bd7ad792_16d5e630-a22a-422e-99f7-52c7cc28c5ea", + "id": "xGen_xgen_pairs", + "pluginId": "postgres-plugin", + "pluginType": "DB", + "unpublishedAction": { + "actionConfiguration": { + "body": "SELECT TITEM1.item_number AS item1, \n TITEM1.item_descrip1 AS item1_descrip,\n TITEM2.item_number AS item2, \n TITEM2.item_descrip1 AS item2_descrip,\n TITEM2.item_descrip2 AS item2_spec\nFROM mpe.hwcompatibilitypairs \nJOIN item AS TITEM1 ON hwcompatibilitypairs_item1_id = TITEM1.item_id \nJOIN item AS TITEM2 ON hwcompatibilitypairs_item2_id = TITEM2.item_id\n", + "encodeParamsToggle": true, + "paginationType": "NONE", + "pluginSpecifiedTemplates": [ + { + "value": true + } + ], + "timeoutInMillisecond": 10000 + }, + "confirmBeforeExecute": false, + "datasource": { + "id": "xTuple_GoLive", + "isAutoGenerated": false, + "name": "xTuple_GoLive", + "pluginId": "postgres-plugin" + }, + "dynamicBindingPathList": [], + "name": "xgen_pairs", + "pageId": "xGen", + "runBehaviour": "AUTOMATIC", + "userSetOnLoad": false + } +} \ No newline at end of file diff --git a/pages/xGen/queries/xgen_pairs/xgen_pairs.txt b/pages/xGen/queries/xgen_pairs/xgen_pairs.txt new file mode 100644 index 0000000..538abf8 --- /dev/null +++ b/pages/xGen/queries/xgen_pairs/xgen_pairs.txt @@ -0,0 +1,8 @@ +SELECT TITEM1.item_number AS item1, + TITEM1.item_descrip1 AS item1_descrip, + TITEM2.item_number AS item2, + TITEM2.item_descrip1 AS item2_descrip, + TITEM2.item_descrip2 AS item2_spec +FROM mpe.hwcompatibilitypairs +JOIN item AS TITEM1 ON hwcompatibilitypairs_item1_id = TITEM1.item_id +JOIN item AS TITEM2 ON hwcompatibilitypairs_item2_id = TITEM2.item_id diff --git a/pages/xGen/queries/xgen_snapshot_prodmap/metadata.json b/pages/xGen/queries/xgen_snapshot_prodmap/metadata.json new file mode 100644 index 0000000..6a8b208 --- /dev/null +++ b/pages/xGen/queries/xgen_snapshot_prodmap/metadata.json @@ -0,0 +1,31 @@ +{ + "gitSyncId": "e3b197954c324fb2bd7ad792_c7d7eb03-db00-4854-911a-f53f5fa7f462", + "id": "xGen_xgen_snapshot_prodmap", + "pluginId": "postgres-plugin", + "pluginType": "DB", + "unpublishedAction": { + "actionConfiguration": { + "body": "SELECT\n\tmpe.snapshotprodmapsummary.product_type as \"Product Type\",\n\tmpe.snapshotprodmapsummary.snapshot_number as \"Snapshot Number\",\n\tmpe.snapshotprodmapsummary.versions as \"Versions\",\n\tmpe.snapshotprodmapsummary.effective_date as \"Effective Date\",\n\tmpe.snapshotprodmapsummary.expire_date as \"Expire Date\"\nFROM mpe.snapshotprodmapsummary\nWHERE snapshotprodmapsummary.expire_date > now() OR snapshotprodmapsummary.expire_date IS NULL\n", + "encodeParamsToggle": true, + "paginationType": "NONE", + "pluginSpecifiedTemplates": [ + { + "value": true + } + ], + "timeoutInMillisecond": 10000 + }, + "confirmBeforeExecute": false, + "datasource": { + "id": "xTuple_GoLive", + "isAutoGenerated": false, + "name": "xTuple_GoLive", + "pluginId": "postgres-plugin" + }, + "dynamicBindingPathList": [], + "name": "xgen_snapshot_prodmap", + "pageId": "xGen", + "runBehaviour": "AUTOMATIC", + "userSetOnLoad": false + } +} \ No newline at end of file diff --git a/pages/xGen/queries/xgen_snapshot_prodmap/xgen_snapshot_prodmap.txt b/pages/xGen/queries/xgen_snapshot_prodmap/xgen_snapshot_prodmap.txt new file mode 100644 index 0000000..64d7f30 --- /dev/null +++ b/pages/xGen/queries/xgen_snapshot_prodmap/xgen_snapshot_prodmap.txt @@ -0,0 +1,8 @@ +SELECT + mpe.snapshotprodmapsummary.product_type as "Product Type", + mpe.snapshotprodmapsummary.snapshot_number as "Snapshot Number", + mpe.snapshotprodmapsummary.versions as "Versions", + mpe.snapshotprodmapsummary.effective_date as "Effective Date", + mpe.snapshotprodmapsummary.expire_date as "Expire Date" +FROM mpe.snapshotprodmapsummary +WHERE snapshotprodmapsummary.expire_date > now() OR snapshotprodmapsummary.expire_date IS NULL diff --git a/pages/xGen/queries/xgen_test_cal_measurements/metadata.json b/pages/xGen/queries/xgen_test_cal_measurements/metadata.json new file mode 100644 index 0000000..7c1e7b6 --- /dev/null +++ b/pages/xGen/queries/xgen_test_cal_measurements/metadata.json @@ -0,0 +1,31 @@ +{ + "gitSyncId": "e3b197954c324fb2bd7ad792_7684a9ec-ae85-4c35-8617-1103064d17ac", + "id": "xGen_xgen_test_cal_measurements", + "pluginId": "postgres-plugin", + "pluginType": "DB", + "unpublishedAction": { + "actionConfiguration": { + "body": "SELECT\n wo_number || '-' || wo_subnumber AS wo,\n measass_product_id AS product_id,\n meas_name AS measurement,\n\tmeasass_value AS measurement_value,\n\tmeas_unit AS measurement_unit,\n\tMAX(CASE WHEN char_name = 'Series' THEN charass_value ELSE NULL END) AS product_type,\n\tMAX(CASE WHEN char_name = 'Input' THEN charass_value ELSE NULL END) AS input_voltage,\n\tMAX(CASE WHEN char_name = 'Output V' THEN charass_value ELSE NULL END) AS output_voltage,\n\tMAX(CASE WHEN char_name = 'Power' THEN charass_value ELSE NULL END) AS power,\n\tMAX(CASE WHEN char_name = 'Model' THEN charass_value ELSE NULL END) AS model,\n\tMAX(CASE WHEN char_name = 'Phase' THEN charass_value ELSE NULL END) AS phase,\n\tMAX(CASE WHEN char_name = 'Com' THEN charass_value ELSE NULL END) AS com,\n\tmeasass_timestamp AS timestamp\nFROM mpe.measass\nJOIN mpe.meas ON meas_id = measass_meas_id\nJOIN wo ON wo_id = measass_wo_id\nLEFT JOIN charass ON wo_id = charass_target_id\nJOIN char ON charass_char_id = char_id\nWHERE char_name in ('Series', 'Input', 'Output V', 'Power', 'Model', 'Phase', 'Com')\nGROUP BY wo, measurement, measurement_value, measurement_unit, product_id, timestamp\nORDER BY wo, measurement\n", + "encodeParamsToggle": true, + "paginationType": "NONE", + "pluginSpecifiedTemplates": [ + { + "value": true + } + ], + "timeoutInMillisecond": 10000 + }, + "confirmBeforeExecute": false, + "datasource": { + "id": "xTuple_GoLive", + "isAutoGenerated": false, + "name": "xTuple_GoLive", + "pluginId": "postgres-plugin" + }, + "dynamicBindingPathList": [], + "name": "xgen_test_cal_measurements", + "pageId": "xGen", + "runBehaviour": "AUTOMATIC", + "userSetOnLoad": false + } +} \ No newline at end of file diff --git a/pages/xGen/queries/xgen_test_cal_measurements/xgen_test_cal_measurements.txt b/pages/xGen/queries/xgen_test_cal_measurements/xgen_test_cal_measurements.txt new file mode 100644 index 0000000..9d540ec --- /dev/null +++ b/pages/xGen/queries/xgen_test_cal_measurements/xgen_test_cal_measurements.txt @@ -0,0 +1,22 @@ +SELECT + wo_number || '-' || wo_subnumber AS wo, + measass_product_id AS product_id, + meas_name AS measurement, + measass_value AS measurement_value, + meas_unit AS measurement_unit, + MAX(CASE WHEN char_name = 'Series' THEN charass_value ELSE NULL END) AS product_type, + MAX(CASE WHEN char_name = 'Input' THEN charass_value ELSE NULL END) AS input_voltage, + MAX(CASE WHEN char_name = 'Output V' THEN charass_value ELSE NULL END) AS output_voltage, + MAX(CASE WHEN char_name = 'Power' THEN charass_value ELSE NULL END) AS power, + MAX(CASE WHEN char_name = 'Model' THEN charass_value ELSE NULL END) AS model, + MAX(CASE WHEN char_name = 'Phase' THEN charass_value ELSE NULL END) AS phase, + MAX(CASE WHEN char_name = 'Com' THEN charass_value ELSE NULL END) AS com, + measass_timestamp AS timestamp +FROM mpe.measass +JOIN mpe.meas ON meas_id = measass_meas_id +JOIN wo ON wo_id = measass_wo_id +LEFT JOIN charass ON wo_id = charass_target_id +JOIN char ON charass_char_id = char_id +WHERE char_name in ('Series', 'Input', 'Output V', 'Power', 'Model', 'Phase', 'Com') +GROUP BY wo, measurement, measurement_value, measurement_unit, product_id, timestamp +ORDER BY wo, measurement diff --git a/pages/xGen/widgets/Container1/Button1.json b/pages/xGen/widgets/Container1/Button1.json new file mode 100644 index 0000000..8a0aa00 --- /dev/null +++ b/pages/xGen/widgets/Container1/Button1.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 8, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "xg1btnkcp01", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 8, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 4, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Sales - Capacity Planning', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 8, + "originalTopRow": 4, + "parentColumnSpace": 3.841796875, + "parentId": "xg1canvas01", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Capacity Planning", + "topRow": 4, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "xg1btn0cp1", + "widgetName": "Button1" +} \ No newline at end of file diff --git a/pages/xGen/widgets/Container1/Button1Copy.json b/pages/xGen/widgets/Container1/Button1Copy.json new file mode 100644 index 0000000..973bfb2 --- /dev/null +++ b/pages/xGen/widgets/Container1/Button1Copy.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 12, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "xg1btnkus01", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 12, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 8, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Sales - Units Shipped', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 12, + "originalTopRow": 8, + "parentColumnSpace": 3.841796875, + "parentId": "xg1canvas01", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Units Shipped", + "topRow": 8, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "xg1btn0us1", + "widgetName": "Button1Copy" +} \ No newline at end of file diff --git a/pages/xGen/widgets/Container1/Button1Copy2.json b/pages/xGen/widgets/Container1/Button1Copy2.json new file mode 100644 index 0000000..b67ffb4 --- /dev/null +++ b/pages/xGen/widgets/Container1/Button1Copy2.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 16, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "xg1btnkuo01", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 16, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 12, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Sales - Units Ordered', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 16, + "originalTopRow": 12, + "parentColumnSpace": 3.841796875, + "parentId": "xg1canvas01", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Units Ordered", + "topRow": 12, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "xg1btn0uo1", + "widgetName": "Button1Copy2" +} \ No newline at end of file diff --git a/pages/xGen/widgets/Container1/Button2All.json b/pages/xGen/widgets/Container1/Button2All.json new file mode 100644 index 0000000..8185c75 --- /dev/null +++ b/pages/xGen/widgets/Container1/Button2All.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 26, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "xg1btnkpp01", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 26, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 22, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Pending POs', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 26, + "originalTopRow": 22, + "parentColumnSpace": 3.841796875, + "parentId": "xg1canvas01", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Pending POs", + "topRow": 22, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "xg1btn0pp1", + "widgetName": "Button2All" +} \ No newline at end of file diff --git a/pages/xGen/widgets/Container1/Button2Copy.json b/pages/xGen/widgets/Container1/Button2Copy.json new file mode 100644 index 0000000..db6ba68 --- /dev/null +++ b/pages/xGen/widgets/Container1/Button2Copy.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 30, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "xg1btnkpr01", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 30, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 26, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Pending Revisions', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 30, + "originalTopRow": 26, + "parentColumnSpace": 3.841796875, + "parentId": "xg1canvas01", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Pending Revisions", + "topRow": 26, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "xg1btn0pr1", + "widgetName": "Button2Copy" +} \ No newline at end of file diff --git a/pages/xGen/widgets/Container1/Button2Copy2.json b/pages/xGen/widgets/Container1/Button2Copy2.json new file mode 100644 index 0000000..a7a15d0 --- /dev/null +++ b/pages/xGen/widgets/Container1/Button2Copy2.json @@ -0,0 +1,49 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 34, + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.backgroundColor}}", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [ + { + "key": "buttonColor" + } + ], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "xg1btnkxg01", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 34, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 30, + "needsErrorInfo": false, + "onClick": "{{navigateTo('xGen', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 34, + "originalTopRow": 30, + "parentColumnSpace": 3.841796875, + "parentId": "xg1canvas01", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "xGen", + "topRow": 30, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "xg1btn0xg1", + "widgetName": "Button2Copy2" +} \ No newline at end of file diff --git a/pages/xGen/widgets/Container1/Button3.json b/pages/xGen/widgets/Container1/Button3.json new file mode 100644 index 0000000..695f53e --- /dev/null +++ b/pages/xGen/widgets/Container1/Button3.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 44, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "xg1btn3k01", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 44, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 40, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Operations - Job Drawing Status', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 44, + "originalTopRow": 40, + "parentColumnSpace": 3.841796875, + "parentId": "xg1canvas01", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Job Drawing Status", + "topRow": 40, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "xg1btn3jds", + "widgetName": "Button3" +} \ No newline at end of file diff --git a/pages/xGen/widgets/Container1/Button3Copy.json b/pages/xGen/widgets/Container1/Button3Copy.json new file mode 100644 index 0000000..d839481 --- /dev/null +++ b/pages/xGen/widgets/Container1/Button3Copy.json @@ -0,0 +1,45 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 48, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "xg1btn3k02", + "leftColumn": 0, + "minWidth": 120, + "mobileBottomRow": 48, + "mobileLeftColumn": 0, + "mobileRightColumn": 16, + "mobileTopRow": 44, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Operations - Engineering Holds', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 48, + "originalTopRow": 44, + "parentColumnSpace": 3.841796875, + "parentId": "xg1canvas01", + "parentRowSpace": 10, + "placement": "START", + "recaptchaType": "V3", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Engineering Holds", + "topRow": 44, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "xg1btn3enh", + "widgetName": "Button3Copy" +} \ No newline at end of file diff --git a/pages/xGen/widgets/Container1/Button3Copy2.json b/pages/xGen/widgets/Container1/Button3Copy2.json new file mode 100644 index 0000000..60e15bb --- /dev/null +++ b/pages/xGen/widgets/Container1/Button3Copy2.json @@ -0,0 +1,47 @@ +{ + "animateLoading": true, + "borderRadius": "0.375rem", + "bottomRow": 52, + "boxShadow": "none", + "buttonColor": "#ffffff", + "buttonVariant": "PRIMARY", + "disabledWhenInvalid": false, + "dynamicBindingPathList": [], + "dynamicHeight": "FIXED", + "dynamicTriggerPathList": [ + { + "key": "onClick" + } + ], + "isDefaultClickDisabled": true, + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "xg1btn3uik", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minWidth": 120, + "mobileBottomRow": 52, + "mobileLeftColumn": 0, + "mobileRightColumn": 64, + "mobileTopRow": 48, + "needsErrorInfo": false, + "onClick": "{{navigateTo('Operations - Unused Items', {}, 'SAME_WINDOW');}}", + "originalBottomRow": 52, + "originalTopRow": 48, + "parentColumnSpace": 3.841796875, + "parentId": "xg1canvas01", + "parentRowSpace": 10, + "placement": "START", + "renderMode": "CANVAS", + "resetFormOnClick": false, + "responsiveBehavior": "hug", + "rightColumn": 64, + "text": "Unused Items", + "topRow": 48, + "type": "BUTTON_WIDGET", + "version": 1, + "widgetId": "xg1btn3ui", + "widgetName": "Button3Copy2" +} \ No newline at end of file diff --git a/pages/xGen/widgets/Container1/Container1.json b/pages/xGen/widgets/Container1/Container1.json new file mode 100644 index 0000000..4f0500c --- /dev/null +++ b/pages/xGen/widgets/Container1/Container1.json @@ -0,0 +1,87 @@ +{ + "animateLoading": true, + "backgroundColor": "#FFFFFF", + "borderColor": "#E0DEDE", + "borderRadius": "0px", + "borderWidth": "1", + "bottomRow": 124, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "children": [ + { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 1240, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "canExtend": false, + "containerStyle": "none", + "detachFromLayout": true, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "flexLayers": [], + "isLoading": false, + "isVisible": true, + "key": "xorz42kdhi", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minHeight": 100, + "minWidth": 450, + "mobileBottomRow": 100, + "mobileLeftColumn": 0, + "mobileRightColumn": 132.9375, + "mobileTopRow": 0, + "needsErrorInfo": false, + "parentColumnSpace": 1, + "parentId": "xg1c0ntain", + "parentRowSpace": 1, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 132.9375, + "topRow": 0, + "type": "CANVAS_WIDGET", + "version": 1, + "widgetId": "xg1canvas01", + "widgetName": "Canvas1" + } + ], + "containerStyle": "card", + "dynamicBindingPathList": [ + { + "key": "boxShadow" + } + ], + "dynamicHeight": "FIXED", + "dynamicTriggerPathList": [], + "flexVerticalAlignment": "stretch", + "isCanvas": true, + "isLoading": false, + "isVisible": true, + "key": "36jaq5m9iy", + "leftColumn": 0, + "maxDynamicHeight": 12, + "minDynamicHeight": 10, + "minWidth": 450, + "mobileBottomRow": 10, + "mobileLeftColumn": 0, + "mobileRightColumn": 3, + "mobileTopRow": 0, + "needsErrorInfo": false, + "parentColumnSpace": 44.3125, + "parentId": "0", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 9, + "shouldScrollContents": true, + "topRow": 0, + "type": "CONTAINER_WIDGET", + "version": 1, + "widgetId": "xg1c0ntain", + "widgetName": "Container1" +} \ No newline at end of file diff --git a/pages/xGen/widgets/Container1/Text1.json b/pages/xGen/widgets/Container1/Text1.json new file mode 100644 index 0000000..baf4b81 --- /dev/null +++ b/pages/xGen/widgets/Container1/Text1.json @@ -0,0 +1,52 @@ +{ + "animateLoading": true, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 4, + "dynamicBindingPathList": [ + { + "key": "truncateButtonColor" + }, + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", + "fontSize": "1rem", + "fontStyle": "BOLD", + "isLoading": false, + "isVisible": true, + "key": "xg1txksal01", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minWidth": 450, + "mobileBottomRow": 6, + "mobileLeftColumn": 10, + "mobileRightColumn": 26, + "mobileTopRow": 2, + "needsErrorInfo": false, + "originalBottomRow": 4, + "originalTopRow": 0, + "overflow": "NONE", + "parentColumnSpace": 3.841796875, + "parentId": "xg1canvas01", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 64, + "shouldTruncate": false, + "text": "Sales", + "textAlign": "LEFT", + "textColor": "#231F20", + "topRow": 0, + "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "type": "TEXT_WIDGET", + "version": 1, + "widgetId": "xg1txtsal1", + "widgetName": "Text1" +} \ No newline at end of file diff --git a/pages/xGen/widgets/Container1/Text2.json b/pages/xGen/widgets/Container1/Text2.json new file mode 100644 index 0000000..cb1e1c0 --- /dev/null +++ b/pages/xGen/widgets/Container1/Text2.json @@ -0,0 +1,52 @@ +{ + "animateLoading": true, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 22, + "dynamicBindingPathList": [ + { + "key": "truncateButtonColor" + }, + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", + "fontSize": "1rem", + "fontStyle": "BOLD", + "isLoading": false, + "isVisible": true, + "key": "xg1txkeng01", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minWidth": 450, + "mobileBottomRow": 22, + "mobileLeftColumn": 10, + "mobileRightColumn": 26, + "mobileTopRow": 18, + "needsErrorInfo": false, + "originalBottomRow": 22, + "originalTopRow": 18, + "overflow": "NONE", + "parentColumnSpace": 3.841796875, + "parentId": "xg1canvas01", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 64, + "shouldTruncate": false, + "text": "Engineering", + "textAlign": "LEFT", + "textColor": "#231F20", + "topRow": 18, + "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "type": "TEXT_WIDGET", + "version": 1, + "widgetId": "xg1txteng1", + "widgetName": "Text2" +} \ No newline at end of file diff --git a/pages/xGen/widgets/Container1/Text3.json b/pages/xGen/widgets/Container1/Text3.json new file mode 100644 index 0000000..bf1c466 --- /dev/null +++ b/pages/xGen/widgets/Container1/Text3.json @@ -0,0 +1,52 @@ +{ + "animateLoading": true, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 40, + "dynamicBindingPathList": [ + { + "key": "truncateButtonColor" + }, + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", + "fontSize": "1rem", + "fontStyle": "BOLD", + "isLoading": false, + "isVisible": true, + "key": "xg1txt3k01", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minWidth": 450, + "mobileBottomRow": 40, + "mobileLeftColumn": 10, + "mobileRightColumn": 26, + "mobileTopRow": 36, + "needsErrorInfo": false, + "originalBottomRow": 40, + "originalTopRow": 36, + "overflow": "NONE", + "parentColumnSpace": 3.841796875, + "parentId": "xg1canvas01", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 64, + "shouldTruncate": false, + "text": "Operations", + "textAlign": "LEFT", + "textColor": "#231F20", + "topRow": 36, + "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "type": "TEXT_WIDGET", + "version": 1, + "widgetId": "xg1txt3ops", + "widgetName": "Text3" +} \ No newline at end of file diff --git a/pages/xGen/widgets/Heading.json b/pages/xGen/widgets/Heading.json new file mode 100644 index 0000000..5223adf --- /dev/null +++ b/pages/xGen/widgets/Heading.json @@ -0,0 +1,52 @@ +{ + "animateLoading": true, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 5, + "dynamicBindingPathList": [ + { + "key": "truncateButtonColor" + }, + { + "key": "fontFamily" + }, + { + "key": "borderRadius" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", + "fontSize": "1.875rem", + "fontStyle": "BOLD", + "isLoading": false, + "isVisible": true, + "key": "xg1hdgkey01", + "leftColumn": 9, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minWidth": 450, + "mobileBottomRow": 5, + "mobileLeftColumn": 1, + "mobileRightColumn": 17, + "mobileTopRow": 1, + "needsErrorInfo": false, + "originalBottomRow": 5, + "originalTopRow": 0, + "overflow": "NONE", + "parentColumnSpace": 25.109375, + "parentId": "0", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 64, + "shouldTruncate": false, + "text": "xGen", + "textAlign": "LEFT", + "textColor": "#231F20", + "topRow": 0, + "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "type": "TEXT_WIDGET", + "version": 1, + "widgetId": "xg1heading1", + "widgetName": "Heading" +} \ No newline at end of file diff --git a/pages/xGen/widgets/Tabs1/TableBuildId.json b/pages/xGen/widgets/Tabs1/TableBuildId.json new file mode 100644 index 0000000..fe7d790 --- /dev/null +++ b/pages/xGen/widgets/Tabs1/TableBuildId.json @@ -0,0 +1,329 @@ +{ + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "animateLoading": true, + "borderColor": "#E0DEDE", + "borderRadius": "0.375rem", + "borderWidth": "1", + "bottomRow": 113, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "canFreezeColumn": true, + "childStylesheet": { + "button": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "editActions": { + "discardBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "discardButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "saveBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "saveButtonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "iconButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "menuButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "menuColor": "{{appsmith.theme.colors.primaryColor}}" + } + }, + "columnOrder": [ + "buildinfo_id", + "buildinfo_project", + "buildinfo_src_revision", + "buildinfo_build_revision", + "buildinfo_is_build", + "buildinfo_sub_id" + ], + "columnUpdatedAt": 1772707413932, + "columnWidthMap": {}, + "compactMode": "SHORT", + "defaultPageSize": 0, + "defaultSelectedRowIndex": 0, + "defaultSelectedRowIndices": [ + 0 + ], + "delimiter": ",", + "dynamicBindingPathList": [ + { + "key": "accentColor" + }, + { + "key": "boxShadow" + }, + { + "key": "tableData" + }, + { + "key": "primaryColumns.buildinfo_id.computedValue" + }, + { + "key": "primaryColumns.buildinfo_project.computedValue" + }, + { + "key": "primaryColumns.buildinfo_src_revision.computedValue" + }, + { + "key": "primaryColumns.buildinfo_build_revision.computedValue" + }, + { + "key": "primaryColumns.buildinfo_is_build.computedValue" + }, + { + "key": "primaryColumns.buildinfo_sub_id.computedValue" + } + ], + "dynamicPropertyPathList": [ + { + "key": "textSize" + } + ], + "dynamicTriggerPathList": [], + "enableClientSideSearch": true, + "flexVerticalAlignment": "start", + "horizontalAlignment": "LEFT", + "inlineEditingSaveOption": "ROW_LEVEL", + "isLoading": false, + "isSortable": true, + "isVisible": true, + "isVisibleDownload": true, + "isVisibleFilters": false, + "isVisiblePagination": true, + "isVisibleSearch": true, + "key": "xg1tblbldkey", + "label": "Data", + "leftColumn": 0, + "minWidth": 450, + "mobileBottomRow": 31, + "mobileLeftColumn": 1, + "mobileRightColumn": 35, + "mobileTopRow": 5, + "needsErrorInfo": false, + "originalBottomRow": 58, + "originalTopRow": 0, + "parentColumnSpace": 11.265625, + "parentId": "xg1cnvs01", + "parentRowSpace": 10, + "primaryColumns": { + "buildinfo_build_revision": { + "alias": "buildinfo_build_revision", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = TableBuildId.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"buildinfo_build_revision\"])) : buildinfo_build_revision })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "buildinfo_build_revision", + "index": 3, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "buildinfo_build_revision", + "notation": "standard", + "originalId": "buildinfo_build_revision", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "buildinfo_id": { + "alias": "buildinfo_id", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "number", + "computedValue": "{{(() => { const tableData = TableBuildId.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"buildinfo_id\"])) : buildinfo_id })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "buildinfo_id", + "index": 0, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "buildinfo_id", + "notation": "standard", + "originalId": "buildinfo_id", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "buildinfo_is_build": { + "alias": "buildinfo_is_build", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "checkbox", + "computedValue": "{{(() => { const tableData = TableBuildId.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"buildinfo_is_build\"])) : buildinfo_is_build })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "buildinfo_is_build", + "index": 4, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "buildinfo_is_build", + "notation": "standard", + "originalId": "buildinfo_is_build", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "buildinfo_project": { + "alias": "buildinfo_project", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = TableBuildId.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"buildinfo_project\"])) : buildinfo_project })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "buildinfo_project", + "index": 1, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "buildinfo_project", + "notation": "standard", + "originalId": "buildinfo_project", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "buildinfo_src_revision": { + "alias": "buildinfo_src_revision", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = TableBuildId.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"buildinfo_src_revision\"])) : buildinfo_src_revision })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "buildinfo_src_revision", + "index": 2, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "buildinfo_src_revision", + "notation": "standard", + "originalId": "buildinfo_src_revision", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "buildinfo_sub_id": { + "alias": "buildinfo_sub_id", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "number", + "computedValue": "{{(() => { const tableData = TableBuildId.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"buildinfo_sub_id\"])) : buildinfo_sub_id })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "buildinfo_sub_id", + "index": 5, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "buildinfo_sub_id", + "notation": "standard", + "originalId": "buildinfo_sub_id", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + } + }, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 62, + "searchKey": "", + "tableData": "{{xgen_buildinfo.data}}", + "textSize": "0.775rem", + "topRow": 0, + "totalRecordsCount": 0, + "type": "TABLE_WIDGET_V2", + "version": 2, + "verticalAlignment": "CENTER", + "widgetId": "xg1tblbld1", + "widgetName": "TableBuildId" +} \ No newline at end of file diff --git a/pages/xGen/widgets/Tabs1/TableCompat.json b/pages/xGen/widgets/Tabs1/TableCompat.json new file mode 100644 index 0000000..9eba000 --- /dev/null +++ b/pages/xGen/widgets/Tabs1/TableCompat.json @@ -0,0 +1,98 @@ +{ + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "animateLoading": true, + "borderColor": "#E0DEDE", + "borderRadius": "0.375rem", + "borderWidth": "1", + "bottomRow": 58, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "canFreezeColumn": true, + "childStylesheet": { + "button": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "editActions": { + "discardBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "discardButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "saveBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "saveButtonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "iconButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "menuButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "menuColor": "{{appsmith.theme.colors.primaryColor}}" + } + }, + "columnOrder": [], + "columnWidthMap": {}, + "compactMode": "SHORT", + "defaultPageSize": 0, + "defaultSelectedRowIndex": 0, + "defaultSelectedRowIndices": [ + 0 + ], + "delimiter": ",", + "dynamicBindingPathList": [ + { + "key": "accentColor" + }, + { + "key": "boxShadow" + }, + { + "key": "tableData" + } + ], + "dynamicPropertyPathList": [ + { + "key": "textSize" + } + ], + "dynamicTriggerPathList": [], + "enableClientSideSearch": true, + "flexVerticalAlignment": "start", + "horizontalAlignment": "LEFT", + "inlineEditingSaveOption": "ROW_LEVEL", + "isLoading": false, + "isSortable": true, + "isVisible": true, + "isVisibleDownload": true, + "isVisibleFilters": false, + "isVisiblePagination": true, + "isVisibleSearch": true, + "key": "xg1tblcmpkey", + "label": "Data", + "leftColumn": 0, + "minWidth": 450, + "mobileBottomRow": 31, + "mobileLeftColumn": 1, + "mobileRightColumn": 35, + "mobileTopRow": 5, + "needsErrorInfo": false, + "originalBottomRow": 58, + "originalTopRow": 0, + "parentColumnSpace": 11.265625, + "parentId": "xg1cnvs03", + "parentRowSpace": 10, + "primaryColumns": {}, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 62, + "searchKey": "", + "tableData": "{{xgen_compatibility_items.data}}", + "textSize": "0.775rem", + "topRow": 0, + "totalRecordsCount": 0, + "type": "TABLE_WIDGET_V2", + "version": 2, + "verticalAlignment": "CENTER", + "widgetId": "xg1tblcmp1", + "widgetName": "TableCompat" +} \ No newline at end of file diff --git a/pages/xGen/widgets/Tabs1/TableFirmware.json b/pages/xGen/widgets/Tabs1/TableFirmware.json new file mode 100644 index 0000000..7cdfdf2 --- /dev/null +++ b/pages/xGen/widgets/Tabs1/TableFirmware.json @@ -0,0 +1,405 @@ +{ + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "animateLoading": true, + "borderColor": "#E0DEDE", + "borderRadius": "0.375rem", + "borderWidth": "1", + "bottomRow": 58, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "canFreezeColumn": true, + "childStylesheet": { + "button": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "editActions": { + "discardBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "discardButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "saveBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "saveButtonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "iconButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "menuButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "menuColor": "{{appsmith.theme.colors.primaryColor}}" + } + }, + "columnOrder": [ + "id", + "wo", + "firmware_version", + "firmware_build_id", + "multimodule", + "product_type", + "product_config", + "date" + ], + "columnUpdatedAt": 1773657026030, + "columnWidthMap": {}, + "compactMode": "SHORT", + "defaultPageSize": 0, + "defaultSelectedRowIndex": 0, + "defaultSelectedRowIndices": [ + 0 + ], + "delimiter": ",", + "dynamicBindingPathList": [ + { + "key": "accentColor" + }, + { + "key": "boxShadow" + }, + { + "key": "tableData" + }, + { + "key": "primaryColumns.id.computedValue" + }, + { + "key": "primaryColumns.wo.computedValue" + }, + { + "key": "primaryColumns.firmware_version.computedValue" + }, + { + "key": "primaryColumns.firmware_build_id.computedValue" + }, + { + "key": "primaryColumns.multimodule.computedValue" + }, + { + "key": "primaryColumns.product_type.computedValue" + }, + { + "key": "primaryColumns.product_config.computedValue" + }, + { + "key": "primaryColumns.date.computedValue" + } + ], + "dynamicPropertyPathList": [ + { + "key": "textSize" + } + ], + "dynamicTriggerPathList": [], + "enableClientSideSearch": true, + "flexVerticalAlignment": "start", + "horizontalAlignment": "LEFT", + "inlineEditingSaveOption": "ROW_LEVEL", + "isLoading": false, + "isSortable": true, + "isVisible": true, + "isVisibleDownload": true, + "isVisibleFilters": false, + "isVisiblePagination": true, + "isVisibleSearch": true, + "key": "xg1tblfrmkey", + "label": "Data", + "leftColumn": 0, + "minWidth": 450, + "mobileBottomRow": 31, + "mobileLeftColumn": 1, + "mobileRightColumn": 35, + "mobileTopRow": 5, + "needsErrorInfo": false, + "originalBottomRow": 58, + "originalTopRow": 0, + "parentColumnSpace": 11.265625, + "parentId": "xg1cnvs08", + "parentRowSpace": 10, + "primaryColumns": { + "date": { + "alias": "date", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "date", + "computedValue": "{{(() => { const tableData = TableFirmware.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"date\"])) : date })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "date", + "index": 7, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "date", + "notation": "standard", + "originalId": "date", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "firmware_build_id": { + "alias": "firmware_build_id", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "number", + "computedValue": "{{(() => { const tableData = TableFirmware.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"firmware_build_id\"])) : firmware_build_id })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "firmware_build_id", + "index": 3, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "firmware_build_id", + "notation": "standard", + "originalId": "firmware_build_id", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "firmware_version": { + "alias": "firmware_version", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = TableFirmware.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"firmware_version\"])) : firmware_version })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "firmware_version", + "index": 2, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "firmware_version", + "notation": "standard", + "originalId": "firmware_version", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "id": { + "alias": "id", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "number", + "computedValue": "{{(() => { const tableData = TableFirmware.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"id\"])) : id })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "id", + "index": 0, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "id", + "notation": "standard", + "originalId": "id", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "multimodule": { + "alias": "multimodule", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = TableFirmware.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"multimodule\"])) : multimodule })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "multimodule", + "index": 4, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "multimodule", + "notation": "standard", + "originalId": "multimodule", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "product_config": { + "alias": "product_config", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = TableFirmware.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"product_config\"])) : product_config })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "product_config", + "index": 6, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "product_config", + "notation": "standard", + "originalId": "product_config", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "product_type": { + "alias": "product_type", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = TableFirmware.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"product_type\"])) : product_type })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "product_type", + "index": 5, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "product_type", + "notation": "standard", + "originalId": "product_type", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + }, + "wo": { + "alias": "wo", + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "cellBackground": "", + "columnType": "text", + "computedValue": "{{(() => { const tableData = TableFirmware.processedTableData || []; return tableData.length > 0 ? tableData.map((currentRow, currentIndex) => (currentRow[\"wo\"])) : wo })()}}", + "currencyCode": "USD", + "decimals": 0, + "enableFilter": true, + "enableSort": true, + "fontStyle": "", + "horizontalAlignment": "LEFT", + "id": "wo", + "index": 1, + "isCellEditable": false, + "isCellVisible": true, + "isDerived": false, + "isDisabled": false, + "isDiscardVisible": true, + "isEditable": false, + "isSaveVisible": true, + "isVisible": true, + "label": "wo", + "notation": "standard", + "originalId": "wo", + "sticky": "", + "textColor": "", + "textSize": "0.775rem", + "thousandSeparator": true, + "validation": {}, + "verticalAlignment": "CENTER", + "width": 150 + } + }, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 62, + "searchKey": "", + "tableData": "{{xgen_firmware_shipped.data}}", + "textSize": "0.775rem", + "topRow": 0, + "totalRecordsCount": 0, + "type": "TABLE_WIDGET_V2", + "version": 2, + "verticalAlignment": "CENTER", + "widgetId": "xg1tblfrm1", + "widgetName": "TableFirmware" +} \ No newline at end of file diff --git a/pages/xGen/widgets/Tabs1/TableForward.json b/pages/xGen/widgets/Tabs1/TableForward.json new file mode 100644 index 0000000..a0b4985 --- /dev/null +++ b/pages/xGen/widgets/Tabs1/TableForward.json @@ -0,0 +1,98 @@ +{ + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "animateLoading": true, + "borderColor": "#E0DEDE", + "borderRadius": "0.375rem", + "borderWidth": "1", + "bottomRow": 58, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "canFreezeColumn": true, + "childStylesheet": { + "button": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "editActions": { + "discardBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "discardButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "saveBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "saveButtonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "iconButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "menuButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "menuColor": "{{appsmith.theme.colors.primaryColor}}" + } + }, + "columnOrder": [], + "columnWidthMap": {}, + "compactMode": "SHORT", + "defaultPageSize": 0, + "defaultSelectedRowIndex": 0, + "defaultSelectedRowIndices": [ + 0 + ], + "delimiter": ",", + "dynamicBindingPathList": [ + { + "key": "accentColor" + }, + { + "key": "boxShadow" + }, + { + "key": "tableData" + } + ], + "dynamicPropertyPathList": [ + { + "key": "textSize" + } + ], + "dynamicTriggerPathList": [], + "enableClientSideSearch": true, + "flexVerticalAlignment": "start", + "horizontalAlignment": "LEFT", + "inlineEditingSaveOption": "ROW_LEVEL", + "isLoading": false, + "isSortable": true, + "isVisible": true, + "isVisibleDownload": true, + "isVisibleFilters": false, + "isVisiblePagination": true, + "isVisibleSearch": true, + "key": "xg1tblfwdkey", + "label": "Data", + "leftColumn": 0, + "minWidth": 450, + "mobileBottomRow": 31, + "mobileLeftColumn": 1, + "mobileRightColumn": 35, + "mobileTopRow": 5, + "needsErrorInfo": false, + "originalBottomRow": 58, + "originalTopRow": 0, + "parentColumnSpace": 11.265625, + "parentId": "xg1cnvs05", + "parentRowSpace": 10, + "primaryColumns": {}, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 62, + "searchKey": "", + "tableData": "{{xgen_forward_compat_break.data}}", + "textSize": "0.775rem", + "topRow": 0, + "totalRecordsCount": 0, + "type": "TABLE_WIDGET_V2", + "version": 2, + "verticalAlignment": "CENTER", + "widgetId": "xg1tblfwd1", + "widgetName": "TableForward" +} \ No newline at end of file diff --git a/pages/xGen/widgets/Tabs1/TableHwSw.json b/pages/xGen/widgets/Tabs1/TableHwSw.json new file mode 100644 index 0000000..3c74144 --- /dev/null +++ b/pages/xGen/widgets/Tabs1/TableHwSw.json @@ -0,0 +1,98 @@ +{ + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "animateLoading": true, + "borderColor": "#E0DEDE", + "borderRadius": "0.375rem", + "borderWidth": "1", + "bottomRow": 58, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "canFreezeColumn": true, + "childStylesheet": { + "button": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "editActions": { + "discardBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "discardButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "saveBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "saveButtonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "iconButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "menuButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "menuColor": "{{appsmith.theme.colors.primaryColor}}" + } + }, + "columnOrder": [], + "columnWidthMap": {}, + "compactMode": "SHORT", + "defaultPageSize": 0, + "defaultSelectedRowIndex": 0, + "defaultSelectedRowIndices": [ + 0 + ], + "delimiter": ",", + "dynamicBindingPathList": [ + { + "key": "accentColor" + }, + { + "key": "boxShadow" + }, + { + "key": "tableData" + } + ], + "dynamicPropertyPathList": [ + { + "key": "textSize" + } + ], + "dynamicTriggerPathList": [], + "enableClientSideSearch": true, + "flexVerticalAlignment": "start", + "horizontalAlignment": "LEFT", + "inlineEditingSaveOption": "ROW_LEVEL", + "isLoading": false, + "isSortable": true, + "isVisible": true, + "isVisibleDownload": true, + "isVisibleFilters": false, + "isVisiblePagination": true, + "isVisibleSearch": true, + "key": "xg1tblhwskey", + "label": "Data", + "leftColumn": 0, + "minWidth": 450, + "mobileBottomRow": 31, + "mobileLeftColumn": 1, + "mobileRightColumn": 35, + "mobileTopRow": 5, + "needsErrorInfo": false, + "originalBottomRow": 58, + "originalTopRow": 0, + "parentColumnSpace": 11.265625, + "parentId": "xg1cnvs02", + "parentRowSpace": 10, + "primaryColumns": {}, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 62, + "searchKey": "", + "tableData": "{{xgen_hw_compatibility_summary.data}}", + "textSize": "0.775rem", + "topRow": 0, + "totalRecordsCount": 0, + "type": "TABLE_WIDGET_V2", + "version": 2, + "verticalAlignment": "CENTER", + "widgetId": "xg1tblhws1", + "widgetName": "TableHwSw" +} \ No newline at end of file diff --git a/pages/xGen/widgets/Tabs1/TablePairs.json b/pages/xGen/widgets/Tabs1/TablePairs.json new file mode 100644 index 0000000..e84f3c5 --- /dev/null +++ b/pages/xGen/widgets/Tabs1/TablePairs.json @@ -0,0 +1,98 @@ +{ + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "animateLoading": true, + "borderColor": "#E0DEDE", + "borderRadius": "0.375rem", + "borderWidth": "1", + "bottomRow": 58, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "canFreezeColumn": true, + "childStylesheet": { + "button": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "editActions": { + "discardBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "discardButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "saveBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "saveButtonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "iconButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "menuButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "menuColor": "{{appsmith.theme.colors.primaryColor}}" + } + }, + "columnOrder": [], + "columnWidthMap": {}, + "compactMode": "SHORT", + "defaultPageSize": 0, + "defaultSelectedRowIndex": 0, + "defaultSelectedRowIndices": [ + 0 + ], + "delimiter": ",", + "dynamicBindingPathList": [ + { + "key": "accentColor" + }, + { + "key": "boxShadow" + }, + { + "key": "tableData" + } + ], + "dynamicPropertyPathList": [ + { + "key": "textSize" + } + ], + "dynamicTriggerPathList": [], + "enableClientSideSearch": true, + "flexVerticalAlignment": "start", + "horizontalAlignment": "LEFT", + "inlineEditingSaveOption": "ROW_LEVEL", + "isLoading": false, + "isSortable": true, + "isVisible": true, + "isVisibleDownload": true, + "isVisibleFilters": false, + "isVisiblePagination": true, + "isVisibleSearch": true, + "key": "xg1tblprskey", + "label": "Data", + "leftColumn": 0, + "minWidth": 450, + "mobileBottomRow": 31, + "mobileLeftColumn": 1, + "mobileRightColumn": 35, + "mobileTopRow": 5, + "needsErrorInfo": false, + "originalBottomRow": 58, + "originalTopRow": 0, + "parentColumnSpace": 11.265625, + "parentId": "xg1cnvs04", + "parentRowSpace": 10, + "primaryColumns": {}, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 62, + "searchKey": "", + "tableData": "{{xgen_pairs.data}}", + "textSize": "0.775rem", + "topRow": 0, + "totalRecordsCount": 0, + "type": "TABLE_WIDGET_V2", + "version": 2, + "verticalAlignment": "CENTER", + "widgetId": "xg1tblprs1", + "widgetName": "TablePairs" +} \ No newline at end of file diff --git a/pages/xGen/widgets/Tabs1/TableSnapshot.json b/pages/xGen/widgets/Tabs1/TableSnapshot.json new file mode 100644 index 0000000..24e777f --- /dev/null +++ b/pages/xGen/widgets/Tabs1/TableSnapshot.json @@ -0,0 +1,98 @@ +{ + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "animateLoading": true, + "borderColor": "#E0DEDE", + "borderRadius": "0.375rem", + "borderWidth": "1", + "bottomRow": 58, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "canFreezeColumn": true, + "childStylesheet": { + "button": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "editActions": { + "discardBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "discardButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "saveBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "saveButtonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "iconButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "menuButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "menuColor": "{{appsmith.theme.colors.primaryColor}}" + } + }, + "columnOrder": [], + "columnWidthMap": {}, + "compactMode": "SHORT", + "defaultPageSize": 0, + "defaultSelectedRowIndex": 0, + "defaultSelectedRowIndices": [ + 0 + ], + "delimiter": ",", + "dynamicBindingPathList": [ + { + "key": "accentColor" + }, + { + "key": "boxShadow" + }, + { + "key": "tableData" + } + ], + "dynamicPropertyPathList": [ + { + "key": "textSize" + } + ], + "dynamicTriggerPathList": [], + "enableClientSideSearch": true, + "flexVerticalAlignment": "start", + "horizontalAlignment": "LEFT", + "inlineEditingSaveOption": "ROW_LEVEL", + "isLoading": false, + "isSortable": true, + "isVisible": true, + "isVisibleDownload": true, + "isVisibleFilters": false, + "isVisiblePagination": true, + "isVisibleSearch": true, + "key": "xg1tblsnpkey", + "label": "Data", + "leftColumn": 0, + "minWidth": 450, + "mobileBottomRow": 31, + "mobileLeftColumn": 1, + "mobileRightColumn": 35, + "mobileTopRow": 5, + "needsErrorInfo": false, + "originalBottomRow": 58, + "originalTopRow": 0, + "parentColumnSpace": 11.265625, + "parentId": "xg1cnvs06", + "parentRowSpace": 10, + "primaryColumns": {}, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 62, + "searchKey": "", + "tableData": "{{xgen_snapshot_prodmap.data}}", + "textSize": "0.775rem", + "topRow": 0, + "totalRecordsCount": 0, + "type": "TABLE_WIDGET_V2", + "version": 2, + "verticalAlignment": "CENTER", + "widgetId": "xg1tblsnp1", + "widgetName": "TableSnapshot" +} \ No newline at end of file diff --git a/pages/xGen/widgets/Tabs1/TableTestCal.json b/pages/xGen/widgets/Tabs1/TableTestCal.json new file mode 100644 index 0000000..9261438 --- /dev/null +++ b/pages/xGen/widgets/Tabs1/TableTestCal.json @@ -0,0 +1,98 @@ +{ + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "animateLoading": true, + "borderColor": "#E0DEDE", + "borderRadius": "0.375rem", + "borderWidth": "1", + "bottomRow": 58, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "canFreezeColumn": true, + "childStylesheet": { + "button": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "editActions": { + "discardBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "discardButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "saveBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "saveButtonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "iconButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "menuButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "menuColor": "{{appsmith.theme.colors.primaryColor}}" + } + }, + "columnOrder": [], + "columnWidthMap": {}, + "compactMode": "SHORT", + "defaultPageSize": 0, + "defaultSelectedRowIndex": 0, + "defaultSelectedRowIndices": [ + 0 + ], + "delimiter": ",", + "dynamicBindingPathList": [ + { + "key": "accentColor" + }, + { + "key": "boxShadow" + }, + { + "key": "tableData" + } + ], + "dynamicPropertyPathList": [ + { + "key": "textSize" + } + ], + "dynamicTriggerPathList": [], + "enableClientSideSearch": true, + "flexVerticalAlignment": "start", + "horizontalAlignment": "LEFT", + "inlineEditingSaveOption": "ROW_LEVEL", + "isLoading": false, + "isSortable": true, + "isVisible": true, + "isVisibleDownload": true, + "isVisibleFilters": false, + "isVisiblePagination": true, + "isVisibleSearch": true, + "key": "xg1tbltstkey", + "label": "Data", + "leftColumn": 0, + "minWidth": 450, + "mobileBottomRow": 31, + "mobileLeftColumn": 1, + "mobileRightColumn": 35, + "mobileTopRow": 5, + "needsErrorInfo": false, + "originalBottomRow": 58, + "originalTopRow": 0, + "parentColumnSpace": 11.265625, + "parentId": "xg1cnvs07", + "parentRowSpace": 10, + "primaryColumns": {}, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 62, + "searchKey": "", + "tableData": "{{xgen_test_cal_measurements.data}}", + "textSize": "0.775rem", + "topRow": 0, + "totalRecordsCount": 0, + "type": "TABLE_WIDGET_V2", + "version": 2, + "verticalAlignment": "CENTER", + "widgetId": "xg1tbltst1", + "widgetName": "TableTestCal" +} \ No newline at end of file diff --git a/pages/xGen/widgets/Tabs1/Tabs1.json b/pages/xGen/widgets/Tabs1/Tabs1.json new file mode 100644 index 0000000..fc6c62d --- /dev/null +++ b/pages/xGen/widgets/Tabs1/Tabs1.json @@ -0,0 +1,486 @@ +{ + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "animateLoading": true, + "backgroundColor": "#FFFFFF", + "borderColor": "#E0DEDE", + "borderRadius": "0.375rem", + "borderWidth": 1, + "bottomRow": 124, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "children": [ + { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 1150, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "canExtend": true, + "detachFromLayout": true, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "flexLayers": [], + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "xg1cnvkey01", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minHeight": 150, + "minWidth": 450, + "mobileBottomRow": 150, + "mobileLeftColumn": 0, + "mobileRightColumn": 602.625, + "mobileTopRow": 0, + "needsErrorInfo": false, + "parentColumnSpace": 1, + "parentId": "xg1tabs001", + "parentRowSpace": 1, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 602.625, + "shouldScrollContents": false, + "tabId": "tab1", + "tabName": "Build ID", + "topRow": 0, + "type": "CANVAS_WIDGET", + "version": 1, + "widgetId": "xg1cnvs01", + "widgetName": "Canvas1" + }, + { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 1150, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "canExtend": true, + "detachFromLayout": true, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "flexLayers": [], + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "xg1cnvkey02", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minHeight": 150, + "minWidth": 450, + "mobileBottomRow": 150, + "mobileLeftColumn": 0, + "mobileRightColumn": 602.625, + "mobileTopRow": 0, + "needsErrorInfo": false, + "parentColumnSpace": 1, + "parentId": "xg1tabs001", + "parentRowSpace": 1, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 602.625, + "shouldScrollContents": false, + "tabId": "tab2", + "tabName": "Hardware-Software", + "topRow": 0, + "type": "CANVAS_WIDGET", + "version": 1, + "widgetId": "xg1cnvs02", + "widgetName": "Canvas2" + }, + { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 1150, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "canExtend": true, + "detachFromLayout": true, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "flexLayers": [], + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "xg1cnvkey03", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minHeight": 150, + "minWidth": 450, + "mobileBottomRow": 150, + "mobileLeftColumn": 0, + "mobileRightColumn": 602.625, + "mobileTopRow": 0, + "needsErrorInfo": false, + "parentColumnSpace": 1, + "parentId": "xg1tabs001", + "parentRowSpace": 1, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 602.625, + "shouldScrollContents": false, + "tabId": "tab3", + "tabName": "Compatibility Items", + "topRow": 0, + "type": "CANVAS_WIDGET", + "version": 1, + "widgetId": "xg1cnvs03", + "widgetName": "Canvas3" + }, + { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 1150, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "canExtend": true, + "detachFromLayout": true, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "flexLayers": [], + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "xg1cnvkey04", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minHeight": 150, + "minWidth": 450, + "mobileBottomRow": 150, + "mobileLeftColumn": 0, + "mobileRightColumn": 602.625, + "mobileTopRow": 0, + "needsErrorInfo": false, + "parentColumnSpace": 1, + "parentId": "xg1tabs001", + "parentRowSpace": 1, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 602.625, + "shouldScrollContents": false, + "tabId": "tab4", + "tabName": "Pairs", + "topRow": 0, + "type": "CANVAS_WIDGET", + "version": 1, + "widgetId": "xg1cnvs04", + "widgetName": "Canvas4" + }, + { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 1150, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "canExtend": true, + "detachFromLayout": true, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "flexLayers": [], + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "xg1cnvkey05", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minHeight": 150, + "minWidth": 450, + "mobileBottomRow": 150, + "mobileLeftColumn": 0, + "mobileRightColumn": 602.625, + "mobileTopRow": 0, + "needsErrorInfo": false, + "parentColumnSpace": 1, + "parentId": "xg1tabs001", + "parentRowSpace": 1, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 602.625, + "shouldScrollContents": false, + "tabId": "tab5", + "tabName": "Forward", + "topRow": 0, + "type": "CANVAS_WIDGET", + "version": 1, + "widgetId": "xg1cnvs05", + "widgetName": "Canvas5" + }, + { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 1150, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "canExtend": true, + "detachFromLayout": true, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "flexLayers": [], + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "xg1cnvkey06", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minHeight": 150, + "minWidth": 450, + "mobileBottomRow": 150, + "mobileLeftColumn": 0, + "mobileRightColumn": 602.625, + "mobileTopRow": 0, + "needsErrorInfo": false, + "parentColumnSpace": 1, + "parentId": "xg1tabs001", + "parentRowSpace": 1, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 602.625, + "shouldScrollContents": false, + "tabId": "tab6", + "tabName": "Snapshot Prod Map", + "topRow": 0, + "type": "CANVAS_WIDGET", + "version": 1, + "widgetId": "xg1cnvs06", + "widgetName": "Canvas6" + }, + { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 1150, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "canExtend": true, + "detachFromLayout": true, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "flexLayers": [], + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "xg1cnvkey07", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minHeight": 150, + "minWidth": 450, + "mobileBottomRow": 150, + "mobileLeftColumn": 0, + "mobileRightColumn": 602.625, + "mobileTopRow": 0, + "needsErrorInfo": false, + "parentColumnSpace": 1, + "parentId": "xg1tabs001", + "parentRowSpace": 1, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 602.625, + "shouldScrollContents": false, + "tabId": "tab7", + "tabName": "Test & Cal Measurements", + "topRow": 0, + "type": "CANVAS_WIDGET", + "version": 1, + "widgetId": "xg1cnvs07", + "widgetName": "Canvas7" + }, + { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "bottomRow": 1150, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "canExtend": true, + "detachFromLayout": true, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "flexLayers": [], + "isDisabled": false, + "isLoading": false, + "isVisible": true, + "key": "xg1cnvkey08", + "leftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4, + "minHeight": 150, + "minWidth": 450, + "mobileBottomRow": 150, + "mobileLeftColumn": 0, + "mobileRightColumn": 602.625, + "mobileTopRow": 0, + "needsErrorInfo": false, + "parentColumnSpace": 1, + "parentId": "xg1tabs001", + "parentRowSpace": 1, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 602.625, + "shouldScrollContents": false, + "tabId": "tab8", + "tabName": "Firmware version shipped", + "topRow": 0, + "type": "CANVAS_WIDGET", + "version": 1, + "widgetId": "xg1cnvs08", + "widgetName": "Canvas8" + } + ], + "defaultTab": "Build ID", + "dynamicBindingPathList": [ + { + "key": "accentColor" + }, + { + "key": "boxShadow" + } + ], + "dynamicHeight": "AUTO_HEIGHT", + "dynamicTriggerPathList": [], + "flexVerticalAlignment": "stretch", + "isCanvas": true, + "isLoading": false, + "isVisible": true, + "key": "xg1tabskey1", + "leftColumn": 9, + "maxDynamicHeight": 9000, + "minDynamicHeight": 15, + "minWidth": 450, + "mobileBottomRow": 76, + "mobileLeftColumn": 2, + "mobileRightColumn": 26, + "mobileTopRow": 61, + "needsErrorInfo": false, + "originalBottomRow": 123, + "originalTopRow": 5, + "parentColumnSpace": 25.109375, + "parentId": "0", + "parentRowSpace": 10, + "renderMode": "CANVAS", + "responsiveBehavior": "fill", + "rightColumn": 64, + "shouldScrollContents": true, + "shouldShowTabs": true, + "tabsObj": { + "tab1": { + "id": "tab1", + "index": 0, + "isVisible": true, + "label": "Build ID", + "positioning": "vertical", + "widgetId": "xg1cnvs01" + }, + "tab2": { + "id": "tab2", + "index": 1, + "isVisible": true, + "label": "Hardware-Software", + "positioning": "vertical", + "widgetId": "xg1cnvs02" + }, + "tab3": { + "id": "tab3", + "index": 2, + "isVisible": true, + "label": "Compatibility Items", + "positioning": "vertical", + "widgetId": "xg1cnvs03" + }, + "tab4": { + "id": "tab4", + "index": 3, + "isVisible": true, + "label": "Pairs", + "positioning": "vertical", + "widgetId": "xg1cnvs04" + }, + "tab5": { + "id": "tab5", + "index": 4, + "isVisible": true, + "label": "Forward", + "positioning": "vertical", + "widgetId": "xg1cnvs05" + }, + "tab6": { + "id": "tab6", + "index": 5, + "isVisible": true, + "label": "Snapshot Prod Map", + "positioning": "vertical", + "widgetId": "xg1cnvs06" + }, + "tab7": { + "id": "tab7", + "index": 6, + "isVisible": true, + "label": "Test & Cal Measurements", + "positioning": "vertical", + "widgetId": "xg1cnvs07" + }, + "tab8": { + "id": "tab8", + "index": 7, + "isVisible": true, + "label": "Firmware version shipped", + "positioning": "vertical", + "widgetId": "xg1cnvs08" + } + }, + "topRow": 5, + "type": "TABS_WIDGET", + "version": 3, + "widgetId": "xg1tabs001", + "widgetName": "Tabs1" +} \ No newline at end of file diff --git a/pages/xGen/xGen.json b/pages/xGen/xGen.json new file mode 100644 index 0000000..316975c --- /dev/null +++ b/pages/xGen/xGen.json @@ -0,0 +1,33 @@ +{ + "gitSyncId": "e3b197954c324fb2bd7ad792_4e06d54e-fbca-48f2-a6fc-9576351c9a10", + "unpublishedPage": { + "isHidden": false, + "layouts": [ + { + "dsl": { + "backgroundColor": "none", + "bottomRow": 1240, + "canExtend": true, + "containerStyle": "none", + "detachFromLayout": true, + "dynamicBindingPathList": [], + "dynamicTriggerPathList": [], + "leftColumn": 0, + "minHeight": 1292, + "parentColumnSpace": 1, + "parentRowSpace": 1, + "rightColumn": 4896, + "snapColumns": 64, + "snapRows": 124, + "topRow": 0, + "type": "CANVAS_WIDGET", + "version": 94, + "widgetId": "0", + "widgetName": "MainContainer" + } + } + ], + "name": "xGen", + "slug": "xgen" + } +} \ No newline at end of file diff --git a/theme.json b/theme.json new file mode 100644 index 0000000..bd29237 --- /dev/null +++ b/theme.json @@ -0,0 +1,407 @@ +{ + "config": { + "borderRadius": { + "appBorderRadius": { + "L": "1.5rem", + "M": "0.375rem", + "none": "0px" + } + }, + "boxShadow": { + "appBoxShadow": { + "L": "0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)", + "M": "0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)", + "S": "0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06)", + "none": "none" + } + }, + "colors": { + "backgroundColor": "#F8FAFC", + "primaryColor": "#553DE9" + }, + "fontFamily": { + "appFont": [ + "System Default", + "Nunito Sans", + "Poppins", + "Inter", + "Montserrat", + "Noto Sans", + "Open Sans", + "Roboto", + "Rubik", + "Ubuntu" + ] + }, + "order": 1 + }, + "displayName": "Modern", + "isSystemTheme": false, + "name": "Default-New", + "properties": { + "borderRadius": { + "appBorderRadius": "1.5rem" + }, + "boxShadow": { + "appBoxShadow": "none" + }, + "colors": { + "backgroundColor": "#f4f4f5", + "primaryColor": "#020618" + }, + "fontFamily": { + "appFont": "Inter" + } + }, + "stylesheet": { + "AUDIO_RECORDER_WIDGET": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "BUTTON_GROUP_WIDGET": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "childStylesheet": { + "button": { + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + } + } + }, + "BUTTON_WIDGET": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "CAMERA_WIDGET": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "CATEGORY_SLIDER_WIDGET": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "CHART_WIDGET": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "fontFamily": "{{appsmith.theme.fontFamily.appFont}}" + }, + "CHECKBOX_GROUP_WIDGET": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + }, + "CHECKBOX_WIDGET": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + }, + "CIRCULAR_PROGRESS_WIDGET": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "fillColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "CODE_SCANNER_WIDGET": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "CONTAINER_WIDGET": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}" + }, + "CURRENCY_INPUT_WIDGET": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "DATE_PICKER_WIDGET2": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "DROP_DOWN_WIDGET": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "FILE_PICKER_WIDGET_V2": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "FORM_BUTTON_WIDGET": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "FORM_WIDGET": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}" + }, + "ICON_BUTTON_WIDGET": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "IFRAME_WIDGET": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}" + }, + "IMAGE_WIDGET": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "INPUT_WIDGET": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "INPUT_WIDGET_V2": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "JSON_FORM_WIDGET": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "childStylesheet": { + "ARRAY": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "cellBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "cellBoxShadow": "none" + }, + "CHECKBOX": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + }, + "CURRENCY_INPUT": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "DATEPICKER": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "EMAIL_INPUT": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "MULTILINE_TEXT_INPUT": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "MULTISELECT": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "NUMBER_INPUT": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "OBJECT": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "cellBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "cellBoxShadow": "none" + }, + "PASSWORD_INPUT": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "PHONE_NUMBER_INPUT": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "RADIO_GROUP": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "boxShadow": "none" + }, + "SELECT": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "SWITCH": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "boxShadow": "none" + }, + "TEXT_INPUT": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + } + }, + "resetButtonStyles": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "submitButtonStyles": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + } + }, + "LIST_WIDGET": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}" + }, + "MAP_CHART_WIDGET": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "fontFamily": "{{appsmith.theme.fontFamily.appFont}}" + }, + "MAP_WIDGET": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}" + }, + "MENU_BUTTON_WIDGET": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "menuColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "MODAL_WIDGET": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "MULTI_SELECT_TREE_WIDGET": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "MULTI_SELECT_WIDGET": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "MULTI_SELECT_WIDGET_V2": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "NUMBER_SLIDER_WIDGET": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "PHONE_INPUT_WIDGET": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "PROGRESSBAR_WIDGET": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "fillColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "PROGRESS_WIDGET": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "fillColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "RADIO_GROUP_WIDGET": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "boxShadow": "none" + }, + "RANGE_SLIDER_WIDGET": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "RATE_WIDGET": { + "activeColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "RICH_TEXT_EDITOR_WIDGET": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}" + }, + "SELECT_WIDGET": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "SINGLE_SELECT_TREE_WIDGET": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "STATBOX_WIDGET": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}" + }, + "SWITCH_GROUP_WIDGET": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "SWITCH_WIDGET": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "boxShadow": "none" + }, + "TABLE_WIDGET": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "childStylesheet": { + "button": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "iconButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "menuButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "menuColor": "{{appsmith.theme.colors.primaryColor}}" + } + } + }, + "TABLE_WIDGET_V2": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "childStylesheet": { + "button": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "editActions": { + "discardBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "discardButtonColor": "{{appsmith.theme.colors.primaryColor}}", + "saveBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "saveButtonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "iconButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "buttonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "menuButton": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none", + "menuColor": "{{appsmith.theme.colors.primaryColor}}" + } + } + }, + "TABS_WIDGET": { + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}" + }, + "TEXT_WIDGET": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", + "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}" + }, + "VIDEO_WIDGET": { + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}" + } + } +} \ No newline at end of file