diff --git a/config/label_templates/ERRECINQUE_flag_qr_only.prn b/config/label_templates/ERRECINQUE_flag_qr_only.prn index ee4c6b3..0e07ea9 100644 --- a/config/label_templates/ERRECINQUE_flag_qr_only.prn +++ b/config/label_templates/ERRECINQUE_flag_qr_only.prn @@ -30,7 +30,7 @@ ^FT31,236^BXN,6,200,0,0,1,_,1 ^FH\^FD{PART}{MO}{YY}{SN5}^FS ^FT29,287^A0N,25,25^FH\^CI28^FD{PART}{MO}{YY}{SN5}^FS^CI27 -^FO90,965^GFA,653,1887,17,:Z64:eJyNVTFuwzAMpKLBQDO4nTrqCflB3ZdFfkrnLn1C/YQ+wWPRyWMQGFYpiaRFGgXKybqcyNOJYgB8otigRmAgfVVA1mkb89rtQCoE3wBzBroGWDLQp5/3Gh+1TliBIxZgmAXoUy4TXwVwKX8XlKKUSfsaIpZxWwMMNwTWBugQ8LcGOCPdLw2Q9ytGrtC1DIg1T8MYDSNM0M0tgAczjBl6xcCV3oJ8A9xMDtStdXjLwLN7y/AHRmsQwKYdA1i1p5mRLWjiqu+lMibDGO4GCOmpxmMGYr5yjrHm2DtoqgyvOuwlg4YBagu26t6nVKVLd+pC0tG1LZQZQVmGOoKy7Kr69L9+qCLoKShPnXUdVxrAmzsAh7t1Sij2gmZgjznbhZqBB9P9MUz2NYwmRzTvxeNJXQscXlS/mVdZ5oB9ty3g4gzK03NpgMb1UPwd3nh9ogkzMfCcVskMtZPKZ89CqGVo8GRq7UOkTlxjob3fdBD+iOSIq5MP97L4dOPyfLS1PQHGpc5T3EtJOq6XRCtRZV5yPdH6uZm9geqdkqXGlbVOvHfU9eRBMFUEXOgXFxdD5T+OXasksQLYG2e1ioC/tV6Eas3iNyqXI6+YBYh7A08EBoIFegs4C8ickcbmJBMDDzRmxl/m/KgQ:B2BA +^FO90,965^GFA,3053,1887,17,:Z64:eJyNVTFuwzAMpKLBQDO4nTrqCflB3ZdFfkrnLn1C/YQ+wWPRyWMQGFYpiaRFGgXKybqcyNOJYgB8otigRmAgfVVA1mkb89rtQCoE3wBzBroGWDLQp5/3Gh+1TliBIxZgmAXoUy4TXwVwKX8XlKKUSfsaIpZxWwMMNwTWBugQ8LcGOCPdLw2Q9ytGrtC1DIg1T8MYDSNM0M0tgAczjBl6xcCV3oJ8A9xMDtStdXjLwLN7y/AHRmsQwKYdA1i1p5mRLWjiqu+lMibDGO4GCOmpxmMGYr5yjrHm2DtoqgyvOuwlg4YBagu26t6nVKVLd+pC0tG1LZQZQVmGOoKy7Kr69L9+qCLoKShPnXUdVxrAmzsAh7t1Sij2gmZgjznbhZqBB9P9MUz2NYwmRzTvxeNJXQscXlS/mVdZ5oB9ty3g4gzK03NpgMb1UPwd3nh9ogkzMfCcVskMtZPKZ89CqGVo8GRq7UOkTlxjob3fdBD+iOSIq5MP97L4dOPyfLS1PQHGpc5T3EtJOq6XRCtRZV5yPdH6uZm9geqdkqXGlbVOvHfU9eRBMFUEXOgXFxdD5T+OXasksQLYG2e1ioC/tV6Eas3iNyqXI6+YBYh7A08EBoIFegs4C8ickcbmJBMDDzRmxl/m/KgQ:B2BA ^FT27,506^A0N,25,25^FH\^CI28^FDESITO : CONFORME^FS^CI27 ^PQ1,0,1,Y ^XZ diff --git a/src/ui/recipe_selection/recipe_selection.py b/src/ui/recipe_selection/recipe_selection.py index cf02f31..5daaf38 100755 --- a/src/ui/recipe_selection/recipe_selection.py +++ b/src/ui/recipe_selection/recipe_selection.py @@ -143,8 +143,6 @@ class Recipe_Selection(Widget): self.archive_synch.machine_status = "logged-in" self.archive_synch.machine_id = self.archive_synch.config.machine_id self.archive_synch.update_machine_status() - #self.archive_synch.remote_fetch( self.archive_synch.machine_id ) - print("trying to import") # TESTING if "--auto-select" in sys.argv: recipe = "R56738/1" diff --git a/src/ui/recipe_spec_and_step_editor/recipe_spec_and_step_editor.py b/src/ui/recipe_spec_and_step_editor/recipe_spec_and_step_editor.py index b20c941..006c17c 100644 --- a/src/ui/recipe_spec_and_step_editor/recipe_spec_and_step_editor.py +++ b/src/ui/recipe_spec_and_step_editor/recipe_spec_and_step_editor.py @@ -173,7 +173,8 @@ class Recipe_Spec_And_Step_Editor(Editor): self.steps_map[step_name]["spec"]=step_dict else: self.steps_map[step_name]["spec"] = {} - self.crud().set_modified() + if self.crud is not None: + self.crud.set_modified() parsed_value=self.parse() self.cell_widget().value = parsed_value self.reset_steps()