Commit 5fa1493f by 朱继来

Merge branch 'zjl_adjust_20181026'

parents 3a1520bf adef431e
Showing with 8 additions and 2 deletions
......@@ -152,8 +152,14 @@
@if (strpos($k, '.') !== false)
<p>
<?php
$sid = explode('.', $k)[1];
echo App\Http\Controllers\getSupplierName($sid);
$sid = explode('.', $k);
// echo App\Http\Controllers\getSupplierName($sid);
if ($sid[0] == 17) { // 联营供应商
echo $sid[1];
} else {
echo $v['supplier_name'];
}
?>
</p>
@else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment