Commit adef431e by 朱继来

调整联营供应商

parent 0dc67711
Showing with 7 additions and 2 deletions
...@@ -152,9 +152,14 @@ ...@@ -152,9 +152,14 @@
@if (strpos($k, '.') !== false) @if (strpos($k, '.') !== false)
<p> <p>
<?php <?php
$sid = explode('.', $k)[1]; $sid = explode('.', $k);
// echo App\Http\Controllers\getSupplierName($sid); // echo App\Http\Controllers\getSupplierName($sid);
echo $sid;
if ($sid[0] == 17) { // 联营供应商
echo $sid[1];
} else {
echo $v['supplier_name'];
}
?> ?>
</p> </p>
@else @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