Standard-Buchungsgruppe in CSV-Import-Profil via ID speichern
authorMoritz Bunkus <m.bunkus@linet-services.de>
Wed, 2 Mar 2011 09:10:18 +0000 (10:10 +0100)
committerMoritz Bunkus <m.bunkus@linet-services.de>
Thu, 16 Jun 2011 06:44:32 +0000 (08:44 +0200)
SL/DB/CsvImportProfile.pm
templates/webpages/csv_import/_form_parts.html

index 58e3d68..e0dfe16 100644 (file)
@@ -51,7 +51,7 @@ sub set_defaults {
                          part_group_sep_char       => '!',
                          shoparticle_if_missing    => '0',
                          parts_type                => 'part',
-                         default_buchungsgruppe    => ($bugru ? $bugru->description : undef),
+                         default_buchungsgruppe    => ($bugru ? $bugru->id : undef),
                          apply_buchungsgruppe      => 'all',
                         );
   } else {
index 21dd423..2c9545a 100644 (file)
@@ -50,7 +50,7 @@
 <tr>
  <th align="right" valign="top">[%- LxERP.t8('Default buchungsgruppe') %]:</th>
  <td colspan="10" valign="top">
-  [% opts = L.options_for_select(SELF.all_buchungsgruppen, tilte => 'description', value => 'description', default => SELF.profile.get('default_buchungsgruppe')) %]
+  [% opts = L.options_for_select(SELF.all_buchungsgruppen, title => 'description', default => SELF.profile.get('default_buchungsgruppe')) %]
   [% L.select_tag('settings.default_buchungsgruppe', opts, style => 'width: 300px') %]
   <br>
   [% opts = [ [ 'never', LxERP.t8('Do not set default buchungsgruppe') ], [ 'all', LxERP.t8('Apply to all parts') ], [ 'missing', LxERP.t8('Apply to parts without buchungsgruppe') ] ] %]