Laden von CVars mit falschen Werten in Artikelstammdaten unterbinden.
[kivitendo-erp.git] / SL / CVar.pm
1 package CVar;
2
3 use strict;
4
5 use List::MoreUtils qw(any);
6 use List::Util qw(first);
7 use Scalar::Util qw(blessed);
8 use Data::Dumper;
9
10 use SL::DBUtils;
11 use SL::MoreCommon qw(listify);
12
13 sub get_configs {
14   $main::lxdebug->enter_sub();
15
16   my $self     = shift;
17   my %params   = @_;
18
19   my $myconfig = \%main::myconfig;
20   my $form     = $main::form;
21
22   my $dbh      = $params{dbh} || $form->get_standard_dbh($myconfig);
23
24   my ($where, @values);
25   if ($params{module}) {
26     $where = 'WHERE module = ?';
27     push @values, $params{module};
28   }
29
30   my $query    = <<SQL;
31     SELECT *, date_trunc('seconds', localtimestamp) AS current_timestamp
32     FROM custom_variable_configs $where ORDER BY sortkey
33 SQL
34
35   $::form->{CVAR_CONFIGS} = {} unless 'HASH' eq ref $::form->{CVAR_CONFIGS};
36   if (!$::form->{CVAR_CONFIGS}->{$params{module}}) {
37     my $configs  = selectall_hashref_query($form, $dbh, $query, @values);
38
39     foreach my $config (@{ $configs }) {
40       if ($config->{type} eq 'select') {
41         $config->{OPTIONS} = [ map { { 'value' => $_ } } split(m/\#\#/, $config->{options}) ];
42
43       } elsif ($config->{type} eq 'number') {
44         $config->{precision} = $1 if ($config->{options} =~ m/precision=(\d+)/i);
45
46       } elsif ($config->{type} eq 'textfield') {
47         $config->{width}  = 30;
48         $config->{height} =  5;
49         $config->{width}  = $1 if ($config->{options} =~ m/width=(\d+)/i);
50         $config->{height} = $1 if ($config->{options} =~ m/height=(\d+)/i);
51
52       } elsif ($config->{type} eq 'text') {
53         $config->{maxlength} = $1 if ($config->{options} =~ m/maxlength=(\d+)/i);
54
55       }
56
57       $self->_unpack_flags($config);
58
59       my $cvar_config = SL::DB::CustomVariableConfig->new(id => $config->{id})->load;
60       @{$config->{'partsgroups'}} = map {$_->id} @{$cvar_config->partsgroups};
61
62     }
63     $::form->{CVAR_CONFIGS}->{$params{module}} = $configs;
64   }
65
66   $main::lxdebug->leave_sub();
67
68   return $::form->{CVAR_CONFIGS}->{$params{module}};
69 }
70
71 sub _unpack_flags {
72   $main::lxdebug->enter_sub();
73
74   my $self   = shift;
75   my $config = shift;
76
77   foreach my $flag (split m/:/, $config->{flags}) {
78     if ($flag =~ m/(.*?)=(.*)/) {
79       $config->{"flag_${1}"}    = $2;
80     } else {
81       $config->{"flag_${flag}"} = 1;
82     }
83   }
84
85   $main::lxdebug->leave_sub();
86 }
87
88 sub get_custom_variables {
89   $main::lxdebug->enter_sub();
90
91   my $self     = shift;
92   my %params   = @_;
93
94   Common::check_params(\%params, qw(module));
95
96   my $myconfig = \%main::myconfig;
97   my $form     = $main::form;
98
99   my $dbh      = $params{dbh} || $form->get_standard_dbh($myconfig);
100
101   my $trans_id = $params{trans_id} ? 'OR (v.trans_id = ?) ' : '';
102
103   my $sub_module = $params{sub_module} ? $params{sub_module} : '';
104
105   my $q_var    =
106     qq|SELECT text_value, timestamp_value, timestamp_value::date AS date_value, number_value, bool_value
107        FROM custom_variables
108        WHERE (config_id = ?) AND (trans_id = ?) AND (sub_module = ?)|;
109   my $h_var    = prepare_query($form, $dbh, $q_var);
110
111   my $custom_variables = $self->get_configs(module => $params{module});
112
113   foreach my $cvar (@{ $custom_variables }) {
114     if ($cvar->{type} eq 'textfield') {
115       $cvar->{width}  = 30;
116       $cvar->{height} =  5;
117
118       $cvar->{width}  = $1 if ($cvar->{options} =~ m/width=(\d+)/i);
119       $cvar->{height} = $1 if ($cvar->{options} =~ m/height=(\d+)/i);
120
121     } elsif ($cvar->{type} eq 'text') {
122       $cvar->{maxlength} = $1 if ($cvar->{options} =~ m/maxlength=(\d+)/i);
123
124     } elsif ($cvar->{type} eq 'number') {
125       $cvar->{precision} = $1 if ($cvar->{options} =~ m/precision=(\d+)/i);
126
127     } elsif ($cvar->{type} eq 'select') {
128       $cvar->{OPTIONS} = [ map { { 'value' => $_ } } split(m/\#\#/, $cvar->{options}) ];
129     }
130
131     my ($act_var, $valid);
132     if ($params{trans_id}) {
133       my @values = (conv_i($cvar->{id}), conv_i($params{trans_id}, $sub_module));
134
135       do_statement($form, $h_var, $q_var, @values);
136       $act_var = $h_var->fetchrow_hashref();
137
138       $valid = $self->get_custom_variables_validity(config_id => $cvar->{id}, trans_id => $params{trans_id});
139     } else {
140       $valid = !$cvar->{flag_defaults_to_invalid};
141     }
142
143     if ($act_var) {
144       $cvar->{value} = $cvar->{type} eq 'date'      ? $act_var->{date_value}
145                      : $cvar->{type} eq 'timestamp' ? $act_var->{timestamp_value}
146                      : $cvar->{type} eq 'number'    ? $act_var->{number_value}
147                      : $cvar->{type} eq 'customer'  ? $act_var->{number_value}
148                      : $cvar->{type} eq 'vendor'    ? $act_var->{number_value}
149                      : $cvar->{type} eq 'part'      ? $act_var->{number_value}
150                      : $cvar->{type} eq 'bool'      ? $act_var->{bool_value}
151                      :                                $act_var->{text_value};
152       $cvar->{valid} = $valid;
153     } else {
154       $cvar->{valid} = $valid // 1;
155
156       if ($cvar->{type} eq 'date') {
157         if ($cvar->{default_value} eq 'NOW') {
158           $cvar->{value} = $cvar->{current_date};
159         } else {
160           $cvar->{value} = $cvar->{default_value};
161         }
162
163       } elsif ($cvar->{type} eq 'timestamp') {
164         if ($cvar->{default_value} eq 'NOW') {
165           $cvar->{value} = $cvar->{current_timestamp};
166         } else {
167           $cvar->{value} = $cvar->{default_value};
168         }
169
170       } elsif ($cvar->{type} eq 'bool') {
171         $cvar->{value} = $cvar->{default_value} * 1;
172
173       } elsif ($cvar->{type} eq 'number') {
174         $cvar->{value} = $cvar->{default_value} * 1 if ($cvar->{default_value} ne '');
175
176       } else {
177         $cvar->{value} = $cvar->{default_value};
178       }
179     }
180
181     if ($cvar->{type} eq 'number') {
182       $cvar->{value} = $form->format_amount($myconfig, $cvar->{value} * 1, $cvar->{precision});
183     } elsif ($cvar->{type} eq 'customer') {
184       require SL::DB::Customer;
185       $cvar->{value} = SL::DB::Manager::Customer->find_by(id => $cvar->{value} * 1);
186     } elsif ($cvar->{type} eq 'vendor') {
187       require SL::DB::Vendor;
188       $cvar->{value} = SL::DB::Manager::Vendor->find_by(id => $cvar->{value} * 1);
189     } elsif ($cvar->{type} eq 'part') {
190       require SL::DB::Part;
191       $cvar->{value} = SL::DB::Manager::Part->find_by(id => $cvar->{value} * 1);
192     }
193   }
194
195   $h_var->finish();
196
197   $main::lxdebug->leave_sub();
198
199   return $custom_variables;
200 }
201
202 sub save_custom_variables {
203   $main::lxdebug->enter_sub();
204
205   my $self     = shift;
206   my %params   = @_;
207
208   Common::check_params(\%params, qw(module trans_id variables));
209
210   my $myconfig = \%main::myconfig;
211   my $form     = $main::form;
212
213   my $dbh      = $params{dbh} || $form->get_standard_dbh($myconfig);
214
215   my @configs  = $params{configs} ? @{ $params{configs} } : grep { $_->{module} eq $params{module} } @{ CVar->get_configs() };
216
217   my $query    =
218     qq|DELETE FROM custom_variables
219        WHERE (trans_id  = ?)
220          AND (config_id IN (SELECT DISTINCT id
221                             FROM custom_variable_configs
222                             WHERE module = ?))|;
223   my @values   = (conv_i($params{trans_id}), $params{module});
224
225   if ($params{sub_module}) {
226     $query .= qq| AND (sub_module = ?)|;
227     push @values, $params{sub_module};
228   }
229
230   do_query($form, $dbh, $query, @values);
231
232   $query  =
233     qq|INSERT INTO custom_variables (config_id, sub_module, trans_id, bool_value, timestamp_value, text_value, number_value)
234        VALUES                       (?,         ?,          ?,        ?,          ?,               ?,          ?)|;
235   my $sth = prepare_query($form, $dbh, $query);
236
237   foreach my $config (@configs) {
238     my @values = (conv_i($config->{id}), "$params{sub_module}", conv_i($params{trans_id}));
239
240     my $value  = $params{variables}->{"$params{name_prefix}cvar_$config->{name}$params{name_postfix}"};
241
242     if (($config->{type} eq 'text') || ($config->{type} eq 'textfield') || ($config->{type} eq 'select')) {
243       push @values, undef, undef, $value, undef;
244
245     } elsif (($config->{type} eq 'date') || ($config->{type} eq 'timestamp')) {
246       push @values, undef, conv_date($value), undef, undef;
247
248     } elsif ($config->{type} eq 'number') {
249       push @values, undef, undef, undef, conv_i($form->parse_amount($myconfig, $value));
250
251     } elsif ($config->{type} eq 'bool') {
252       push @values, $value ? 't' : 'f', undef, undef, undef;
253     } elsif (any { $config->{type} eq $_ } qw(customer vendor part)) {
254       push @values, undef, undef, undef, $value * 1;
255     }
256
257     do_statement($form, $sth, $query, @values);
258
259     if ($params{save_validity}) {
260       my $valid_index = "$params{name_prefix}cvar_$config->{name}$params{name_postfix}_valid";
261       $self->save_custom_variables_validity(trans_id  => $params{trans_id},
262                                             config_id => $config->{id},
263                                             validity  => ($params{variables}{$valid_index} || $params{always_valid} ? 1 : 0)
264                                            );
265     }
266   }
267
268   $sth->finish();
269
270   $dbh->commit() unless $params{dbh};
271
272   $main::lxdebug->leave_sub();
273 }
274
275 sub render_inputs {
276   $main::lxdebug->enter_sub(2);
277
278   my $self     = shift;
279   my %params   = @_;
280
281   Common::check_params(\%params, qw(variables));
282
283   my $myconfig = \%main::myconfig;
284   my $form     = $main::form;
285
286   my %options  = ( name_prefix           => "$params{name_prefix}",
287                    name_postfix          => "$params{name_postfix}",
288                    hide_non_editable     => $params{hide_non_editable},
289                    show_disabled_message => $params{show_disabled_message},
290                  );
291
292   # should this cvar be filtered by partsgroups?
293   foreach my $var (@{ $params{variables} }) {
294     if ($var->{flag_partsgroup_filter}) {
295       if (!$params{partsgroup_id} || (!grep {$params{partsgroup_id} == $_} @{ $var->{partsgroups} })) {
296         $var->{partsgroup_filtered} = 1;
297       }
298     }
299
300     $var->{HTML_CODE} = $form->parse_html_template('amcvar/render_inputs',     { var => $var, %options });
301     $var->{VALID_BOX} = $form->parse_html_template('amcvar/render_checkboxes', { var => $var, %options });
302   }
303
304   $main::lxdebug->leave_sub(2);
305 }
306
307 sub render_search_options {
308   $main::lxdebug->enter_sub();
309
310   my $self     = shift;
311   my %params   = @_;
312
313   Common::check_params(\%params, qw(variables));
314
315   my $myconfig = \%main::myconfig;
316   my $form     = $main::form;
317
318   $params{hidden_cvar_filters} = $myconfig->{hide_cvar_search_options};
319
320   $params{include_prefix}   = 'l_' unless defined($params{include_prefix});
321   $params{include_value}  ||= '1';
322   $params{filter_prefix}  ||= '';
323
324   my $filter  = $form->parse_html_template('amcvar/search_filter',  \%params);
325   my $include = $form->parse_html_template('amcvar/search_include', \%params);
326
327   $main::lxdebug->leave_sub();
328
329   return ($filter, $include);
330 }
331
332 sub build_filter_query {
333   $main::lxdebug->enter_sub();
334
335   my $self     = shift;
336   my %params   = @_;
337
338   Common::check_params(\%params, qw(module trans_id_field filter));
339
340   my $myconfig = \%main::myconfig;
341   my $form     = $main::form;
342
343   my $dbh      = $params{dbh} || $form->get_standard_dbh($myconfig);
344
345   my $configs  = $self->get_configs(%params);
346
347   my (@where, @values);
348
349   foreach my $config (@{ $configs }) {
350     next unless ($config->{searchable});
351
352     my $name = "cvar_$config->{name}";
353
354     my (@sub_values, @sub_where, $not);
355
356     if (($config->{type} eq 'text') || ($config->{type} eq 'textfield')) {
357       next unless ($params{filter}->{$name});
358
359       push @sub_where,  qq|cvar.text_value ILIKE ?|;
360       push @sub_values, '%' . $params{filter}->{$name} . '%'
361
362     } elsif ($config->{type} eq 'select') {
363       next unless ($params{filter}->{$name});
364
365       push @sub_where,  qq|cvar.text_value = ?|;
366       push @sub_values, $params{filter}->{$name};
367
368     } elsif (($config->{type} eq 'date') || ($config->{type} eq 'timestamp')) {
369       my $name_from = "${name}_from";
370       my $name_to   = "${name}_to";
371
372       if ($params{filter}->{$name_from}) {
373         push @sub_where,  qq|cvar.timestamp_value >= ?|;
374         push @sub_values, conv_date($params{filter}->{$name_from});
375       }
376
377       if ($params{filter}->{$name_to}) {
378         push @sub_where,  qq|cvar.timestamp_value <= ?|;
379         push @sub_values, conv_date($params{filter}->{$name_to});
380       }
381
382     } elsif ($config->{type} eq 'number') {
383       next if ($params{filter}->{$name} eq '');
384
385       my $f_op = $params{filter}->{"${name}_qtyop"};
386
387       my $op;
388       if ($f_op eq '==') {
389         $op  = '=';
390
391       } elsif ($f_op eq '=/=') {
392         $not = 'NOT';
393         $op  = '<>';
394
395       } elsif ($f_op eq '<') {
396         $not = 'NOT';
397         $op  = '>=';
398
399       } elsif ($f_op eq '<=') {
400         $not = 'NOT';
401         $op  = '>';
402
403       } elsif (($f_op eq '>') || ($f_op eq '>=')) {
404         $op  = $f_op;
405
406       } else {
407         $op  = '=';
408       }
409
410       push @sub_where,  qq|cvar.number_value $op ?|;
411       push @sub_values, $form->parse_amount($myconfig, $params{filter}->{$name});
412
413     } elsif ($config->{type} eq 'bool') {
414       next unless ($params{filter}->{$name});
415
416       $not = 'NOT' if ($params{filter}->{$name} eq 'no');
417       push @sub_where,  qq|COALESCE(cvar.bool_value, false) = TRUE|;
418     } elsif (any { $config->{type} eq $_ } qw(customer vendor)) {
419       next unless $params{filter}->{$name};
420
421       my $table = $config->{type};
422       push @sub_where, qq|cvar.number_value * 1 IN (SELECT id FROM $table WHERE name ILIKE ?)|;
423       push @sub_values, "%$params{filter}->{$name}%";
424     } elsif ($config->{type} eq 'part') {
425       next unless $params{filter}->{$name};
426
427       push @sub_where, qq|cvar.number_value * 1 IN (SELECT id FROM parts WHERE partnumber ILIKE ?)|;
428       push @sub_values, "%$params{filter}->{$name}%";
429     }
430
431     if (@sub_where) {
432       add_token(\@sub_where, \@sub_values, col => 'cvar.sub_module', val => $params{sub_module} || '');
433
434       push @where,
435         qq|$not EXISTS(
436              SELECT cvar.id
437              FROM custom_variables cvar
438              LEFT JOIN custom_variable_configs cvarcfg ON (cvar.config_id = cvarcfg.id)
439              WHERE (cvarcfg.module = ?)
440                AND (cvarcfg.id     = ?)
441                AND (cvar.trans_id  = $params{trans_id_field})
442                AND | . join(' AND ', map { "($_)" } @sub_where) . qq|)|;
443       push @values, $params{module}, conv_i($config->{id}), @sub_values;
444     }
445   }
446
447   my $query = join ' AND ', @where;
448
449   $main::lxdebug->leave_sub();
450
451   return ($query, @values);
452 }
453
454 sub add_custom_variables_to_report {
455   $main::lxdebug->enter_sub();
456
457   my $self      = shift;
458   my %params    = @_;
459
460   Common::check_params(\%params, qw(module trans_id_field column_defs data configs));
461
462   my $myconfig  = \%main::myconfig;
463   my $form      = $main::form;
464   my $locale    = $main::locale;
465
466   my $dbh       = $params{dbh} || $form->get_standard_dbh($myconfig);
467
468   my $configs   = [ grep { $_->{includeable} && $params{column_defs}->{"cvar_$_->{name}"}->{visible} } @{ $params{configs} } ];
469
470   if (!scalar(@{ $params{data} }) || ! scalar(@{ $configs })) {
471     $main::lxdebug->leave_sub();
472     return;
473   }
474
475   # allow sub_module to be a coderef or a fixed value
476   if (ref $params{sub_module} ne 'CODE') {
477     my $sub_module = "$params{sub_module}";
478     $params{sub_module} = sub { $sub_module };
479   }
480
481   my %cfg_map   = map { $_->{id} => $_ } @{ $configs };
482   my @cfg_ids   = keys %cfg_map;
483
484   my $query     =
485     qq|SELECT text_value, timestamp_value, timestamp_value::date AS date_value, number_value, bool_value, config_id
486        FROM custom_variables
487        WHERE (config_id IN (| . join(', ', ('?') x scalar(@cfg_ids)) . qq|))
488          AND (trans_id = ?)
489          AND (sub_module = ?)|;
490   my $sth       = prepare_query($form, $dbh, $query);
491
492   foreach my $row (@{ $params{data} }) {
493     do_statement($form, $sth, $query, @cfg_ids, conv_i($row->{$params{trans_id_field}}), $params{sub_module}->($row));
494
495     while (my $ref = $sth->fetchrow_hashref()) {
496       my $cfg = $cfg_map{$ref->{config_id}};
497
498       $row->{"cvar_$cfg->{name}"} =
499           $cfg->{type} eq 'date'      ? $ref->{date_value}
500         : $cfg->{type} eq 'timestamp' ? $ref->{timestamp_value}
501         : $cfg->{type} eq 'number'    ? $form->format_amount($myconfig, $ref->{number_value} * 1, $cfg->{precision})
502         : $cfg->{type} eq 'customer'  ? (SL::DB::Manager::Customer->find_by(id => 1*$ref->{number_value}) || SL::DB::Customer->new)->name
503         : $cfg->{type} eq 'vendor'    ? (SL::DB::Manager::Vendor->find_by(id => 1*$ref->{number_value})   || SL::DB::Vendor->new)->name
504         : $cfg->{type} eq 'part'      ? (SL::DB::Manager::Part->find_by(id => 1*$ref->{number_value})     || SL::DB::Part->new)->partnumber
505         : $cfg->{type} eq 'bool'      ? ($ref->{bool_value} ? $locale->text('Yes') : $locale->text('No'))
506         :                               $ref->{text_value};
507     }
508   }
509
510   $sth->finish();
511
512   $main::lxdebug->leave_sub();
513 }
514
515 sub get_field_format_list {
516   $main::lxdebug->enter_sub();
517
518   my $self          = shift;
519   my %params        = @_;
520
521   Common::check_params(\%params, qw(module));
522
523   my $myconfig      = \%main::myconfig;
524   my $form          = $main::form;
525
526   my $dbh           = $params{dbh} || $form->get_standard_dbh($myconfig);
527
528   my $configs       = $self->get_configs(%params);
529
530   my $date_fields   = [];
531   my $number_fields = {};
532
533   foreach my $config (@{ $configs }) {
534     my $name = "$params{prefix}cvar_$config->{name}";
535
536     if ($config->{type} eq 'date') {
537       push @{ $date_fields }, $name;
538
539     } elsif ($config->{type} eq 'number') {
540       $number_fields->{$config->{precision}} ||= [];
541       push @{ $number_fields->{$config->{precision}} }, $name;
542     }
543   }
544
545   $main::lxdebug->leave_sub();
546
547   return ($date_fields, $number_fields);
548 }
549
550 sub save_custom_variables_validity {
551   $main::lxdebug->enter_sub();
552
553   my $self     = shift;
554   my %params   = @_;
555
556   Common::check_params(\%params, qw(config_id trans_id validity));
557
558   my $myconfig = \%main::myconfig;
559   my $form     = $main::form;
560
561   my $dbh      = $params{dbh} || $form->get_standard_dbh($myconfig);
562
563   my (@where, @values);
564   add_token(\@where, \@values, col => "config_id", val => $params{config_id}, esc => \&conv_i);
565   add_token(\@where, \@values, col => "trans_id",  val => $params{trans_id},  esc => \&conv_i);
566
567   my $where = scalar @where ? "WHERE " . join ' AND ', @where : '';
568   my $query = qq|DELETE FROM custom_variables_validity $where|;
569
570   do_query($form, $dbh, $query, @values);
571
572   $query  =
573     qq|INSERT INTO custom_variables_validity (config_id, trans_id)
574        VALUES                                (?,         ?       )|;
575   my $sth = prepare_query($form, $dbh, $query);
576
577   unless ($params{validity}) {
578     foreach my $config_id (listify($params{config_id})) {
579       foreach my $trans_id (listify($params{trans_id})) {
580         do_statement($form, $sth, $query, conv_i($config_id), conv_i($trans_id));
581       }
582     }
583   }
584
585   $sth->finish();
586
587   $dbh->commit() unless $params{dbh};
588
589   $main::lxdebug->leave_sub();
590 }
591
592 sub get_custom_variables_validity {
593   $main::lxdebug->enter_sub(2);
594
595   my $self     = shift;
596   my %params   = @_;
597
598   Common::check_params(\%params, qw(config_id trans_id));
599
600   my $myconfig = \%main::myconfig;
601   my $form     = $main::form;
602
603   my $dbh      = $params{dbh} || $form->get_standard_dbh($myconfig);
604
605   my $query    = qq|SELECT id FROM custom_variables_validity WHERE config_id = ? AND trans_id = ? LIMIT 1|;
606
607   my ($invalid) = selectfirst_array_query($form, $dbh, $query, conv_i($params{config_id}), conv_i($params{trans_id}));
608
609   $main::lxdebug->leave_sub(2);
610
611   return !$invalid;
612 }
613
614 sub custom_variables_validity_by_trans_id {
615   $main::lxdebug->enter_sub(2);
616
617   my $self     = shift;
618   my %params   = @_;
619
620   return sub { 0 } unless $params{trans_id};
621
622   my $myconfig = \%main::myconfig;
623   my $form     = $main::form;
624
625   my $dbh      = $params{dbh} || $form->get_standard_dbh($myconfig);
626
627   my $query    = qq|SELECT DISTINCT config_id FROM custom_variables_validity WHERE trans_id = ?|;
628
629   my %invalids = map { +($_->{config_id} => 1) } selectall_hashref_query($form, $dbh, $query, $params{trans_id});
630
631   $main::lxdebug->leave_sub(2);
632
633   return sub { !$invalids{+shift} };
634 }
635
636 sub parse {
637   my ($self, $value, $config) = @_;
638
639   return $::form->parse_amount(\%::myconfig, $value)          if $config->{type} eq 'number';
640   return DateTime->from_lxoffice($value)                      if $config->{type} eq 'date';
641   return !ref $value ? SL::DB::Manager::Customer->find_by(id => $value * 1) : $value  if $config->{type} eq 'customer';
642   return !ref $value ? SL::DB::Manager::Vendor->find_by(id => $value * 1)   : $value  if $config->{type} eq 'vendor';
643   return !ref $value ? SL::DB::Manager::Part->find_by(id => $value * 1)     : $value  if $config->{type} eq 'part';
644   return $value;
645 }
646
647 sub format_to_template {
648   my ($self, $value, $config) = @_;
649   # stupid template expects everything formated. except objects
650   # do not use outside of print routines for legacy templates
651
652   return $::form->format_amount(\%::myconfig, $value) if $config->{type} eq 'number';
653   return $value->to_lxoffice if $config->{type} eq 'date' && blessed $value && $value->can('to_lxoffice');
654   return $value;
655 }
656
657 1;
658
659 __END__
660
661 =head1 NAME
662
663 SL::CVar.pm - Custom Variables module
664
665 =head1 SYNOPSIS
666
667   # dealing with configs
668
669   my $all_configs = CVar->get_configs()
670
671   # dealing with custom vars
672
673   CVar->get_custom_variables(module => 'ic')
674
675 =head2 VALIDITY
676
677 Suppose the following scenario:
678
679 You have a lot of parts in your database, and a set of properties cofigured. Now not every part has every of these properties, some combinations will just make no sense. In order to clean up your inputs a bit, you want to mark certain combinations as invalid, blocking them from modification and possibly display.
680
681 Validity is assumed. If you modify validity, you actually save B<invalidity>.
682 Invalidity is saved as a function of config_id, and the trans_id
683
684 In the naive way, disable an attribute for a specific id (simple)
685
686 =cut