1 # This file has been auto-generated only because it didn't exist.
 
   2 # Feel free to modify it at will; it will not be overwritten automatically.
 
   4 package SL::DB::ShopOrder;
 
  10 use SL::DB::MetaSetup::ShopOrder;
 
  11 use SL::DB::Manager::ShopOrder;
 
  12 use SL::DB::PaymentTerm;
 
  13 use SL::DB::Helper::LinkedRecords;
 
  14 use SL::Locale::String qw(t8);
 
  17 __PACKAGE__->meta->add_relationships(
 
  19     class      => 'SL::DB::ShopOrderItem',
 
  20     column_map => { id => 'shop_order_id' },
 
  21     type       => 'one to many',
 
  25 __PACKAGE__->meta->initialize;
 
  27 sub convert_to_sales_order {
 
  28   my ($self, %params) = @_;
 
  30   my $customer  = delete $params{customer};
 
  31   my $employee  = delete $params{employee};
 
  32   my $transdate = delete $params{transdate} // DateTime->today_local;
 
  33   croak "param customer is missing" unless ref($customer) eq 'SL::DB::Customer';
 
  34   croak "param employee is missing" unless ref($employee) eq 'SL::DB::Employee';
 
  36   require SL::DB::Order;
 
  37   require SL::DB::OrderItem;
 
  39   require SL::DB::Shipto;
 
  44     my $part = SL::DB::Manager::Part->find_by(partnumber => $_->partnumber);
 
  47       push @error_report, t8('Part with partnumber: #1 not found', $_->partnumber);
 
  49       my $current_order_item = SL::DB::OrderItem->new(
 
  50         parts_id            => $part->id,
 
  51         description         => $_->description, # description from the shop
 
  52         longdescription     => $part->notes,    # longdescription from parts. TODO locales
 
  54         sellprice           => $_->price,
 
  56         position            => $_->position,
 
  57         active_price_source => $_->active_price_source,
 
  60   }@{ $self->shop_order_items };
 
  62   if(!scalar(@error_report)){
 
  65     if ($self->has_differing_delivery_address) {
 
  66       if(my $address = SL::DB::Manager::Shipto->find_by( shiptoname   => $self->delivery_fullname,
 
  67                                                          shiptostreet => $self->delivery_street,
 
  68                                                          shiptocity   => $self->delivery_city,
 
  70         $shipto_id = $address->{shipto_id};
 
  72         my $deliveryaddress = SL::DB::Shipto->new;
 
  73         $deliveryaddress->assign_attributes(
 
  74           shiptoname         => $self->delivery_fullname,
 
  75           shiptodepartment_1 => $self->delivery_company,
 
  76           shiptodepartment_2 => $self->delivery_department,
 
  77           shiptostreet       => $self->delivery_street,
 
  78           shiptozipcode      => $self->delivery_zipcode,
 
  79           shiptocity         => $self->delivery_city,
 
  80           shiptocountry      => $self->delivery_country,
 
  81           trans_id           => $customer->id,
 
  84         $deliveryaddress->save;
 
  85         $shipto_id = $deliveryaddress->{shipto_id};
 
  89     my $shop = SL::DB::Manager::Shop->find_by(id => $self->shop_id);
 
  90     my $order = SL::DB::Order->new(
 
  91       amount                  => $self->amount,
 
  92       cusordnumber            => $self->shop_ordernumber,
 
  93       customer_id             => $customer->id,
 
  94       shipto_id               => $shipto_id,
 
  95       orderitems              => [ @items ],
 
  96       employee_id             => $employee->id,
 
  97       intnotes                => $customer->notes,
 
  98       salesman_id             => $employee->id,
 
  99       taxincluded             => $self->tax_included,
 
 100       payment_id              => $self->payment_id,
 
 101       taxzone_id              => $customer->taxzone_id,
 
 102       currency_id             => $customer->currency_id,
 
 103       transaction_description => $shop->transaction_description,
 
 104       transdate               => $transdate,
 
 108      my %error_order = (error   => 1,
 
 109                         errors  => [ @error_report ],
 
 111      return \%error_order;
 
 115 sub check_for_existing_customers {
 
 116   my ($self, %params) = @_;
 
 119   my $name             = $self->billing_lastname ne '' ? $self->billing_firstname . " " . $self->billing_lastname : '';
 
 120   my $lastname         = $self->billing_lastname ne '' ? "%" . $self->billing_lastname . "%"                      : '';
 
 121   my $company          = $self->billing_company  ne '' ? "%" . $self->billing_company  . "%"                      : '';
 
 122   my $street           = $self->billing_street   ne '' ?  $self->billing_street                                   : '';
 
 123   my $street_not_fuzzy = $self->billing_street   ne '' ?  "%" . $self->billing_street . "%"                       : '';
 
 124   my $zipcode          = $self->billing_street   ne '' ?  $self->billing_zipcode                                  : '';
 
 125   my $email            = $self->billing_street   ne '' ?  $self->billing_email                                    : '';
 
 127   if(check_trgm($::form->get_standard_dbh())) {
 
 128     # Fuzzysearch for street to find e.g. "Dorfstrasse - Dorfstr. - Dorfstraße"
 
 129     my $fs_query = <<SQL;
 
 134     ( name ILIKE ? OR name ILIKE ? )
 
 139    ( street % ?  AND zipcode ILIKE ?)
 
 141    ( email ILIKE ? OR invoice_mail ILIKE ? )
 
 145     my @values = ($lastname, $company, $self->billing_zipcode, $street, $self->billing_zipcode, $self->billing_email, $self->billing_email);
 
 147     $customers = SL::DB::Manager::Customer->get_objects_from_sql(
 
 152     # If trgm extension is not installed
 
 153     $customers = SL::DB::Manager::Customer->get_all(
 
 157                             or => [ 'name' => { ilike => $lastname },
 
 158                                     'name' => { ilike => $company  },
 
 160                             'zipcode' => { ilike => $zipcode },
 
 163                             and => [ 'street'  => { ilike => $street_not_fuzzy },
 
 164                                      'zipcode' => { ilike => $zipcode },
 
 168                             'email'        => { ilike => $email },
 
 169                             'invoice_mail' => { ilike => $email },
 
 172                  and => [ obsolete => 'F' ]
 
 180 sub check_for_open_invoices {
 
 182     my $open_invoices = SL::DB::Manager::Invoice->get_all_count(
 
 183       query => [customer_id => $self->{kivi_customer_id},
 
 184               paid => {lt_sql => 'amount'},
 
 187   return $open_invoices;
 
 191   my ($self, %params) = @_;
 
 192   my $shop = SL::DB::Manager::Shop->find_by(id => $self->shop_id);
 
 193   my $customer_proposals = $self->check_for_existing_customers;
 
 194   my $name = $self->billing_firstname . " " . $self->billing_lastname;
 
 196   my $default_payment    = SL::DB::Manager::PaymentTerm->get_first();
 
 197   my $payment_id = $default_payment ? $default_payment->id : undef;
 
 198   if(!scalar(@{$customer_proposals})){
 
 199     my %address = ( 'name'                  => $name,
 
 200                     'department_1'          => $self->billing_company,
 
 201                     'department_2'          => $self->billing_department,
 
 202                     'street'                => $self->billing_street,
 
 203                     'zipcode'               => $self->billing_zipcode,
 
 204                     'city'                  => $self->billing_city,
 
 205                     'email'                 => $self->billing_email,
 
 206                     'invoice_mail'          => $self->billing_email,
 
 207                     'country'               => $self->billing_country,
 
 208                     'greeting'              => $self->billing_greeting,
 
 209                     'fax'                   => $self->billing_fax,
 
 210                     'phone'                 => $self->billing_phone,
 
 211                     'ustid'                 => $self->billing_vat,
 
 212                     'taxincluded_checked'   => $shop->pricetype eq "brutto" ? 1 : 0,
 
 213                     'taxincluded'           => $shop->pricetype eq "brutto" ? 1 : 0,
 
 214                     'pricegroup_id'         => (split '\/',$shop->price_source)[0] eq "pricegroup" ?  (split '\/',$shop->price_source)[1] : undef,
 
 215                     'taxzone_id'            => $shop->taxzone_id,
 
 216                     'currency'              => $::instance_conf->get_currency_id,
 
 217                     'payment_id'            => $payment_id,
 
 219     $customer = SL::DB::Customer->new(%address);
 
 222     my $snumbers = "customernumber_" . $customer->customernumber;
 
 223     SL::DB::History->new(
 
 224                       trans_id    => $customer->id,
 
 225                       snumbers    => $snumbers,
 
 226                       employee_id => SL::DB::Manager::Employee->current->id,
 
 228                       what_done   => 'Shopimport',
 
 231   }elsif(scalar(@{$customer_proposals}) == 1){
 
 232     # check if the proposal is the right customer, could be different names under the same address. Depends on how first- and familyname is handled. Here is for customername = companyname or customername = "firstname familyname"
 
 233     $customer = SL::DB::Manager::Customer->find_by( id       => $customer_proposals->[0]->id,
 
 235                                                     email    => $self->billing_email,
 
 236                                                     street   => $self->billing_street,
 
 237                                                     zipcode  => $self->billing_zipcode,
 
 238                                                     city     => $self->billing_city,
 
 242   $customer->update_attributes(invoice_mail => $self->billing_email) if $customer->invoice_mail ne $self->billing_email;
 
 248   my ($self, $other) = @_;
 
 250   return  1 if  $self->transfer_date && !$other->transfer_date;
 
 251   return -1 if !$self->transfer_date &&  $other->transfer_date;
 
 254   $result    = $self->transfer_date <=> $other->transfer_date if $self->transfer_date;
 
 255   return $result || ($self->id <=> $other->id);
 
 258 sub has_differing_delivery_address {
 
 260   ($self->billing_firstname // '') ne ($self->delivery_firstname // '') ||
 
 261   ($self->billing_lastname  // '') ne ($self->delivery_lastname  // '') ||
 
 262   ($self->billing_city      // '') ne ($self->delivery_city      // '') ||
 
 263   ($self->billing_street    // '') ne ($self->delivery_street    // '')
 
 266 sub delivery_fullname {
 
 267   ($_[0]->delivery_firstname // '') . " " . ($_[0]->delivery_lastname // '')
 
 280 SL::DB::ShopOrder - Model for the 'shop_orders' table
 
 284 This is a standard Rose::DB::Object based model and can be used as one.
 
 290 =item C<convert_to_sales_order>
 
 292 =item C<check_for_existing_customers>
 
 294 Inexact search for possible matches with existing customers in the database.
 
 296 Returns all found customers as an arrayref of SL::DB::Customer objects.
 
 298 =item C<get_customer>
 
 300 returns only one customer from the check_for_existing_customers if the return from it is 0 or 1 customer.
 
 302 When it is 0 get customer creates a new customer object of the shop order billing data and returns it
 
 310 some variables like payments could be better implemented. Transaction description is hardcoded
 
 314 Werner Hahn E<lt>wh@futureworldsearch.netE<gt>
 
 316 G. Richardson E<lt>grichardson@kivitendo-premium.deE<gt>