| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402 |
- <template>
- <div class="w-full h-full flex flex-col">
- <div class="flex-1 overflow-y-auto">
- <van-field v-model="value" label="合同所属部门" placeholder="请选择" input-align="right" readonly
- @click="showDepartmentSelection">
- <template #input v-if="departmentRow.departmentName != ''">
- <TranslationComponent type="departmentName" :openId="departmentRow.departmentName" />
- </template>
- </van-field>
- <CustomerForm ref="formFormRef" :formJson="formJson" :formValue="formVal"></CustomerForm>
- <template v-for="(item, index) in paymentPlanList">
- <FoldingPanel :title="`回款计划(${index + 1})`" class="mb-4">
- <template #foldingRight>
- <div class="flex items-center">
- <div class="pr-3 themeTextColor" @click="addPaymentCollection(index)">添加</div>
- <div class="text-[red]" @click="deletePaymentCollection(index)">删除</div>
- </div>
- </template>
- <template #foldContainer>
- <div>
- <van-cell title="是否已回款">
- <template #default>
- <div class="flex justify-end">
- <van-checkbox v-model="item.isPayed">已回款</van-checkbox>
- </div>
- </template>
- </van-cell>
- <van-cell title="回款日期" @click="showDatePicker(index, 'payDate')">
- <template #default>
- <van-field v-model="item.payDate" input-align="right" placeholder="请选择日期" class="resetStyles"
- readonly />
- </template>
- </van-cell>
- <van-cell title="金额(含税)">
- <template #default>
- <van-field v-model="item.amount" type="digit" input-align="right" placeholder="请输入金额"
- class="resetStyles" />
- </template>
- </van-cell>
- <van-cell title="是否已开票">
- <template #default>
- <div class="flex justify-end">
- <van-checkbox v-model="item.isBilled">已开票</van-checkbox>
- </div>
- </template>
- </van-cell>
- <van-cell title="开票日期" @click="showDatePicker(index, 'billDate')">
- <template #default>
- <van-field v-model="item.billDate" input-align="right" placeholder="请选择日期" class="resetStyles"
- readonly />
- </template>
- </van-cell>
- <van-cell title="开票种类增值税" @click="showSelectTaxAmount(index)">
- <template #default >
- <van-field v-model="item.invoiceTypeName" type="text" input-align="right" placeholder="请选择"
- class="resetStyles" readonly="" />
- </template>
- </van-cell>
- <van-cell title="税率%">
- <template #default>
- <van-field v-model="item.taxRate" type="digit" input-align="right" placeholder="请输入"
- class="resetStyles" @change="inputNumberChange(index)" />
- </template>
- </van-cell>
- <van-cell title="税额">
- <template #default>
- <van-field v-model="item.taxAmount" type="digit" input-align="right" placeholder="请输入"
- class="resetStyles" />
- </template>
- </van-cell>
- </div>
- </template>
- </FoldingPanel>
- </template>
- </div>
- <div class="mar-20px ">
- <van-button type="primary" @click="onSubmit" class="w-full">
- {{ Object.keys(formVal).length > 0 ? '确定修改' : '确定添加' }}
- </van-button>
- </div>
- <!-- 日期选择器 -->
- <van-popup v-model:show="showPicker" destroy-on-close position="bottom" :style="{ height: '50%' }">
- <van-date-picker v-model="pickerValue" @confirm="showPickerConfirm" @cancel="showPicker = false" />
- </van-popup>
- <!-- 部门选择 -->
- <!-- <treeSelect
- ref="treeSelectRef"
- v-model:show="departmentShow"
- :modelValue="departmentShow.departmentId"
- :listData="options"
- :multiple='false'
- placeholder="请选择"
- @changeModelValue="changeModelValue"
- :configurationItem="{ label: 'label', value: 'id', children: 'children' }"
- ></treeSelect> -->
- <van-popup v-model:show="departmentShow" destroy-on-close position="bottom" :style="{ height: '85%' }">
- <div class="selectDepartment">
- <div class="w-full absolute top-12 z-10">
- <van-tabs v-model:active="departmentRow.tabIndex" shrink scrollspy @click-tab="tabClick">
- <van-tab v-for="item in tableSelectSelectionShowList">
- <template #title>
- <TranslationComponent type="departmentName" :openId="item.label" />
- </template>
- </van-tab>
- </van-tabs>
- </div>
- <div class="soDept">
- <van-cascader v-model="departmentRow.departmentId" ref="cascaderDeptRef" title="合同所属部门" :options="deptOptions"
- @change="changeModelValue" @close="departmentShow = false" :field-names="fieldNames"
- @finish="finishModelValue">
- <template #option="{ option }">
- <div>
- <TranslationComponent type="departmentName" :openId="option.label" />
- </div>
- </template>
- </van-cascader>
- </div>
- </div>
- </van-popup>
- </div>
- <van-popup v-model:show="showSelectTaxAmountShow" destroy-on-close position="bottom" :style="{ height: '50%' }">
- <van-picker :columns="columns" @confirm="onConfirm" />
- </van-popup>
- </template>
- <script setup>
- import { ref, onActivated, watch } from 'vue';
- import { useLifecycle } from '@hooks/useCommon.js';
- import CustomerForm from '@components/common/formForm/formView.vue'
- import requests from "@common/requests";
- import useToast from "@hooks/useToast"
- import { CONTRACT_ADDITION_EDITING, CONTRACT_EDITING, OBTAIN_THE_CONTRACT_REMITTANCE_LIST } from "@hooks/useApi"
- import useRouterStore from "@store/useRouterStore.js";
- import FoldingPanel from '@components/common/foldingPanel.vue';
- import dayjs from 'dayjs';
- import commonUtil from "@utility/commonUtil"
- import { number } from 'echarts';
- import { routingInfos, getRouterImg } from "@utility/generalVariables.js";
- import TreeSelect from "@components/common/treeSelect/selectTree.vue"
- const router = useRouterStore()
- const { toastText, toastSuccess, toastFail, toastLoading } = useToast()
- const props = defineProps({
- formJson: { required: true },
- formValue: { required: true },
- });
- const formFormRef = ref(null)
- const formVal = ref({})
- const paymentPlanList = ref([{}])
- const showPicker = ref(false)
- const pickerValue = ref([])
- const rowIndex = ref(0)
- const departmentRow = ref({
- departmentName: '',
- departmentId: '',
- sureDepartmentId: '',
- tableSelect: ''
- })
- const departmentShow = ref(false)
- const deptOptions = ref([])
- const tableSelectSelectionShowList = ref([])
- const fieldNames = {
- text: 'label',
- value: 'id',
- children: 'children',
- };
- const cascaderDeptRef = ref(null)
- const dataType = ref('payDate')
- const showSelectTaxAmountShow = ref(false)
- const selectIndex = ref(0)
- const columns = [
- { text: '增值税专用发票', value: 0 },
- { text: '增值税普通发票', value: 1 },
- ]
- watch(() => formVal.value, (newValue) => {
- console.log(newValue, '<==== 看看')
- if (!newValue.id) {
- paymentPlanList.value = [{}]
- return
- }
- departmentRow.value = {
- departmentName: newValue.departmentName,
- departmentId: newValue.departmentId,
- sureDepartmentId: newValue.departmentId,
- tableSelect: ''
- }
- getPaymentCollectionList(newValue.id)
- })
- function inputNumberChange(index) {
- const { amount = 0, taxRate = 0, taxAmount = 0 } = paymentPlanList.value[index]
- if(!amount && !amount) {
- return
- }
- const shui = taxRate / 100
- const zhi = amount / (1 + shui) * shui
- paymentPlanList.value[index].taxAmount = +(zhi.toFixed(2))
- }
- function onConfirm(val) {
- const selectedOptions = val.selectedOptions[0]
- paymentPlanList.value[selectIndex.value].invoiceType = selectedOptions.value
- paymentPlanList.value[selectIndex.value].invoiceTypeName = selectedOptions.text
- showSelectTaxAmountShow.value = false
- }
- function showSelectTaxAmount(index) {
- selectIndex.value = index
- showSelectTaxAmountShow.value = true
- }
- function finishModelValue({ value, selectedOptions }) {
- const row = selectedOptions.find(item => item.id == value)
- departmentRow.value.sureDepartmentId = row.id
- departmentRow.value.departmentName = row.label
- departmentShow.value = false
- }
- function tabClick(name) {
- const elements = cascaderDeptRef.value.$el.querySelectorAll('[role="tab"]');
- elements[name.name].click()
- tableSelectSelectionShowList.value.splice(name.name + 1, tableSelectSelectionShowList.value.length)
- }
- function changeModelValue({ value, selectedOptions, tabIndex }) {
- const row = selectedOptions.find(item => item.id == value)
- tableSelectSelectionShowList.value.push({
- label: row.label,
- index: tabIndex,
- id: row.id
- })
- setTimeout(() => {
- departmentRow.value.tabIndex = tableSelectSelectionShowList.value.length - 1
- }, 200)
- }
- function showDepartmentSelection() {
- tableSelectSelectionShowList.value = []
- departmentRow.value.departmentId = ''
- departmentShow.value = true
- }
- function obtainDepartmentalData() {
- requests.post('/department/list', {}).then((res) => {
- deptOptions.value = res.data
- })
- }
- function onSubmit() {
- formFormRef.value.getJsonData().then((res) => {
- if (!res.data) {
- return
- }
- const determineArray = paymentPlanList.value.filter(item => item.isPayed || (item.payDate || item.amount))
- let totalNum = 0
- for (let i in determineArray) {
- const row = determineArray[i]
- if (!row.payDate) {
- toastText('回款日期不能为空')
- return
- }
- if (!row.amount || row.amount == 0) {
- toastText('回款金额不能为空和0')
- return
- }
- totalNum += Number(determineArray[i].amount)
- if (formVal.value.id) {
- determineArray[i].contractId = formVal.value.id
- }
- }
- if (totalNum > 0 && !res.data.amounts) {
- toastText('请输入合同金额')
- return
- }
- if (totalNum > res.data.amounts) {
- toastText('回款金额不能大于合同金额')
- return
- }
- toastLoading('保存中', 0)
- requests.post(props.formValue?.id ? CONTRACT_EDITING : CONTRACT_ADDITION_EDITING, { ...commonUtil.getFromValue({
- ...props.formValue,
- ...res.data,
- paymentListStr: JSON.stringify((determineArray || []).map(item => {
- delete item.invoiceTypeName
- return {
- ...item,
- isBilled: item.isBilled ? 1 : 0
- }
- }))}),
- departmentId: departmentRow.value.sureDepartmentId
- }).then(() => {
- toastSuccess('保存成功')
- const currentPages = router.$state.currentPages || []
- const parentRoute = (currentPages[currentPages.length - 2] || {}).pathName
- const jumpTo = routingInfos['contract']
- setTimeout(() => {
- if(parentRoute == 'home') {
- router.redirectTo({
- pathName: 'moduleList',
- success: () => {
- router.eventEmit('moduleListRefreshData', {})
- router.emit('moduleListDetailParameter', {
- row: JSON.stringify(jumpTo)
- })
- }
- })
- } else {
- router.navigateBack({
- success: () => {
- router.eventEmit('moduleListRefreshData', {})
- }
- })
- }
- }, 2000)
- // setTimeout(() => {
- // router.navigateBack({
- // success: () => {
- // router.eventEmit('moduleListRefreshData', {})
- // }
- // })
- // }, 2000)
- }).catch((err) => {
- toastFail('保存失败:' + err.msg)
- })
- })
- }
- function addPaymentCollection(index) {
- paymentPlanList.value.splice(index + 1, 0, { isPayed: false, payDate: dayjs(new Date()).format('YYYY-MM-DD'), amount: null, isBilled: true })
- }
- function deletePaymentCollection(index) {
- paymentPlanList.value.splice(index, 1)
- }
- function showDatePicker(index, type) {
- const { payDate, billDate } = paymentPlanList.value[index];
- dataType.value = type
- rowIndex.value = index;
- const dates = type == 'payDate' ? payDate : billDate
- const currentDate = dayjs(dates ? new Date(dates) : new Date()).format('YYYY-MM-DD').split('-');
- pickerValue.value = currentDate;
- showPicker.value = true;
- }
- function showPickerConfirm({ selectedValues }) {
- if (dataType.value == 'payDate') {
- paymentPlanList.value[rowIndex.value].payDate = selectedValues.join("-");
- }
- if (dataType.value == 'billDate') {
- paymentPlanList.value[rowIndex.value].billDate = selectedValues.join("-");
- }
- showPicker.value = false;
- }
- function getPaymentCollectionList(id) {
- requests.post(OBTAIN_THE_CONTRACT_REMITTANCE_LIST, { contractId: id }).then((res) => {
- paymentPlanList.value = res.data.length > 0 ? res.data : [{}]
- })
- }
- useLifecycle({
- load: () => {
- formVal.value = props.formValue
- paymentPlanList.value = [{}]
- obtainDepartmentalData()
- },
- init: () => {
- formVal.value = props.formValue
- paymentPlanList.value = [{}]
- obtainDepartmentalData()
- }
- });
- onActivated(() => {
- })
- </script>
- <style lang='scss' scoped>
- /* 样式代码 */
- .resetStyles {
- padding: 0;
- }
- .soDept {
- position: relative;
- :deep(.van-tabs__nav--complete) {
- display: none;
- }
- }
- </style>
|