diff --git a/anrui-scm/anrui-scm-ui/src/api/bikerebate/bicyclerebatecheck.js b/anrui-scm/anrui-scm-ui/src/api/bikerebate/bicyclerebatecheck.js
index 65872d0d07..130a2174e9 100644
--- a/anrui-scm/anrui-scm-ui/src/api/bikerebate/bicyclerebatecheck.js
+++ b/anrui-scm/anrui-scm-ui/src/api/bikerebate/bicyclerebatecheck.js
@@ -140,6 +140,15 @@ export default {
data: params
})
},
+ // 流程审批(加签)
+ delegate: function(params) {
+ return request({
+ url: '/scm/v1/scmvehrebatecheckapply/delegate',
+ method: 'post',
+ data: params,
+ headers: { 'Content-Type': 'application/json' }
+ })
+ },
// 代办任务驳回任务
reject: function(params) {
return request({
diff --git a/anrui-scm/anrui-scm-ui/src/api/bikerebate/bicyclerebatewithholding.js b/anrui-scm/anrui-scm-ui/src/api/bikerebate/bicyclerebatewithholding.js
index 9e616059cb..c7f0ad39e5 100644
--- a/anrui-scm/anrui-scm-ui/src/api/bikerebate/bicyclerebatewithholding.js
+++ b/anrui-scm/anrui-scm-ui/src/api/bikerebate/bicyclerebatewithholding.js
@@ -93,6 +93,15 @@ export default {
data: params
})
},
+ // 流程审批(加签)
+ delegate: function(params) {
+ return request({
+ url: '/scm/v1/scmvehrebatewithapply/delegate',
+ method: 'post',
+ data: params,
+ headers: { 'Content-Type': 'application/json' }
+ })
+ },
// 代办任务驳回任务
reject: function(params) {
return request({
diff --git a/anrui-scm/anrui-scm-ui/src/api/specialrebate/specialrebatecheck.js b/anrui-scm/anrui-scm-ui/src/api/specialrebate/specialrebatecheck.js
index 6d49fec753..e57f08402c 100644
--- a/anrui-scm/anrui-scm-ui/src/api/specialrebate/specialrebatecheck.js
+++ b/anrui-scm/anrui-scm-ui/src/api/specialrebate/specialrebatecheck.js
@@ -140,6 +140,15 @@ export default {
data: params
})
},
+ // 流程审批(加签)
+ delegate: function(params) {
+ return request({
+ url: '/scm/v1/scmspecialrebatecheckapply/delegate',
+ method: 'post',
+ data: params,
+ headers: { 'Content-Type': 'application/json' }
+ })
+ },
// 代办任务驳回任务
reject: function(params) {
return request({
diff --git a/anrui-scm/anrui-scm-ui/src/api/specialrebate/specialrebatewithholding.js b/anrui-scm/anrui-scm-ui/src/api/specialrebate/specialrebatewithholding.js
index 872e8b8c33..746539b78f 100644
--- a/anrui-scm/anrui-scm-ui/src/api/specialrebate/specialrebatewithholding.js
+++ b/anrui-scm/anrui-scm-ui/src/api/specialrebate/specialrebatewithholding.js
@@ -93,6 +93,16 @@ export default {
data: params
})
},
+ // 流程审批(加签)
+ delegate: function(params) {
+ return request({
+ url: '/scm/v1/scmspecialrebatewithapply/delegate',
+ method: 'post',
+ data: params,
+ headers: { 'Content-Type': 'application/json' }
+ })
+ },
+ //
// 代办任务驳回任务
reject: function(params) {
return request({
diff --git a/anrui-scm/anrui-scm-ui/src/views/bikerebate/bicyclerebatecheck/bicyclerebatetobechecked.vue b/anrui-scm/anrui-scm-ui/src/views/bikerebate/bicyclerebatecheck/bicyclerebatetobechecked.vue
index 3fc2644b4b..5722faf4b5 100644
--- a/anrui-scm/anrui-scm-ui/src/views/bikerebate/bicyclerebatecheck/bicyclerebatetobechecked.vue
+++ b/anrui-scm/anrui-scm-ui/src/views/bikerebate/bicyclerebatecheck/bicyclerebatetobechecked.vue
@@ -58,8 +58,14 @@
-
-
+
+
+
+
+ 修改
+ 调整
+
+
{{ scope.row.uploadState == '0' ? '未上传' : scope.row.uploadState == '1' ? '已上传' : ''}}
@@ -93,12 +99,6 @@
-
-
- 修改
- 调整
-
-
@@ -126,8 +126,129 @@
+
+
+ 分公司
+ {{ formobj.createOrgName }}
+
+
+ 品牌
+ {{ formobj.brandName }}
+
+
+ 采购系统
+ {{ formobj.purchaseSystemName }}
+
+
+
+
+ 车型
+ {{ formobj.vehModelName }}
+
+
+ 车架号
+ {{ formobj.vinNo }}
+
+
+
+
+ 车辆入库价
+ {{ formobj.manufactorSettlementPrice }}
+
+
+ 运费
+ {{ formobj.freight }}
+
+
+ 上装
+ {{ formobj.topAmount }}
+
+
+
+
+ 返利类型
+ {{ formobj.rebateTypeValue }}
+
+
+ 返利名称
+ {{ formobj.rebateName }}
+
+
+ 所属年月
+ {{ formobj.palceGenDate }}
+
+
+
+
+ 计算方式
+ {{ formobj.calculationModeValue }}
+
+
+ 计算标准
+ {{ formobj.calculationStandard }}
+
+
+ 状态
+ {{ formobj.state == '0' ? '未计提' : formobj.state == '1' ? '计提中' : formobj.state == '2' ? '待核对' : formobj.state == '3' ? '核对中' : formobj.state == '4' ? '已核对' : '' }}
+
+
+
+
+ 预提返利
+ {{ formobj.estimateRebate }}
+
+
+ 其中待支付费用
+ {{ formobj.expectTreatCost }}
+
+
+ 其中抵顶费用
+ {{ formobj.expectSuppCost }}
+
+
+
+
+ 抵顶费用说明
+ {{ formobj.expectSuppRemark }}
+
+
+
+
+ 备注
+ {{ formobj.remarks }}
+
+
+ 一次上传
+
+
+ 上传日期
+ {{ formobj.uploadDate }}
+
+
+ 上传金额
+ {{ formobj.uploadMoney }}
+
+
+ 其中待确定金额
+ {{ formobj.stayDetermineMoney }}
+
+
+
+
+ 其中待支付费用
+ {{ formobj.onceTreatCost }}
+
+
+ 其中抵顶费用
+ {{ formobj.onceSuppCost }}
+
+
+ 抵顶费用说明
+ {{ formobj.onceSuppRemark }}
+
+
待确定金额分配
-
+
待确定金额
{{ formobj.stayDetermineMoneyNew }}
diff --git a/anrui-scm/anrui-scm-ui/src/views/specialrebate/specialrebatecheck/specialrebatetobechecked.vue b/anrui-scm/anrui-scm-ui/src/views/specialrebate/specialrebatecheck/specialrebatetobechecked.vue
index 5f3051f893..29c09866a9 100644
--- a/anrui-scm/anrui-scm-ui/src/views/specialrebate/specialrebatecheck/specialrebatetobechecked.vue
+++ b/anrui-scm/anrui-scm-ui/src/views/specialrebate/specialrebatecheck/specialrebatetobechecked.vue
@@ -57,8 +57,14 @@
-
-
+
+
+
+
+ 修改
+ 调整
+
+
{{ scope.row.uploadState == '0' ? '未上传' : scope.row.uploadState == '1' ? '已上传' : ''}}
@@ -88,12 +94,6 @@
-
-
- 修改
- 调整
-
-
@@ -121,8 +121,111 @@
+
+
+ 分公司
+ {{ formobj.useOrgName }}
+
+
+ 采购系统
+ {{ formobj.purchaseSystemName }}
+
+
+ 品牌
+ {{ formobj.brandName }}
+
+
+
+
+ 返利类型
+ {{ formobj.rebateTypeValue }}
+
+
+ 返利名称
+ {{ formobj.rebateName }}
+
+
+ 所属年月
+ {{ formobj.palceGenDate }}
+
+
+
+
+ 预计返利
+ {{ formobj.estimateRebate }}
+
+
+ 预提日期
+ {{ formobj.withholdingDate }}
+
+
+ 状态
+ {{ formobj.state == '0' ? '未计提' : formobj.state == '1' ? '计提中' : formobj.state == '2' ? '待核对' : formobj.state == '3' ? '核对中' : formobj.state == '4' ? '已核对' : formobj.state == '5' ? '分配中' : formobj.state == '6' ? '已分配' : '' }}
+
+
+
+
+ 其中支出费用
+ {{ formobj.expectItureCost }}
+
+
+ 其中待支付费用
+ {{ formobj.expectTreatCost }}
+
+
+ 其中抵顶费用
+ {{ formobj.expectSuppCost }}
+
+
+
+
+ 抵顶费用说明
+ {{ formobj.expectSuppRemark }}
+
+
+
+
+ 备注
+ {{ formobj.remarks }}
+
+
+ 一次上传
+
+
+ 上传日期
+ {{ formobj.uploadDate }}
+
+
+ 上传金额
+ {{ formobj.uploadMoney }}
+
+
+ 其中待确定金额
+ {{ formobj.stayDetermineMoney }}
+
+
+
+
+ 其中支出费用
+ {{ formobj.onceItureCost }}
+
+
+ 其中待支付费用
+ {{ formobj.onceTreatCost }}
+
+
+ 其中抵顶费用
+ {{ formobj.onceSuppCost }}
+
+
+
+
+ 抵顶费用说明
+ {{ formobj.onceSuppRemark }}
+
+
待确定金额分配
-
+
待确定金额
{{ formobj.stayDetermineMoneyNew }}
diff --git a/anrui-scm/anrui-scm-ui/src/views/workFlow/danchefanliheduiFlow/danchefanliheduiDaiBanInfo.vue b/anrui-scm/anrui-scm-ui/src/views/workFlow/danchefanliheduiFlow/danchefanliheduiDaiBanInfo.vue
index 9e4bdef65f..6e05e15adc 100644
--- a/anrui-scm/anrui-scm-ui/src/views/workFlow/danchefanliheduiFlow/danchefanliheduiDaiBanInfo.vue
+++ b/anrui-scm/anrui-scm-ui/src/views/workFlow/danchefanliheduiFlow/danchefanliheduiDaiBanInfo.vue
@@ -7,6 +7,7 @@
{{ viewTitle }}
+
加 签
同 意
驳 回
终 止
@@ -94,8 +95,19 @@
-
-
+
+
+
+ *加签人员:
+
+
+
+
+
+
+
+
+
当前环节:
{{ current.taskName }}->{{ nextNode.name }}
@@ -104,7 +116,9 @@
意见:
-
+
+
+
@@ -119,6 +133,7 @@