+
-
-
diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/controstampo_setup/components/base-components/aria-controstampo.vue b/Thermo.Active/wwwroot/src/app_modules_thermo/controstampo_setup/components/base-components/aria-controstampo.vue
deleted file mode 100644
index 6bfb678f..00000000
--- a/Thermo.Active/wwwroot/src/app_modules_thermo/controstampo_setup/components/base-components/aria-controstampo.vue
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
-
-
-

-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/controstampo_setup/components/base-components/ciclo-controstampo.vue b/Thermo.Active/wwwroot/src/app_modules_thermo/controstampo_setup/components/base-components/ciclo-controstampo.vue
deleted file mode 100644
index e3944102..00000000
--- a/Thermo.Active/wwwroot/src/app_modules_thermo/controstampo_setup/components/base-components/ciclo-controstampo.vue
+++ /dev/null
@@ -1,43 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/controstampo_setup/components/show-controstampo-info.vue b/Thermo.Active/wwwroot/src/app_modules_thermo/controstampo_setup/components/show-controstampo-info.vue
deleted file mode 100644
index e7a724db..00000000
--- a/Thermo.Active/wwwroot/src/app_modules_thermo/controstampo_setup/components/show-controstampo-info.vue
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/estrazione/components/base-components/estrazione-principale.vue b/Thermo.Active/wwwroot/src/app_modules_thermo/estrazione/components/base-components/estrazione-principale.vue
deleted file mode 100644
index 4c34283e..00000000
--- a/Thermo.Active/wwwroot/src/app_modules_thermo/estrazione/components/base-components/estrazione-principale.vue
+++ /dev/null
@@ -1,27 +0,0 @@
-
-
-
-
-
-

-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/estrazione/components/show-estrazione-info.vue b/Thermo.Active/wwwroot/src/app_modules_thermo/estrazione/components/show-estrazione-info.vue
deleted file mode 100644
index fe20e161..00000000
--- a/Thermo.Active/wwwroot/src/app_modules_thermo/estrazione/components/show-estrazione-info.vue
+++ /dev/null
@@ -1,39 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/pirometro/components/base-components/pirometro.vue b/Thermo.Active/wwwroot/src/app_modules_thermo/pirometro/components/base-components/pirometro.vue
deleted file mode 100644
index b9c56051..00000000
--- a/Thermo.Active/wwwroot/src/app_modules_thermo/pirometro/components/base-components/pirometro.vue
+++ /dev/null
@@ -1,35 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/pirometro/components/show-pirometro-info.vue b/Thermo.Active/wwwroot/src/app_modules_thermo/pirometro/components/show-pirometro-info.vue
deleted file mode 100644
index d4b9c30f..00000000
--- a/Thermo.Active/wwwroot/src/app_modules_thermo/pirometro/components/show-pirometro-info.vue
+++ /dev/null
@@ -1,31 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/processo/arretramento-riscaldi/show-arretramento-riscladi-info.ts b/Thermo.Active/wwwroot/src/app_modules_thermo/processo/arretramento-riscaldi/show-arretramento-riscladi-info.ts
new file mode 100644
index 00000000..5d29892e
--- /dev/null
+++ b/Thermo.Active/wwwroot/src/app_modules_thermo/processo/arretramento-riscaldi/show-arretramento-riscladi-info.ts
@@ -0,0 +1,39 @@
+import Vue from 'vue';
+import Component from 'vue-class-component';
+import {Prop} from 'vue-property-decorator';
+import Slider from "@/app_modules_thermo/components/slider.vue";
+import { Modal, ModalHelper } from "@/components/modals";
+import { Factory, messageService, awaiter } from "@/_base";
+
+@Component({components:{slider:Slider,modal:Modal}})
+export default class ArretramentoRiscaldi extends Vue{
+
+ @Prop({default:0})
+ ritardo:number
+
+ annulla(){
+ ModalHelper.HideModal();
+ };
+
+ conferma(){
+ ModalHelper.HideModal();
+ };
+
+ async beforeMount() {
+ // this.contactInfo = await awaiter(new machineService().getContactConfiguration());
+ messageService.subscribeToChannel("esc_pressed", args => {
+ this.close();
+ });
+ }
+
+ beforeDestroy() {
+ messageService.deleteChannel("esc_pressed");
+ }
+
+ close() {
+ messageService.deleteChannel("esc_pressed");
+ ModalHelper.HideModal();
+ }
+
+
+}
\ No newline at end of file
diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/processo/arretramento-riscaldi/show-arretramento-riscladi-info.vue b/Thermo.Active/wwwroot/src/app_modules_thermo/processo/arretramento-riscaldi/show-arretramento-riscladi-info.vue
new file mode 100644
index 00000000..429bca6d
--- /dev/null
+++ b/Thermo.Active/wwwroot/src/app_modules_thermo/processo/arretramento-riscaldi/show-arretramento-riscladi-info.vue
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/processo/components/processo.ts b/Thermo.Active/wwwroot/src/app_modules_thermo/processo/components/processo.ts
new file mode 100644
index 00000000..7ffb8c95
--- /dev/null
+++ b/Thermo.Active/wwwroot/src/app_modules_thermo/processo/components/processo.ts
@@ -0,0 +1,16 @@
+import Vue from 'vue';
+import Component from 'vue-class-component';
+import {Prop} from 'vue-property-decorator';
+import { messageService } from "@/_base/messageService";
+import { Modal, ModalHelper } from "@/components/modals";
+
+@Component({
+ components: {
+ modal: Modal
+ }
+})
+export default class Processo extends Vue{
+ public sendMessage(name: string) {
+ messageService.publishToChannel(name);
+ }
+}
\ No newline at end of file
diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/processo/components/processo.vue b/Thermo.Active/wwwroot/src/app_modules_thermo/processo/components/processo.vue
new file mode 100644
index 00000000..d50267ba
--- /dev/null
+++ b/Thermo.Active/wwwroot/src/app_modules_thermo/processo/components/processo.vue
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/processo/route.js b/Thermo.Active/wwwroot/src/app_modules_thermo/processo/route.js
new file mode 100644
index 00000000..5341564c
--- /dev/null
+++ b/Thermo.Active/wwwroot/src/app_modules_thermo/processo/route.js
@@ -0,0 +1,8 @@
+import Processo from "./components/processo.vue"
+
+export const routes = [
+ {
+ name: 'production', path: "/production",
+ meta: { title: "Production", area: "production" },
+ component: Processo
+ }];
\ No newline at end of file
diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/programmazione-preriscaldo/components/programmazione-preriscaldo.ts b/Thermo.Active/wwwroot/src/app_modules_thermo/programmazione-preriscaldo/components/programmazione-preriscaldo.ts
new file mode 100644
index 00000000..20fe1982
--- /dev/null
+++ b/Thermo.Active/wwwroot/src/app_modules_thermo/programmazione-preriscaldo/components/programmazione-preriscaldo.ts
@@ -0,0 +1,30 @@
+import Vue from 'vue';
+import Component from 'vue-class-component';
+import {Prop} from 'vue-property-decorator';
+import { messageService } from "@/_base/messageService";
+import { Modal, ModalHelper } from "@/components/modals";
+import ToggleButton from "@/components/toggleButton.vue";
+
+@Component({
+ components: {
+ modal: Modal,
+ ToggleButton
+ }
+})
+export default class ProgrammazionePreriscaldo extends Vue{
+
+ enabling:boolean=true;
+ risc:boolean=true;
+ termo:boolean=true;
+ block:boolean=false;
+
+ active:string="";
+ meridian:string="--";
+ hours:string="00";
+
+
+ public sendMessage(name: string) {
+ messageService.publishToChannel(name);
+ }
+
+}
\ No newline at end of file
diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/programmazione-preriscaldo/components/programmazione-preriscaldo.vue b/Thermo.Active/wwwroot/src/app_modules_thermo/programmazione-preriscaldo/components/programmazione-preriscaldo.vue
new file mode 100644
index 00000000..d771058f
--- /dev/null
+++ b/Thermo.Active/wwwroot/src/app_modules_thermo/programmazione-preriscaldo/components/programmazione-preriscaldo.vue
@@ -0,0 +1,68 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/programmazione-preriscaldo/route.js b/Thermo.Active/wwwroot/src/app_modules_thermo/programmazione-preriscaldo/route.js
new file mode 100644
index 00000000..9e1c0c70
--- /dev/null
+++ b/Thermo.Active/wwwroot/src/app_modules_thermo/programmazione-preriscaldo/route.js
@@ -0,0 +1,8 @@
+import ProgrammazionePreriscaldo from "./components/programmazione-preriscaldo.vue"
+
+export const routes = [
+ {
+ name: 'progrprerisc', path: "/progrprerisc",
+ meta: { title: "Progrprerisc", area: "progrprerisc" },
+ component: ProgrammazionePreriscaldo
+ }];
\ No newline at end of file
diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/raffreddamento/components/base-components/ventilatori.vue b/Thermo.Active/wwwroot/src/app_modules_thermo/raffreddamento/components/base-components/ventilatori.vue
deleted file mode 100644
index a092f9c8..00000000
--- a/Thermo.Active/wwwroot/src/app_modules_thermo/raffreddamento/components/base-components/ventilatori.vue
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
-
-
-
-
-
-
-

-
-
-
-
- {{mockR}}s
-
-
-
-
-
-
-
-
- {{mockD}}s
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/raffreddamento/components/show-raffreddamento-info.vue b/Thermo.Active/wwwroot/src/app_modules_thermo/raffreddamento/components/show-raffreddamento-info.vue
deleted file mode 100644
index 5ad42582..00000000
--- a/Thermo.Active/wwwroot/src/app_modules_thermo/raffreddamento/components/show-raffreddamento-info.vue
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/ciclo/components/base-components/SVG-Components/SVGcaricatore.vue b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/ciclo/components/base-components/SVG-Components/SVGcaricatore.vue
index 5e192c0f..6d2957e1 100644
--- a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/ciclo/components/base-components/SVG-Components/SVGcaricatore.vue
+++ b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/ciclo/components/base-components/SVG-Components/SVGcaricatore.vue
@@ -1,18 +1,12 @@
-
-

-
-
-
-
-
-
-
-
-
-
-
-
+
+

+
+
+
+
+
+
diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/ciclo/components/base-components/caricatore.vue b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/ciclo/components/base-components/caricatore.vue
index ecd51f92..0e692bcb 100644
--- a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/ciclo/components/base-components/caricatore.vue
+++ b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/ciclo/components/base-components/caricatore.vue
@@ -1,6 +1,6 @@