Browse Source

过账日期

master_hella_20240701
wangyufei 5 months ago
parent
commit
53a5613a10
  1. 2
      src/views/wms/supplierManage/supplierinvoice/supplierinvoiceRequestMain/index.vue

2
src/views/wms/supplierManage/supplierinvoice/supplierinvoiceRequestMain/index.vue

@ -222,6 +222,7 @@
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
import dayjs from 'dayjs'
// //
import download from '@/utils/download' import download from '@/utils/download'
import { CACHE_KEY, useCache } from '@/hooks/web/useCache' import { CACHE_KEY, useCache } from '@/hooks/web/useCache'
@ -776,6 +777,7 @@ const handleImport = () => {
/** 审批通过按钮操作 finance_mainPlanSub */ /** 审批通过按钮操作 finance_mainPlanSub */
const formFinanceRef = ref() const formFinanceRef = ref()
const handleFinanceApp = async (row) => { const handleFinanceApp = async (row) => {
row.postingDate = dayjs().valueOf()
formFinanceRef.value.open('update', row,null,'财务通过','财务通过') formFinanceRef.value.open('update', row,null,'财务通过','财务通过')
} }

Loading…
Cancel
Save