diff --git a/Thermo.Active.NC/NcAdapter.cs b/Thermo.Active.NC/NcAdapter.cs index 2b0baf97..cfb99f65 100644 --- a/Thermo.Active.NC/NcAdapter.cs +++ b/Thermo.Active.NC/NcAdapter.cs @@ -323,6 +323,13 @@ namespace Thermo.Active.NC WriteRecipeParams(updtRecipe); // Ack ! libraryError = numericalControl.PLC_WAckConfRecipeRequest(); + if (libraryError.IsError()) + return libraryError; + + // do conferma come se avessi appena approvata ricetta... + libraryError = ConfirmRecipeData(true); + if (libraryError.IsError()) + return libraryError; } } }