浏览代码

edit error dealer claim calculation

ifah
父节点
当前提交
899f98e66b
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3
    3
      app/Http/Controllers/DS/DealerController.php

+ 3
- 3
app/Http/Controllers/DS/DealerController.php 查看文件

@@ -2870,7 +2870,7 @@ class DealerController extends Controller
'name' => $d['name'],
'address' => $d['address'],
'package' => $d['package'],
'retail_price' => 'RM '.$finalprice,
'retail_price' => $d['retail_price'],
'incentives1' => '250%',
'incentives2' => $d['incentives2'],
'total' => 'RM '.$total,
@@ -2896,11 +2896,11 @@ class DealerController extends Controller
}

if(date('d/m/Y', strtotime($d['activation'])) >= '11/8/2020'){
$countAugustR[] = $d;
$countAugustB[] = $d;
}
}else {
if(date('d/m/Y', strtotime($d['activation'])) >= '11/8/2020'){
$countAugustR[] = $d;
$countAugustB[] = $d;
}else {
$combineData[] = $d;
}

正在加载...
取消
保存