|
|
@ -1165,6 +1165,7 @@ class CompanyStatementSetController extends Controller {
|
|
|
|
$company_info = [
|
|
|
|
$company_info = [
|
|
|
|
'account'=>$v['account'],
|
|
|
|
'account'=>$v['account'],
|
|
|
|
"company_relation_str"=>$v['company_relation_str'],
|
|
|
|
"company_relation_str"=>$v['company_relation_str'],
|
|
|
|
|
|
|
|
"company_belong_str"=>$v['company_belong_str'],
|
|
|
|
"company_type_str"=>$v['company_type_str'],
|
|
|
|
"company_type_str"=>$v['company_type_str'],
|
|
|
|
"nickname"=>$v['nickname'],
|
|
|
|
"nickname"=>$v['nickname'],
|
|
|
|
"payee_name"=>$v['payee_name'],
|
|
|
|
"payee_name"=>$v['payee_name'],
|
|
|
@ -1321,7 +1322,8 @@ class CompanyStatementSetController extends Controller {
|
|
|
|
->where("pc.id = {$company_id}")
|
|
|
|
->where("pc.id = {$company_id}")
|
|
|
|
->find();
|
|
|
|
->find();
|
|
|
|
$company = array_merge($company_info,$pl);
|
|
|
|
$company = array_merge($company_info,$pl);
|
|
|
|
$company['company_relation_str'] =getCompanyBlong($company['company_belong']).getCompanyRelation($company['company_relation']);
|
|
|
|
$company['company_relation_str'] =getCompanyRelation($company['company_relation']);
|
|
|
|
|
|
|
|
$company['company_belong_str'] =getCompanyBlong($company['company_belong']);
|
|
|
|
$company['company_type_str'] = "个人";
|
|
|
|
$company['company_type_str'] = "个人";
|
|
|
|
return $company;
|
|
|
|
return $company;
|
|
|
|
|
|
|
|
|
|
|
|