diff --git a/src/api/PurchasingCenter/ReceiptConnectionSheet.js b/src/api/PurchasingCenter/ReceiptConnectionSheet.js
index e916b988..24c00416 100644
--- a/src/api/PurchasingCenter/ReceiptConnectionSheet.js
+++ b/src/api/PurchasingCenter/ReceiptConnectionSheet.js
@@ -49,8 +49,8 @@ export function deleteInvoice(num1) {
}
})
}
-// 传送人接收人初始化 采购科改16
-export function initPerson() {
+// 传送人初始化 采购科改16
+export function initSender() {
return request({
url: '',
method: 'post',
@@ -61,6 +61,18 @@ export function initPerson() {
}
})
}
+// 接收人初始化 财务部7
+export function initReceiver() {
+ return request({
+ url: '',
+ method: 'post',
+ data: {
+ type: '1',
+ name: '人事档案管理_人员_部门与人员_查询数据_根据部门编号',
+ param: '考核部门编号=7'
+ }
+ })
+}
// 初始化合同号
export function initContract() {
return request({
diff --git a/src/views/PurchasingCenter/ReceiptConnectionSheet/index.vue b/src/views/PurchasingCenter/ReceiptConnectionSheet/index.vue
index f5480480..cc08073c 100644
--- a/src/views/PurchasingCenter/ReceiptConnectionSheet/index.vue
+++ b/src/views/PurchasingCenter/ReceiptConnectionSheet/index.vue
@@ -19,7 +19,7 @@
传送人:
@@ -27,7 +27,7 @@
接收人:
@@ -61,7 +61,7 @@
- {{ scope.row.开票时间 }}
+ {{ scope.row.开票时间 ? scope.row.开票时间 : '—' }}
@@ -96,12 +96,12 @@
- {{ scope.row.接收人姓名==='请选择' ? '' : scope.row.接收人姓名 }}
+ {{ scope.row.接收人姓名==='请选择' ? '—' : scope.row.接收人姓名 }}
- {{ scope.row.备注 }}
+ {{ scope.row.备注 ? scope.row.备注 : '—' }}
@@ -158,7 +158,7 @@
@@ -167,7 +167,7 @@
@@ -187,7 +187,7 @@