|
@@ -69,6 +69,7 @@
|
|
|
<ProjectRecordsForm ref="projectRecordsForm"></ProjectRecordsForm>
|
|
<ProjectRecordsForm ref="projectRecordsForm"></ProjectRecordsForm>
|
|
|
<CwInvoiceForm ref="cwInvoiceForm"></CwInvoiceForm>
|
|
<CwInvoiceForm ref="cwInvoiceForm"></CwInvoiceForm>
|
|
|
<InvoiceForm ref="invoiceForm"></InvoiceForm>
|
|
<InvoiceForm ref="invoiceForm"></InvoiceForm>
|
|
|
|
|
+ <DishOrderInfoDialog ref="dishOrderInfoDialog"></DishOrderInfoDialog>
|
|
|
</div>
|
|
</div>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
@@ -76,6 +77,8 @@
|
|
|
import WareHouseHistoryPopup from '@/views/materialManagement/wareHouseSummary/WareHouseHistoryPopup'
|
|
import WareHouseHistoryPopup from '@/views/materialManagement/wareHouseSummary/WareHouseHistoryPopup'
|
|
|
import PsiWareHouseHistoryPopup from '@/views/psiManagement/loss/PurchasePageFormPopup.vue'
|
|
import PsiWareHouseHistoryPopup from '@/views/psiManagement/loss/PurchasePageFormPopup.vue'
|
|
|
import PurchasePageFormCurrent from '@/views/psiManagement/loss/PurchasePageFormCurrent.vue'
|
|
import PurchasePageFormCurrent from '@/views/psiManagement/loss/PurchasePageFormCurrent.vue'
|
|
|
|
|
+// 优惠结账通知弹框
|
|
|
|
|
+import DishOrderInfoDialog from '@/views/psiManagement/dishManage/order/DishOrderInfoDialog'
|
|
|
import RegisterPopup from '@/views/human/practice/register/RegisterPopup'
|
|
import RegisterPopup from '@/views/human/practice/register/RegisterPopup'
|
|
|
import taskService from '@/api/flowable/taskService'
|
|
import taskService from '@/api/flowable/taskService'
|
|
|
import noticeService from '@/api/flowable/noticeService'
|
|
import noticeService from '@/api/flowable/noticeService'
|
|
@@ -128,6 +131,7 @@ export default {
|
|
|
ProjectRecordsForm,
|
|
ProjectRecordsForm,
|
|
|
CwInvoiceForm,
|
|
CwInvoiceForm,
|
|
|
InvoiceForm,
|
|
InvoiceForm,
|
|
|
|
|
+ DishOrderInfoDialog
|
|
|
},
|
|
},
|
|
|
methods: {
|
|
methods: {
|
|
|
// 获取数据列表
|
|
// 获取数据列表
|
|
@@ -155,7 +159,7 @@ export default {
|
|
|
this.refreshList()
|
|
this.refreshList()
|
|
|
},
|
|
},
|
|
|
todo(row) {
|
|
todo(row) {
|
|
|
- // console.log('row', row)
|
|
|
|
|
|
|
+ console.log('row', row)
|
|
|
if (row.taskName === '评估发票超期收款') {
|
|
if (row.taskName === '评估发票超期收款') {
|
|
|
// console.log('测试进来了')
|
|
// console.log('测试进来了')
|
|
|
console.log('id', row.defId)
|
|
console.log('id', row.defId)
|
|
@@ -198,6 +202,13 @@ export default {
|
|
|
}
|
|
}
|
|
|
noticeService.stockUpdate(this.inputForm)
|
|
noticeService.stockUpdate(this.inputForm)
|
|
|
this.resetSearch()
|
|
this.resetSearch()
|
|
|
|
|
+ } else if (row.taskName === '景聚庭-优惠结账') {
|
|
|
|
|
+ this.$refs.dishOrderInfoDialog.init(row.defId)
|
|
|
|
|
+ this.inputForm = {
|
|
|
|
|
+ id: row.id
|
|
|
|
|
+ }
|
|
|
|
|
+ noticeService.stockUpdate(this.inputForm)
|
|
|
|
|
+ this.resetSearch()
|
|
|
} else if (row.taskName === '实习日志超时提醒') {
|
|
} else if (row.taskName === '实习日志超时提醒') {
|
|
|
this.$refs.registerPopup.init(row.defId)
|
|
this.$refs.registerPopup.init(row.defId)
|
|
|
this.inputForm = {
|
|
this.inputForm = {
|