Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 9dc87ef7

Von Moritz Bunkus vor fast 11 Jahren hinzugefügt

  • ID 9dc87ef78822b92f0e8271ec733048fbec6ce4d5
  • Vorgänger 1bc764da
  • Nachfolger 1cc2d84b

CT.pm: nicht mehr benötigten Code entfernt

Durch Umstellung auf Controller und Rose-Models wird ein Großteil von
CT.pm nicht mehr benötigt.

Unterschiede anzeigen:

SL/CT.pm
37 37

  
38 38
package CT;
39 39

  
40
use Data::Dumper;
41

  
42 40
use SL::Common;
43 41
use SL::CVar;
44 42
use SL::DBUtils;
45
use SL::DB::Default;
46
use SL::FU;
47
use SL::Notes;
48
use SL::TransNumber;
49 43

  
50 44
use strict;
51 45

  
52
sub get_tuple {
53
  $main::lxdebug->enter_sub();
54

  
55
  my ( $self, $myconfig, $form ) = @_;
56

  
57
  my $cv = $form->{db} eq "customer" ? "customer" : "vendor";
58

  
59
  my $dbh   = $form->dbconnect($myconfig);
60
  my $query =
61
    qq|SELECT ct.*, b.id AS business, cp.* | .
62
    qq|FROM $cv ct | .
63
    qq|LEFT JOIN business b ON (ct.business_id = b.id) | .
64
    qq|LEFT JOIN contacts cp ON (ct.id = cp.cp_cv_id) | .
65
    qq|WHERE (ct.id = ?) | .
66
    qq|ORDER BY cp.cp_id LIMIT 1|;
67
  my $sth = prepare_execute_query($form, $dbh, $query, $form->{id});
68

  
69
  my $ref = $sth->fetchrow_hashref("NAME_lc");
70

  
71
  map { $form->{$_} = $ref->{$_} } keys %$ref;
72
  $sth->finish;
73

  
74
  #get name of currency instead of id:
75
  $query = qq|SELECT name AS curr FROM currencies WHERE id=?|;
76
  ($form->{curr}) = selectrow_query($form, $dbh, $query, conv_i($form->{currency_id}));
77

  
78
  if ( $form->{salesman_id} ) {
79
    my $query =
80
      qq|SELECT ct.name AS salesman | .
81
      qq|FROM $cv ct | .
82
      qq|WHERE ct.id = ?|;
83
    ($form->{salesman}) =
84
      selectrow_query($form, $dbh, $query, $form->{salesman_id});
85
  }
86

  
87
  my ($employee_id) = selectrow_query($form, $dbh, qq|SELECT id FROM employee WHERE login = ?|, $form->{login});
88
  $query =
89
    qq|SELECT n.*, n.itime::DATE AS created_on,
90
         e.name AS created_by_name, e.login AS created_by_login
91
       FROM notes n
92
       LEFT JOIN employee e ON (n.created_by = e.id)
93
       WHERE (n.trans_id = ?) AND (n.trans_module = 'ct')|;
94
  $form->{NOTES} = selectall_hashref_query($form, $dbh, $query, conv_i($form->{id}));
95

  
96
  $query =
97
    qq|SELECT fu.follow_up_date, fu.done AS follow_up_done, e.name AS created_for_name, e.name AS created_for_login
98
       FROM follow_ups fu
99
       LEFT JOIN employee e ON (fu.created_for_user = e.id)
100
       WHERE (fu.note_id = ?)
101
         AND NOT COALESCE(fu.done, FALSE)
102
         AND (   (fu.created_by = ?)
103
              OR (fu.created_by IN (SELECT DISTINCT what FROM follow_up_access WHERE who = ?)))|;
104
  $sth = prepare_query($form, $dbh, $query);
105

  
106
  foreach my $note (@{ $form->{NOTES} }) {
107
    do_statement($form, $sth, $query, conv_i($note->{id}), conv_i($note->{created_by}), conv_i($employee_id));
108
    $ref = $sth->fetchrow_hashref();
109

  
110
    map { $note->{$_} = $ref->{$_} } keys %{ $ref } if ($ref);
111
  }
112

  
113
  $sth->finish();
114

  
115
  if ($form->{edit_note_id}) {
116
    $query =
117
      qq|SELECT n.id AS NOTE_id, n.subject AS NOTE_subject, n.body AS NOTE_body,
118
           fu.id AS FU_id, fu.follow_up_date AS FU_date, fu.done AS FU_done, fu.created_for_user AS FU_created_for_user
119
         FROM notes n
120
         LEFT JOIN follow_ups fu ON ((n.id = fu.note_id) AND NOT COALESCE(fu.done, FALSE))
121
         WHERE n.id = ?|;
122
    $ref = selectfirst_hashref_query($form, $dbh, $query, conv_i($form->{edit_note_id}));
123

  
124
    if ($ref) {
125
      foreach my $key (keys %{ $ref }) {
126
        my $new_key       =  $key;
127
        $new_key          =~ s/^([^_]+)/\U$1\E/;
128
        $form->{$new_key} =  $ref->{$key};
129
      }
130
    }
131
  }
132

  
133
  # check if it is orphaned
134
  my $arap      = ( $form->{db} eq 'customer' ) ? "ar" : "ap";
135
  my $num_args  = 2;
136
  my $makemodel = '';
137
  if ($form->{db} eq 'vendor') {
138
    $makemodel = qq| UNION SELECT 1 FROM makemodel mm WHERE mm.make = ?|;
139
    $num_args++;
140
  }
141

  
142
  $query =
143
    qq|SELECT a.id | .
144
    qq|FROM $arap a | .
145
    qq|JOIN $cv ct ON (a.${cv}_id = ct.id) | .
146
    qq|WHERE ct.id = ? | .
147
    qq|UNION | .
148
    qq|SELECT a.id | .
149
    qq|FROM oe a | .
150
    qq|JOIN $cv ct ON (a.${cv}_id = ct.id) | .
151
    qq|WHERE ct.id = ?|
152
    . $makemodel;
153
  my ($dummy) = selectrow_query($form, $dbh, $query, (conv_i($form->{id})) x $num_args);
154

  
155
  $form->{status} = "orphaned" unless ($dummy);
156

  
157
  $dbh->disconnect;
158

  
159
  $main::lxdebug->leave_sub();
160
}
161

  
162
sub populate_drop_down_boxes {
163
  $main::lxdebug->enter_sub();
164

  
165
  my ($self, $myconfig, $form, $provided_dbh) = @_;
166
  my $query;
167

  
168
  my $dbh = $provided_dbh ? $provided_dbh : $form->dbconnect($myconfig);
169

  
170
  # get business types
171
  $query = qq|SELECT id, description FROM business ORDER BY id|;
172
  $form->{all_business} = selectall_hashref_query($form, $dbh, $query);
173

  
174
  # get shipto address
175
  $query =
176
    qq|SELECT shipto_id, shiptoname, shiptodepartment_1, shiptostreet, shiptocity
177
       FROM shipto
178
       WHERE (trans_id = ?) AND (module = 'CT')|;
179
  $form->{SHIPTO} = selectall_hashref_query($form, $dbh, $query, $form->{id});
180

  
181
  # get contacts
182
  $query  = qq|SELECT cp_id, cp_name, cp_givenname FROM contacts WHERE cp_cv_id = ? ORDER BY cp_name|;
183
  $form->{CONTACTS} = selectall_hashref_query($form, $dbh, $query, $form->{id});
184

  
185
  # get languages
186
  $query = qq|SELECT id, description FROM language ORDER BY id|;
187
  $form->{languages} = selectall_hashref_query($form, $dbh, $query);
188

  
189
  # get payment terms
190
  $query = qq|SELECT id, description FROM payment_terms ORDER BY sortkey|;
191
  $form->{payment_terms} = selectall_hashref_query($form, $dbh, $query);
192

  
193
  $dbh->disconnect() unless ($provided_dbh);
194

  
195
  $main::lxdebug->leave_sub();
196
}
197

  
198
sub query_titles_and_greetings {
199
  $main::lxdebug->enter_sub();
200

  
201
  my ( $self, $myconfig, $form ) = @_;
202
  my ( %tmp,  $ref, $query );
203

  
204
  my $dbh = $form->dbconnect($myconfig);
205

  
206
  $query =
207
    qq|SELECT DISTINCT(greeting) | .
208
    qq|FROM customer | .
209
    qq|WHERE greeting ~ '[a-zA-Z]' | .
210
    qq|UNION | .
211
    qq|SELECT DISTINCT(greeting) | .
212
    qq|FROM vendor | .
213
    qq|WHERE greeting ~ '[a-zA-Z]' | .
214
    qq|ORDER BY greeting|;
215

  
216
  map({ $tmp{$_} = 1; } selectall_array_query($form, $dbh, $query));
217
  $form->{COMPANY_GREETINGS} = [ sort(keys(%tmp)) ];
218

  
219
  $query =
220
    qq|SELECT DISTINCT(cp_title) | .
221
    qq|FROM contacts | .
222
    qq|WHERE cp_title ~ '[a-zA-Z]'|;
223
  $form->{TITLES} = [ selectall_array_query($form, $dbh, $query) ];
224

  
225
  $query =
226
    qq|SELECT DISTINCT(cp_abteilung) | .
227
    qq|FROM contacts | .
228
    qq|WHERE cp_abteilung ~ '[a-zA-Z]'|;
229
  $form->{DEPARTMENT} = [ selectall_array_query($form, $dbh, $query) ];
230

  
231
  $dbh->disconnect();
232
  $main::lxdebug->leave_sub();
233
}
234

  
235
sub save_customer {
236
  $main::lxdebug->enter_sub();
237

  
238
  my ( $self, $myconfig, $form ) = @_;
239

  
240
  # set pricegroup to default
241
  $form->{klass} = 0 unless ($form->{klass});
242

  
243
  # connect to database
244
  my $dbh = $form->get_standard_dbh;
245

  
246
  map( {
247
    $form->{"cp_${_}"} = $form->{"selected_cp_${_}"}
248
    if ( $form->{"selected_cp_${_}"} );
249
       } qw(title greeting abteilung) );
250
  $form->{"greeting"} = $form->{"selected_company_greeting"}
251
  if ( $form->{"selected_company_greeting"} );
252

  
253
  # assign value discount, terms, creditlimit
254
  $form->{discount} = $form->parse_amount( $myconfig, $form->{discount} );
255
  $form->{discount} /= 100;
256
  $form->{creditlimit} = $form->parse_amount( $myconfig, $form->{creditlimit} );
257

  
258
  my ( $query, $sth, $f_id );
259

  
260
  if ( $form->{id} ) {
261
    $query = qq|SELECT id FROM customer WHERE customernumber = ?|;
262
    ($f_id) = selectrow_query($form, $dbh, $query, $form->{customernumber});
263

  
264
    if (($f_id ne $form->{id}) && ($f_id ne "")) {
265
      $main::lxdebug->leave_sub();
266
      return 3;
267
    }
268

  
269
  } else {
270
    my $customernumber      = SL::TransNumber->new(type        => 'customer',
271
                                                   dbh         => $dbh,
272
                                                   number      => $form->{customernumber},
273
                                                   business_id => $form->{business},
274
                                                   save        => 1);
275
    $form->{customernumber} = $customernumber->create_unique unless $customernumber->is_unique;
276

  
277
    $query = qq|SELECT nextval('id')|;
278
    ($form->{id}) = selectrow_query($form, $dbh, $query);
279

  
280
    $query = qq|INSERT INTO customer (id, name, currency_id) VALUES (?, '', (SELECT currency_id FROM defaults))|;
281
    do_query($form, $dbh, $query, $form->{id});
282
  }
283

  
284
  $query = qq|UPDATE customer SET | .
285
    qq|customernumber = ?, | .
286
    qq|name = ?, | .
287
    qq|greeting = ?, | .
288
    qq|department_1 = ?, | .
289
    qq|department_2 = ?, | .
290
    qq|street = ?, | .
291
    qq|zipcode = ?, | .
292
    qq|city = ?, | .
293
    qq|country = ?, | .
294
    qq|homepage = ?, | .
295
    qq|contact = ?, | .
296
    qq|phone = ?, | .
297
    qq|fax = ?, | .
298
    qq|email = ?, | .
299
    qq|cc = ?, | .
300
    qq|bcc = ?, | .
301
    qq|notes = ?, | .
302
    qq|discount = ?, | .
303
    qq|creditlimit = ?, | .
304
    qq|terms = ?, | .
305
    qq|business_id = ?, | .
306
    qq|taxnumber = ?, | .
307
    qq|language = ?, | .
308
    qq|account_number = ?, | .
309
    qq|bank_code = ?, | .
310
    qq|bank = ?, | .
311
    qq|iban = ?, | .
312
    qq|bic = ?, | .
313
    qq|obsolete = ?, | .
314
    qq|direct_debit = ?, | .
315
    qq|ustid = ?, | .
316
    qq|username = ?, | .
317
    qq|salesman_id = ?, | .
318
    qq|language_id = ?, | .
319
    qq|payment_id = ?, | .
320
    qq|taxzone_id = ?, | .
321
    qq|user_password = ?, | .
322
    qq|c_vendor_id = ?, | .
323
    qq|klass = ?, | .
324
    qq|currency_id = (SELECT id FROM currencies WHERE name = ?), | .
325
    qq|taxincluded_checked = ?, | .
326
    qq|delivery_term_id = ? | .
327
    qq|WHERE id = ?|;
328
  my @values = (
329
    $form->{customernumber},
330
    $form->{name},
331
    $form->{greeting},
332
    $form->{department_1},
333
    $form->{department_2},
334
    $form->{street},
335
    $form->{zipcode},
336
    $form->{city},
337
    $form->{country},
338
    $form->{homepage},
339
    $form->{contact},
340
    $form->{phone},
341
    $form->{fax},
342
    $form->{email},
343
    $form->{cc},
344
    $form->{bcc},
345
    $form->{notes},
346
    $form->{discount},
347
    $form->{creditlimit},
348
    conv_i($form->{terms}),
349
    conv_i($form->{business}),
350
    $form->{taxnumber},
351
    $form->{language},
352
    $form->{account_number},
353
    $form->{bank_code},
354
    $form->{bank},
355
    $form->{iban},
356
    $form->{bic},
357
    $form->{obsolete} ? 't' : 'f',
358
    $form->{direct_debit} ? 't' : 'f',
359
    $form->{ustid},
360
    $form->{username},
361
    conv_i($form->{salesman_id}),
362
    conv_i($form->{language_id}),
363
    conv_i($form->{payment_id}),
364
    conv_i($form->{taxzone_id}, 0),
365
    $form->{user_password},
366
    $form->{c_vendor_id},
367
    conv_i($form->{klass}),
368
    $form->{currency},
369
    $form->{taxincluded_checked} ne '' ? $form->{taxincluded_checked} : undef,
370
    conv_i($form->{delivery_term_id}),
371
    $form->{id}
372
    );
373
  do_query( $form, $dbh, $query, @values );
374

  
375
  $form->{cp_id} = $self->_save_contact($form, $dbh);
376

  
377
  # add shipto
378
  $form->add_shipto( $dbh, $form->{id}, "CT" );
379

  
380
  $self->_save_note('dbh' => $dbh);
381
  $self->_delete_selected_notes('dbh' => $dbh);
382

  
383
  CVar->save_custom_variables('dbh'       => $dbh,
384
                              'module'    => 'CT',
385
                              'trans_id'  => $form->{id},
386
                              'variables' => $form,
387
                              'always_valid' => 1);
388
  if ($form->{cp_id}) {
389
    CVar->save_custom_variables('dbh'       => $dbh,
390
                                'module'    => 'Contacts',
391
                                'trans_id'  => $form->{cp_id},
392
                                'variables' => $form,
393
                                'name_prefix'  => 'cp',
394
                                'always_valid' => 1);
395
  }
396

  
397
  my $rc = $dbh->commit();
398

  
399
  $main::lxdebug->leave_sub();
400
  return $rc;
401
}
402

  
403
sub save_vendor {
404
  $main::lxdebug->enter_sub();
405

  
406
  my ( $self, $myconfig, $form ) = @_;
407

  
408
  $form->{taxzone_id} *= 1;
409
  # connect to database
410
  my $dbh = $form->get_standard_dbh;
411

  
412
  map( {
413
    $form->{"cp_${_}"} = $form->{"selected_cp_${_}"}
414
    if ( $form->{"selected_cp_${_}"} );
415
       } qw(title greeting abteilung) );
416
  $form->{"greeting"} = $form->{"selected_company_greeting"}
417
  if ( $form->{"selected_company_greeting"} );
418

  
419
  $form->{discount} = $form->parse_amount( $myconfig, $form->{discount} );
420
  $form->{discount} /= 100;
421
  $form->{creditlimit} = $form->parse_amount( $myconfig, $form->{creditlimit} );
422

  
423
  my $query;
424

  
425
  if (!$form->{id}) {
426
    $query = qq|SELECT nextval('id')|;
427
    ($form->{id}) = selectrow_query($form, $dbh, $query);
428

  
429
    $query = qq|INSERT INTO vendor (id, name, currency_id) VALUES (?, '', (SELECT currency_id FROM defaults))|;
430
    do_query($form, $dbh, $query, $form->{id});
431

  
432
    my $vendornumber      = SL::TransNumber->new(type   => 'vendor',
433
                                                 dbh    => $dbh,
434
                                                 number => $form->{vendornumber},
435
                                                 save   => 1);
436
    $form->{vendornumber} = $vendornumber->create_unique unless $vendornumber->is_unique;
437
  }
438

  
439
  $query =
440
    qq|UPDATE vendor SET | .
441
    qq|  vendornumber = ?, | .
442
    qq|  name = ?, | .
443
    qq|  greeting = ?, | .
444
    qq|  department_1 = ?, | .
445
    qq|  department_2 = ?, | .
446
    qq|  street = ?, | .
447
    qq|  zipcode = ?, | .
448
    qq|  city = ?, | .
449
    qq|  country = ?, | .
450
    qq|  homepage = ?, | .
451
    qq|  contact = ?, | .
452
    qq|  phone = ?, | .
453
    qq|  fax = ?, | .
454
    qq|  email = ?, | .
455
    qq|  cc = ?, | .
456
    qq|  bcc = ?, | .
457
    qq|  notes = ?, | .
458
    qq|  terms = ?, | .
459
    qq|  discount = ?, | .
460
    qq|  creditlimit = ?, | .
461
    qq|  business_id = ?, | .
462
    qq|  taxnumber = ?, | .
463
    qq|  language = ?, | .
464
    qq|  account_number = ?, | .
465
    qq|  bank_code = ?, | .
466
    qq|  bank = ?, | .
467
    qq|  iban = ?, | .
468
    qq|  bic = ?, | .
469
    qq|  obsolete = ?, | .
470
    qq|  direct_debit = ?, | .
471
    qq|  ustid = ?, | .
472
    qq|  payment_id = ?, | .
473
    qq|  taxzone_id = ?, | .
474
    qq|  language_id = ?, | .
475
    qq|  username = ?, | .
476
    qq|  user_password = ?, | .
477
    qq|  v_customer_id = ?, | .
478
    qq|  currency_id = (SELECT id FROM currencies WHERE name = ?), | .
479
    qq|  delivery_term_id = ? | .
480
    qq|WHERE id = ?|;
481
  my @values = (
482
    $form->{vendornumber},
483
    $form->{name},
484
    $form->{greeting},
485
    $form->{department_1},
486
    $form->{department_2},
487
    $form->{street},
488
    $form->{zipcode},
489
    $form->{city},
490
    $form->{country},
491
    $form->{homepage},
492
    $form->{contact},
493
    $form->{phone},
494
    $form->{fax},
495
    $form->{email},
496
    $form->{cc},
497
    $form->{bcc},
498
    $form->{notes},
499
    conv_i($form->{terms}),
500
    $form->{discount},
501
    $form->{creditlimit},
502
    conv_i($form->{business}),
503
    $form->{taxnumber},
504
    $form->{language},
505
    $form->{account_number},
506
    $form->{bank_code},
507
    $form->{bank},
508
    $form->{iban},
509
    $form->{bic},
510
    $form->{obsolete} ? 't' : 'f',
511
    $form->{direct_debit} ? 't' : 'f',
512
    $form->{ustid},
513
    conv_i($form->{payment_id}),
514
    conv_i($form->{taxzone_id}, 0),
515
    conv_i( $form->{language_id}),
516
    $form->{username},
517
    $form->{user_password},
518
    $form->{v_customer_id},
519
    $form->{currency},
520
    conv_i($form->{delivery_term_id}),
521
    $form->{id}
522
    );
523
  do_query($form, $dbh, $query, @values);
524

  
525
  $form->{cp_id} = $self->_save_contact($form, $dbh);
526

  
527
  # add shipto
528
  $form->add_shipto( $dbh, $form->{id}, "CT" );
529

  
530
  $self->_save_note('dbh' => $dbh);
531
  $self->_delete_selected_notes('dbh' => $dbh);
532

  
533
  CVar->save_custom_variables('dbh'       => $dbh,
534
                              'module'    => 'CT',
535
                              'trans_id'  => $form->{id},
536
                              'variables' => $form,
537
                              'always_valid' => 1);
538
  if ($form->{cp_id}) {
539
    CVar->save_custom_variables('dbh'       => $dbh,
540
                                'module'    => 'Contacts',
541
                                'trans_id'  => $form->{cp_id},
542
                                'variables' => $form,
543
                                'name_prefix'  => 'cp',
544
                                'always_valid' => 1);
545
  }
546

  
547
  my $rc = $dbh->commit();
548

  
549
  $main::lxdebug->leave_sub();
550
  return $rc;
551
}
552

  
553
sub _save_contact {
554
  my ($self, $form, $dbh) = @_;
555

  
556
  return undef unless $form->{cp_id} || $form->{cp_name} || $form->{cp_givenname};
557

  
558
  my @columns = qw(cp_title cp_givenname cp_name cp_email cp_phone1 cp_phone2 cp_abteilung cp_fax
559
                   cp_mobile1 cp_mobile2 cp_satphone cp_satfax cp_project cp_privatphone cp_privatemail cp_birthday cp_gender
560
                   cp_street cp_zipcode cp_city cp_position);
561
  my @values  = map(
562
    {
563
      if ( $_ eq 'cp_gender' ) {
564
        $form->{$_} eq 'f' ? 'f' : 'm';
565
      } elsif ( $_ eq 'cp_birthday' && $form->{cp_birthday} eq '' ) {
566
        undef;
567
      } else {
568
        $form->{$_};
569
      }
570
    }
571
    @columns
572
  );
573

  
574
  my ($query, $cp_id);
575
  if ($form->{cp_id}) {
576
    $query = qq|UPDATE contacts SET | . join(', ', map { "${_} = ?" } @columns) . qq| WHERE cp_id = ?|;
577
    push @values, $form->{cp_id};
578
    $cp_id = $form->{cp_id};
579

  
580
  } else {
581
    ($cp_id) = selectrow_query($form, $dbh, qq|SELECT nextval('id')|);
582

  
583
    $query = qq|INSERT INTO contacts (| . join(', ', @columns, 'cp_cv_id', 'cp_id') . qq|) VALUES (| . join(', ', ('?') x (2 + scalar @columns)) . qq|)|;
584
    push @values, $form->{id}, $cp_id;
585
  }
586

  
587
  do_query($form, $dbh, $query, @values);
588

  
589
  return $cp_id;
590
}
591

  
592
sub delete {
593
  $main::lxdebug->enter_sub();
594

  
595
  my ( $self, $myconfig, $form ) = @_;
596
  # connect to database
597
  my $dbh = $form->dbconnect($myconfig);
598

  
599
  # delete vendor
600
  my $cv = $form->{db} eq "customer" ? "customer" : "vendor";
601
  my $query = qq|DELETE FROM $cv WHERE id = ?|;
602
  do_query($form, $dbh, $query, $form->{id});
603

  
604
  $dbh->disconnect;
605

  
606
  $main::lxdebug->leave_sub();
607
}
608

  
609 46
sub search {
610 47
  $main::lxdebug->enter_sub();
611 48

  
......
855 292
  $main::lxdebug->leave_sub();
856 293
}
857 294

  
858
sub get_shipto {
859
  $main::lxdebug->enter_sub();
860

  
861
  my ( $self, $myconfig, $form ) = @_;
862
  my $dbh   = $form->dbconnect($myconfig);
863
  my $query = qq|SELECT * FROM shipto WHERE shipto_id = ?|;
864
  my $sth = prepare_execute_query($form, $dbh, $query, $form->{shipto_id});
865

  
866
  my $ref = $sth->fetchrow_hashref("NAME_lc");
867

  
868
  map { $form->{$_} = $ref->{$_} } keys %$ref;
869

  
870
  $query = qq|SELECT COUNT(shipto_id) AS used FROM (
871
    SELECT shipto_id FROM oe UNION
872
    SELECT shipto_id FROM ar UNION
873
    SELECT shipto_id FROM delivery_orders
874
  ) AS stid WHERE shipto_id = ? OR ? = 0|;
875
  ($form->{shiptoused}) = selectfirst_array_query($form, $dbh, $query, ($form->{shipto_id})x2);
876

  
877
  $sth->finish;
878
  $dbh->disconnect;
879

  
880
  $main::lxdebug->leave_sub();
881
}
882

  
883
sub get_delivery {
884
  $main::lxdebug->enter_sub();
885

  
886
  my ( $self, $myconfig, $form ) = @_;
887
  my $dbh = $form->dbconnect($myconfig);
888

  
889
  my $arap = $form->{db} eq "vendor" ? "ap" : "ar";
890
  my $db = $form->{db} eq "customer" ? "customer" : "vendor";
891
  my $qty_sign = $form->{db} eq 'vendor' ? ' * -1 AS qty' : '';
892

  
893
  my $where = " WHERE 1=1 ";
894
  my @values;
895

  
896
  if ($form->{shipto_id} && ($arap eq "ar")) {
897
    $where .= "AND ${arap}.shipto_id = ?";
898
    push(@values, $form->{shipto_id});
899
  } else {
900
    $where .= "AND ${arap}.${db}_id = ?";
901
    push(@values, $form->{id});
902
  }
903

  
904
  if ($form->{from}) {
905
    $where .= "AND ${arap}.transdate >= ?";
906
    push(@values, conv_date($form->{from}));
907
  }
908
  if ($form->{to}) {
909
    $where .= "AND ${arap}.transdate <= ?";
910
    push(@values, conv_date($form->{to}));
911
  }
912
  my $query =
913
    qq|SELECT s.shiptoname, i.qty $qty_sign, | .
914
    qq|  ${arap}.id, ${arap}.transdate, ${arap}.invnumber, ${arap}.ordnumber, | .
915
    qq|  i.description, i.unit, i.sellprice, | .
916
    qq|  oe.id AS oe_id, invoice | .
917
    qq|FROM $arap | .
918
    qq|LEFT JOIN shipto s ON | .
919
    ($arap eq "ar"
920
     ? qq|(ar.shipto_id = s.shipto_id) |
921
     : qq|(ap.id = s.trans_id) |) .
922
    qq|LEFT JOIN invoice i ON (${arap}.id = i.trans_id) | .
923
    qq|LEFT join parts p ON (p.id = i.parts_id) | .
924
    qq|LEFT JOIN oe ON (oe.ordnumber = ${arap}.ordnumber AND NOT ${arap}.ordnumber = '') | .
925
    $where .
926
    qq|ORDER BY ${arap}.transdate DESC LIMIT 15|;
927

  
928
  $form->{DELIVERY} = selectall_hashref_query($form, $dbh, $query, @values);
929

  
930
  $dbh->disconnect;
931

  
932
  $main::lxdebug->leave_sub();
933
}
934

  
935
sub _save_note {
936
  $main::lxdebug->enter_sub();
937

  
938
  my $self   = shift;
939
  my %params = @_;
940

  
941
  my $form   = $main::form;
942

  
943
  Common::check_params(\%params, 'dbh');
944

  
945
  if (!$form->{NOTE_subject}) {
946
    $main::lxdebug->leave_sub();
947
    return;
948
  }
949

  
950
  my $dbh = $params{dbh};
951

  
952
  my %follow_up;
953
  my %note = (
954
    'id'           => $form->{NOTE_id},
955
    'subject'      => $form->{NOTE_subject},
956
    'body'         => $form->{NOTE_body},
957
    'trans_id'     => $form->{id},
958
    'trans_module' => 'ct',
959
  );
960

  
961
  $note{id} = Notes->save(%note);
962

  
963
  if ($form->{FU_date}) {
964
    %follow_up = (
965
      'id'               => $form->{FU_id},
966
      'note_id'          => $note{id},
967
      'follow_up_date'   => $form->{FU_date},
968
      'created_for_user' => $form->{FU_created_for_user},
969
      'done'             => $form->{FU_done} ? 1 : 0,
970
      'subject'          => $form->{NOTE_subject},
971
      'body'             => $form->{NOTE_body},
972
      'LINKS'            => [
973
        {
974
          'trans_id'     => $form->{id},
975
          'trans_type'   => $form->{db} eq 'customer' ? 'customer' : 'vendor',
976
          'trans_info'   => $form->{name},
977
        },
978
      ],
979
    );
980

  
981
    $follow_up{id} = FU->save(%follow_up);
982

  
983
  } elsif ($form->{FU_id}) {
984
    do_query($form, $dbh, qq|DELETE FROM follow_up_links WHERE follow_up_id = ?|, conv_i($form->{FU_id}));
985
    do_query($form, $dbh, qq|DELETE FROM follow_ups      WHERE id = ?|,           conv_i($form->{FU_id}));
986
  }
987

  
988
  delete @{$form}{grep { /^NOTE_|^FU_/ } keys %{ $form }};
989

  
990
  $main::lxdebug->leave_sub();
991
}
992

  
993
sub _delete_selected_notes {
994
  $main::lxdebug->enter_sub();
995

  
996
  my $self   = shift;
997
  my %params = @_;
998

  
999
  Common::check_params(\%params, 'dbh');
1000

  
1001
  my $form = $main::form;
1002
  my $dbh  = $params{dbh};
1003

  
1004
  foreach my $i (1 .. $form->{NOTES_rowcount}) {
1005
    next unless ($form->{"NOTE_delete_$i"} && $form->{"NOTE_id_$i"});
1006

  
1007
    Notes->delete('dbh' => $params{dbh},
1008
                  'id'  => $form->{"NOTE_id_$i"});
1009
  }
1010

  
1011
  $main::lxdebug->leave_sub();
1012
}
1013

  
1014
# TODO: remove in 2.7.0 stable
1015
sub delete_shipto {
1016
  $main::lxdebug->enter_sub();
1017

  
1018
  my $self      = shift;
1019
  my $shipto_id = shift;
1020

  
1021
  my $form      = $main::form;
1022
  my %myconfig  = %main::myconfig;
1023
  my $dbh       = $form->get_standard_dbh(\%myconfig);
1024

  
1025
  do_query($form, $dbh, qq|UPDATE shipto SET trans_id = NULL WHERE shipto_id = ?|, $shipto_id);
1026

  
1027
  $dbh->commit();
1028

  
1029
  $main::lxdebug->leave_sub();
1030
}
1031

  
1032
# TODO: remove in 2.7.0 stable
1033
sub delete_contact {
1034
  $main::lxdebug->enter_sub();
1035

  
1036
  my $self      = shift;
1037
  my $cp_id     = shift;
1038

  
1039
  my $form      = $main::form;
1040
  my %myconfig  = %main::myconfig;
1041
  my $dbh       = $form->get_standard_dbh(\%myconfig);
1042

  
1043
  do_query($form, $dbh, qq|UPDATE contacts SET cp_cv_id = NULL WHERE cp_id = ?|, $cp_id);
1044

  
1045
  $dbh->commit();
1046

  
1047
  $main::lxdebug->leave_sub();
1048
}
1049

  
1050 295
sub get_bank_info {
1051 296
  $main::lxdebug->enter_sub();
1052 297

  
......
1080 325
  return $result;
1081 326
}
1082 327

  
1083
sub parse_excel_file {
1084
  $main::lxdebug->enter_sub();
1085

  
1086
  my ($self, $myconfig, $form) = @_;
1087
  my $locale = $main::locale;
1088

  
1089
  my $defaults = SL::DB::Default->get;
1090
  $form->error($::locale->text('No print templates have been created for this client yet. Please do so in the client configuration.')) if !$defaults->templates;
1091
  $form->{templates} = $defaults->templates;
1092

  
1093
  $form->{formname}   = 'sales_quotation';
1094
  $form->{type}   = 'sales_quotation';
1095
  $form->{format} = 'excel';
1096
  $form->{media}  = 'screen';
1097
  $form->{quonumber} = 1;
1098

  
1099

  
1100
  # $form->{"notes"} will be overridden by the customer's/vendor's "notes" field. So save it here.
1101
  $form->{ $form->{"formname"} . "notes" } = $form->{"notes"};
1102

  
1103
  my $inv                  = "quo";
1104
  my $due                  = "req";
1105
  $form->{"${inv}date"} = $form->{transdate};
1106
  $form->{label}        = $locale->text('Quotation');
1107
  my $numberfld            = "sqnumber";
1108
  my $order                = 1;
1109

  
1110
  # assign number
1111
  $form->{what_done} = $form->{formname};
1112

  
1113
  map({ delete($form->{$_}); } grep(/^cp_/, keys(%{ $form })));
1114

  
1115
  my $output_dateformat = $myconfig->{"dateformat"};
1116
  my $output_numberformat = $myconfig->{"numberformat"};
1117
  my $output_longdates = 1;
1118

  
1119
  # map login user variables
1120
  map { $form->{"login_$_"} = $myconfig->{$_} } ("name", "email", "fax", "tel", "company");
1121

  
1122
  # format item dates
1123
  for my $field (qw(transdate_oe deliverydate_oe)) {
1124
    map {
1125
      $form->{$field}[$_] = $locale->date($myconfig, $form->{$field}[$_], 1);
1126
    } 0 .. $#{ $form->{$field} };
1127
  }
1128

  
1129
  if ($form->{shipto_id}) {
1130
    $form->get_shipto($myconfig);
1131
  }
1132

  
1133
  $form->{notes} =~ s/^\s+//g;
1134

  
1135
  delete $form->{printer_command};
1136

  
1137
  $form->get_employee_info($myconfig);
1138

  
1139
  my ($cvar_date_fields, $cvar_number_fields) = CVar->get_field_format_list('module' => 'CT', 'prefix' => 'vc_');
1140

  
1141
  if (scalar @{ $cvar_date_fields }) {
1142
    format_dates($output_dateformat, $output_longdates, @{ $cvar_date_fields });
1143
  }
1144

  
1145
  while (my ($precision, $field_list) = each %{ $cvar_number_fields }) {
1146
    reformat_numbers($output_numberformat, $precision, @{ $field_list });
1147
  }
1148

  
1149
  $form->{excel} = 1;
1150
  my $extension            = 'xls';
1151

  
1152
  $form->{IN}         = "$form->{formname}.${extension}";
1153

  
1154
  delete $form->{OUT};
1155

  
1156
  $form->parse_template($myconfig);
1157

  
1158
  $main::lxdebug->leave_sub();
1159
}
1160

  
1161 328
sub search_contacts {
1162 329
  $::lxdebug->enter_sub;
1163 330

  

Auch abrufbar als: Unified diff