Kaynağa Gözat

fix ajax dms

ifah
Siti Hajar Ibrahim 5 yıl önce
ebeveyn
işleme
b179f0b15c
1 değiştirilmiş dosya ile 8 ekleme ve 4 silme
  1. 8
    4
      app/Http/Controllers/DS/DealerController.php

+ 8
- 4
app/Http/Controllers/DS/DealerController.php Dosyayı Görüntüle

@@ -274,8 +274,10 @@ class DealerController extends Controller

$address = ''; $name = '';
if($f->type_application == 'R'){
$address = $f->Subscriber->building_name;
$name = $f->Subscriber->name;
if (!empty($f->Subscriber->building_name)){
$address = $f->Subscriber->building_name;
$name = $f->Subscriber->name;
}
}else if($f->type_application == 'B'){
$address = '-';
$name = $f->Subscriber->company_name;
@@ -423,8 +425,10 @@ class DealerController extends Controller

$address = ''; $name = '';
if($f->type_application == 'R'){
$address = $f->Subscriber->building_name;
$name = $f->Subscriber->name;
if (!empty($f->Subscriber->building_name)){
$address = $f->Subscriber->building_name;
$name = $f->Subscriber->name;
}
}else if($f->type_application == 'B'){
$address = '-';
$name = $f->Subscriber->company_name;

Loading…
İptal
Kaydet