Explorar o código

订单导出增加自定义表单内容

evoxwht %!s(int64=2) %!d(string=hai) anos
pai
achega
525be22b79
Modificáronse 1 ficheiros con 5 adicións e 1 borrados
  1. 5 1
      crmeb/app/services/other/export/ExportServices.php

+ 5 - 1
crmeb/app/services/other/export/ExportServices.php

@@ -129,7 +129,11 @@ class ExportServices extends BaseServices
                 }
                 $custom_form = '';
                 foreach ($item['custom_form'] as $custom_form_value) {
-                    $custom_form .= $custom_form_value['title'] . ':' . $custom_form_value['value'] . ';';
+                    if (is_string($custom_form_value['value'])) {
+                        $custom_form .= $custom_form_value['title'] . ':' . $custom_form_value['value'] . ';';
+                    } elseif (is_array($custom_form_value['value'])) {
+                        $custom_form .= $custom_form_value['title'] . ':' . implode(',', $custom_form_value['value']) . ';';
+                    }
                 }
 
                 $goodsName = [];