diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/components/slider.vue b/Thermo.Active/wwwroot/src/app_modules_thermo/components/slider.vue index 51d2a7a4..48eae723 100644 --- a/Thermo.Active/wwwroot/src/app_modules_thermo/components/slider.vue +++ b/Thermo.Active/wwwroot/src/app_modules_thermo/components/slider.vue @@ -4,7 +4,12 @@
- +
diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/formato/components/piastra_riduzione.vue b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/formato/components/piastra_riduzione.vue index e8626b02..35b82a4d 100644 --- a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/formato/components/piastra_riduzione.vue +++ b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/formato/components/piastra_riduzione.vue @@ -16,14 +16,14 @@
- +
- + diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/formato/components/stampo.vue b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/formato/components/stampo.vue index 4ef8f777..a3890af6 100644 --- a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/formato/components/stampo.vue +++ b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/formato/components/stampo.vue @@ -9,20 +9,24 @@ +
- + s
+ +
- + +
diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/SVG_Components/quote-velocita.ts b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/SVG_Components/quote-velocita.ts index 6d6ecf1e..c7a88272 100644 --- a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/SVG_Components/quote-velocita.ts +++ b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/SVG_Components/quote-velocita.ts @@ -4,17 +4,9 @@ import { Prop } from 'vue-property-decorator'; @Component({}) export default class QuoteVelocita extends Vue { - // @Prop({}) - // corsa: Recipe.IValue; - // @Prop({}) - // vel_salita: Recipe.IValue; - // @Prop({}) - // vel_salita_lenta: number; - // @Prop({}) - // rall_salita: number; - // :corsa="recipe.positions_frame_upper_position" - // :vel_salita="recipe.positions_frame_upper_speed" - @Prop({}) - recipe:Recipe.IRecipe + + @Prop() + recipe: Recipe.IRecipe; + } \ No newline at end of file diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/SVG_Components/stampo.ts b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/SVG_Components/stampo.ts index acdb1c7c..81ad7b7c 100644 --- a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/SVG_Components/stampo.ts +++ b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/SVG_Components/stampo.ts @@ -4,20 +4,8 @@ import { Prop } from 'vue-property-decorator'; @Component({}) export default class QuoteVelocita extends Vue { - // @Prop({}) - // corsa: Recipe.IValue; - // @Prop({}) - // vel_salita: Recipe.IValue; - // @Prop({}) - // vel_salita_lenta: Recipe.IValue; - // @Prop({}) - // rall_salita: Recipe.IValue; - // :corsa="recipe.positions_mould_upper_position" - // :vel_salita="recipe.positions_mould_upper_speed" - // :rall_salita="recipe.positions_mould_upperdeceleration_position" - // :vel_salita_lenta="recipe.positions_mould_upperdeceleration_speed" - @Prop({}) - recipe:Recipe.IRecipe; + @Prop() + recipe: Recipe.IRecipe; } \ No newline at end of file diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/SVG_Components/svgcontrostampo.ts b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/SVG_Components/svgcontrostampo.ts index 35095993..14ed376f 100644 --- a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/SVG_Components/svgcontrostampo.ts +++ b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/SVG_Components/svgcontrostampo.ts @@ -4,18 +4,8 @@ import { Prop } from 'vue-property-decorator'; @Component({}) export default class Controstamposvg extends Vue { - // @Prop({}) - // corsa: Recipe.IValue; - // @Prop({}) - // vel_discesa: Recipe.IValue; - // @Prop({}) - // vel_discesa_lenta: number; - // @Prop({}) - // rall_discesa: number; - // :corsa="recipe.positions_upperplate_lower_position" - // :vel_discesa="recipe.positions_upperplate_lower_speed" - @Prop({}) - recipe:Recipe.IRecipe; + @Prop() + recipe: Recipe.IRecipe; } \ No newline at end of file diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/controstampo.ts b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/controstampo.ts index 0072d813..cf558dc8 100644 --- a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/controstampo.ts +++ b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/controstampo.ts @@ -15,23 +15,6 @@ import Tastierino from "@/app_modules_thermo/components/tastierino.vue"; }) export default class Controstampo extends Vue { - - @Prop() recipe: Recipe.IRecipe; - - @Prop({}) - ritardo: number; - - mockR: number = this.ritardo; - - @Prop({}) - rallentamento_discesa: number; - - mockRD: number = this.rallentamento_discesa; - - @Prop({}) - velocità_discesa_lenta: number; - - mockVDL: number = this.velocità_discesa_lenta; } \ No newline at end of file diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/controstampo.vue b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/controstampo.vue index 671c2177..8a550e52 100644 --- a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/controstampo.vue +++ b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/controstampo.vue @@ -3,57 +3,58 @@ diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/discesa-cornice.ts b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/discesa-cornice.ts index 71f9a761..42b4db9a 100644 --- a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/discesa-cornice.ts +++ b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/discesa-cornice.ts @@ -12,15 +12,4 @@ export default class DiscesaCornice extends Vue { @Prop() recipe: Recipe.IRecipe; - @Prop({}) - ritardo: number; - @Prop({}) - ralSalita: number; - @Prop({}) - velSalitaLenta: number; - - mock_ritardo: number = this.ritardo; - mock_ral_salita: number = this.ralSalita; - mock_vel_salita_lenta: number = this.velSalitaLenta; - } \ No newline at end of file diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/discesa-cornice.vue b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/discesa-cornice.vue index daac299d..8397c2ad 100644 --- a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/discesa-cornice.vue +++ b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/discesa-cornice.vue @@ -3,57 +3,56 @@ diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/salita-stampo.ts b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/salita-stampo.ts index 4ee37fe0..9b708084 100644 --- a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/salita-stampo.ts +++ b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/salita-stampo.ts @@ -8,8 +8,6 @@ import Tastierino from "@/app_modules_thermo/components/tastierino.vue"; @Component({ name: "salita-stampo", components: { stampoSVG: StampoSVG } }) export default class DiscesaCornice extends Vue { - @Prop({}) - ritardo: number; @Prop() recipe: Recipe.IRecipe; diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/salita-stampo.vue b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/salita-stampo.vue index a4bd1c69..9fee70f2 100644 --- a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/salita-stampo.vue +++ b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/salita-stampo.vue @@ -3,69 +3,63 @@ diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/show-quote-velocita-info.ts b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/show-quote-velocita-info.ts index 1af1a07f..816a022d 100644 --- a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/show-quote-velocita-info.ts +++ b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/show-quote-velocita-info.ts @@ -23,7 +23,7 @@ import { Deferred } from "@/services"; export default class ShowQuoteVelocitaInfo extends Vue { recipe: Recipe.IRecipe = this.$store.getters.getCurrent(); - show: string = "QC"; + show: string = "QS"; @Prop() deferred: Deferred;