Jump to content

Edit History

DariuszMaranda

DariuszMaranda

Efekt uzyskałem po przez dodanie do pliku integracyjnego kilku linijek kodu 

 

    // pobieranie istniejącego klienta
    $sql = "SELECT id_default_group FROM `${dbp}customer` WHERE `email`= '${order['email']}'";
    $result = DB_Query($sql);

    if(DB_NumRows($result) > 0)
    {

           $customer_id_default_group = DB_Result($result, 0);  
     }

        if($customer_id_default_group != 1 && $customer_id_default_group != 2)
             {
                $o['user_comments'] = trim($o['user_comments']) ." - Zamówienie B2B";
              }
        else
              {
                 $o['user_comments'] = trim($o['user_comments']);

               }

DariuszMaranda

DariuszMaranda

Efekt uzyskałem po przez dodanie do pliku integracyjnego kilku linijek kodu 

 

    // pobieranie istniejącego klienta
    $sql = "SELECT id_default_group FROM `${dbp}customer` WHERE `email`= '${order['email']}'";
    $result = DB_Query($sql);

    if(DB_NumRows($result) > 0)
    {

           $customer_id_default_group = DB_Result($result, 0);  
     }

        if($customer_id_default_group != 1 || $customer_id_default_group != 2)
             {
                $o['user_comments'] = trim($o['user_comments']) ." - Zamówienie B2B";
              }
        else
              {
                 $o['user_comments'] = trim($o['user_comments']);

               }

×
×
  • Create New...