|
@@ -244,8 +244,12 @@
|
|
|
}
|
|
|
|
|
|
if (this.commonJS.isEmpty(toCompany)) {
|
|
|
- this.dividerName = '江苏兴光项目管理有限公司'
|
|
|
+ this.toCompany = '江苏兴光会计师事务所有限责任公司'
|
|
|
} else {
|
|
|
+ //对公司名中的括号进行转化,便于与附件中的公司名进行比较
|
|
|
+ toCompany = toCompany
|
|
|
+ .replace(/(/g, '(')
|
|
|
+ .replace(/)/g, ')');
|
|
|
this.toCompany = toCompany
|
|
|
}
|
|
|
if (directory !== undefined && directory !== null && directory !== '' && directory !== {}) {
|