Skip to content
Snippets Groups Projects

hotline #65042: keep comm params while updating standard

Merged Ghislain Loas requested to merge hotline#65042_suggestions_d_achat into stable
Compare and Show latest version
2 files
+ 7
8
Preferences
Compare changes
Files
2
@@ -348,7 +348,7 @@ class Cosmo_IntegrationControllerGenerateActionNanookPostTest
protected function _setupExistingDeletedBib() {
$lib = $this->fixture('Class_IntBib',
['id_bib' => 6,
['id' => 6,
'nom' => 'Existing deleted',
'nom_court' => 'Deleted',
'qualite' => 5,
@@ -362,7 +362,6 @@ class Cosmo_IntegrationControllerGenerateActionNanookPostTest
'profil' => 103,
'type_operation' => Class_IntMajAuto::OP_FULL_IMPORT,
'nom_fichier' => 'library/site6/reservations.txt']);
}
@@ -423,12 +422,13 @@ class Cosmo_IntegrationControllerGenerateActionNanookPostTest
public function library1IntegrationShouldBeCreated() {
$this->assertNotNull($bib = Class_IntBib::findFirstBy(['id_bib' => 20,
'nom' => 'library1',
'nom_court' => 'library1',
'nom_court' => 'library',
'qualite' => 5,
'sigb' => Class_IntBib::SIGB_NANOOK,
'planif_mode' => 'r',
'planif_jours' => '1111111',
'comm_sigb' => Class_IntBib::COM_NANOOK]));
'comm_sigb' => Class_IntBib::COM_NANOOK
]));
return $bib;
}