You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
972 lines
31 KiB
972 lines
31 KiB
<template>
|
|
<ContentWrap>
|
|
<!-- 搜索工作栏 -->
|
|
<Search :schema="SupplierinvoiceRequestMain.allSchemas.searchSchema" @search="searchList" @reset="searchList" />
|
|
</ContentWrap>
|
|
|
|
<!-- 列表头部 -->
|
|
<TableHead
|
|
:HeadButttondata="HeadButttondata"
|
|
@button-base-click="buttonBaseClick"
|
|
:routeName="routeName"
|
|
@updataTableColumns="updataTableColumns"
|
|
@searchFormClick="searchFormClick"
|
|
:allSchemas="SupplierinvoiceRequestMain.allSchemas"
|
|
|
|
/>
|
|
|
|
<!-- 列表 -->
|
|
<ContentWrap>
|
|
<Table ref="tableRef"
|
|
:selection="true"
|
|
v-clientTable :columns="tableColumns" :data="tableObject.tableList" :loading="tableObject.loading" :pagination="{
|
|
total: tableObject.total
|
|
}" v-model:pageSize="tableObject.pageSize" v-model:currentPage="tableObject.currentPage"
|
|
v-model:sort="tableObject.sort"
|
|
@getSelectionRows="getSelectionRows"
|
|
>
|
|
<template #number="{row}">
|
|
<el-button type="primary" link @click="openDetail(row, '单据号', row.number)">
|
|
<span>{{ row.number }}</span>
|
|
</el-button>
|
|
</template>
|
|
<template #differencePrice="{row}">
|
|
<span :class="{'red-text':row.differencePrice!=0}">{{ Number(row.differencePrice).toFixed(5) }}</span>
|
|
</template>
|
|
<template #action="{ row,$index }">
|
|
<ButtonBase :Butttondata="butttondata(row,$index)" @button-base-click="buttonTableClick($event,row)" />
|
|
</template>
|
|
</Table>
|
|
</ContentWrap>
|
|
|
|
<!-- 表单弹窗:添加/修改 -->
|
|
<BasicForm
|
|
ref="formRef"
|
|
@success="getList"
|
|
:isOpenSearchTable="true"
|
|
fieldTableColumn="poLine"
|
|
:showSearchTableQueryFields = "['poLine']"
|
|
:rules="SupplierinvoiceRequestMainRules"
|
|
:formAllSchemas="SupplierinvoiceRequestMain.allSchemas"
|
|
:searchTableParams="searchTableParams"
|
|
:tableAllSchemas="SupplierinvoiceRequestDetail.allSchemas"
|
|
:tableFormRules="SupplierinvoiceRequestDetailRules"
|
|
:tableData="tableData"
|
|
:sumFormDataByForm ="(formRef,formModel)=>{
|
|
const {taxRate=0,amount=0} = formModel
|
|
formRef.value.setValues({
|
|
taxAmount:taxRate*amount*0.01,
|
|
afterTaxAmount:amount+taxRate*amount*0.01
|
|
})
|
|
}"
|
|
:sumFormDataByTableCustom ="(formRef,formModel,tableData)=>{
|
|
const sumObject = {
|
|
amount:tableData.reduce((prev, item) => prev + (item['singlePrice']*item['invoicableQuantity']),0)
|
|
}
|
|
formRef.value.setValues(sumObject)
|
|
}"
|
|
:apiUpdate="SupplierinvoiceRequestMainApi.updateSupplierinvoiceRequestMain"
|
|
:apiCreate="SupplierinvoiceRequestMainApi.createSupplierinvoiceRequestMain"
|
|
:isBusiness="true"
|
|
@handleAddTable="handleAddTable"
|
|
@handleDeleteTable="handleDeleteTable"
|
|
:isShowReduceButtonSelection="true"
|
|
@tableSelectionDelete="tableSelectionDelete"
|
|
@searchTableSuccess="searchTableSuccess"
|
|
@submitForm="submitForm"
|
|
>
|
|
<template v-slot="{row}">
|
|
<el-input :disabled="true" :class="{'is-red': row['singlePrice'] - row['purchasePrice'] > 0}" :modelValue="((row['singlePrice']) - (row['purchasePrice'])).toFixed(6)"/>
|
|
</template>
|
|
</BasicForm>
|
|
|
|
<!-- 详情 -->
|
|
<Detail
|
|
ref="detailRef"
|
|
:isOpenSearchTable="true"
|
|
fieldTableColumn="poLine"
|
|
:annexTable="detailAnnexTable"
|
|
:annexAlias="{
|
|
label:t('ts.其他附件')
|
|
}"
|
|
:otherHeadButttonData="[{
|
|
label: t('ts.打印明细'),
|
|
name: 'printing',
|
|
hide: false,
|
|
type: 'primary',
|
|
// icon: 'ep:operation',
|
|
color: '',
|
|
float:'left',
|
|
hasPermi: ''
|
|
},{
|
|
label: t('ts.打印全部发货单'),
|
|
name: 'printing-all',
|
|
hide: false,
|
|
type: 'primary',
|
|
// icon: 'ep:operation',
|
|
color: '',
|
|
float:'left',
|
|
hasPermi: ''
|
|
},{
|
|
label: t('ts.导出明细'),
|
|
name: 'export-detail',
|
|
hide: false,
|
|
type: 'primary',
|
|
// icon: 'ep:operation',
|
|
color: '',
|
|
float:'left',
|
|
hasPermi: ''
|
|
}]"
|
|
:buttondataTable = "[{
|
|
label: t('ts.打印'),
|
|
name: 'print',
|
|
hide: false,
|
|
type: 'primary',
|
|
// icon: 'ep:operation',
|
|
color: '',
|
|
float:'left',
|
|
link: true, // 文本展现按钮
|
|
hasPermi: ''
|
|
}]"
|
|
:isBasic="false"
|
|
:allSchemas="SupplierinvoiceRequestMain.allSchemas"
|
|
:detailAllSchemas="SupplierinvoiceRequestDetail.allSchemas"
|
|
:detailAllSchemasRules="SupplierinvoiceRequestDetailRules"
|
|
:searchTableParams="searchTableParams"
|
|
:apiCreate="SupplierinvoiceRequestDetailApi.createSupplierinvoiceRequestDetail"
|
|
:apiUpdate="SupplierinvoiceRequestDetailApi.updateSupplierinvoiceRequestDetail"
|
|
:apiPage="SupplierinvoiceRequestDetailApi.getSupplierinvoiceRequestDetailPage"
|
|
:apiDelete="SupplierinvoiceRequestDetailApi.deleteSupplierinvoiceRequestDetail"
|
|
:Echo="Echo"
|
|
:detailButtonIsShowEdit="true"
|
|
:detailButtonIsShowAddStatusArray="['1','6']"
|
|
:detailButtonIsShowDelete="true"
|
|
:detailButtonIsShowAdd="true"
|
|
@buttonBaseClick="detailButtonBaseClick"
|
|
@tableFormButton="tableFormButton"
|
|
:mainSubmitCreateApi="true"
|
|
@searchTableSuccessDetail="searchTableSuccessDetail"
|
|
>
|
|
<template #differencePrice="{row}">
|
|
<span :class="{'red-text':row.differencePrice!=0}">{{ row.differencePrice }}</span>
|
|
</template>
|
|
</Detail>
|
|
|
|
<!-- 导入 -->
|
|
<ImportForm
|
|
ref="importFormRef"
|
|
url="/wms/supplierinvoice-request-main/import"
|
|
:importTemplateData="importTemplateData"
|
|
@success="importSuccess"
|
|
:updateIsDisable="true"
|
|
:coverIsDisable="true"
|
|
:mode="2"
|
|
/>
|
|
|
|
</template>
|
|
<script setup lang="ts">
|
|
// 供应商发票申请
|
|
import download from '@/utils/download'
|
|
import { CACHE_KEY, useCache } from '@/hooks/web/useCache'
|
|
import { SupplierinvoiceRequestMain,
|
|
SupplierinvoiceRequestMainRules,
|
|
SupplierinvoiceRequestDetail,
|
|
SupplierinvoiceRequestDetailRules } from './supplierinvoiceRequestMain.data'
|
|
import * as SupplierinvoiceRequestMainApi from '@/api/wms/supplierinvoiceRequestMain'
|
|
import * as SupplierinvoiceRequestDetailApi from '@/api/wms/supplierinvoiceRequestDetail'
|
|
import * as defaultButtons from '@/utils/disposition/defaultButtons'
|
|
import * as SupplierApi from '@/api/wms/supplier'
|
|
import { Supplier } from '../../../basicDataManage/supplierManage/supplier/supplier.data'
|
|
import { getAccessToken } from '@/utils/auth'
|
|
import { ElMessageBox } from 'element-plus'
|
|
|
|
defineOptions({ name: 'SupplierinvoiceRequestMain' })
|
|
|
|
const message = useMessage() // 消息弹窗
|
|
const { t } = useI18n() // 国际化
|
|
|
|
const route = useRoute() // 路由信息
|
|
const routeName = ref()
|
|
routeName.value = route.name
|
|
const tableColumns = ref(SupplierinvoiceRequestMain.allSchemas.tableColumns)
|
|
|
|
// 字段设置 更新主列表字段
|
|
const updataTableColumns = (val) => {
|
|
tableColumns.value = val
|
|
}
|
|
|
|
// 查询列表页面参数设置
|
|
const searchTableParams = ref([
|
|
{
|
|
formField: 'supplierCode',
|
|
searchTableTitle: t('ts.供应商信息'),
|
|
searchTableAllSchemas: Supplier.allSchemas,
|
|
searchTablePage: SupplierApi.getSupplierPage
|
|
}
|
|
])
|
|
|
|
const searchList = (model)=>{
|
|
selectionRows.value = []
|
|
setSearchParams(model)
|
|
}
|
|
const selectionRows = ref<any>([])
|
|
const tableRef = ref()
|
|
const getSelectionRows = (currentPage,currentPageSelectionRows) => {
|
|
console.log("getSelectionRows",currentPage,currentPageSelectionRows)
|
|
const currentRows = selectionRows.value.find(item=>item.currentPage==currentPage)
|
|
if(currentRows){
|
|
currentRows.selectionRows = currentPageSelectionRows
|
|
}else{
|
|
selectionRows.value.push({
|
|
currentPage,
|
|
selectionRows:currentPageSelectionRows
|
|
})
|
|
}
|
|
}
|
|
|
|
const searchTableSuccessDetail = async (formField, searchField, val, formRef,searchTableFormModel)=>{
|
|
console.log('详情',formField, searchField, val, formRef,searchTableFormModel)
|
|
await SupplierinvoiceRequestDetailApi.createSupplierinvoiceRequestDetail({
|
|
masterId:searchTableFormModel.masterId,
|
|
subList:val
|
|
})
|
|
detailRef.value.updateList()
|
|
}
|
|
|
|
// 查询页面返回
|
|
const searchTableSuccess = (formField, searchField, val, searchFormRef, type, row) => {
|
|
nextTick(() => {
|
|
if (type == 'tableForm') {
|
|
// 明细查询页赋值
|
|
val.forEach(item=>{
|
|
if(tableData.value.find(item1=>item1['poNumber'] == item['poNumber']&&item1['poLine'] == item['poLine'])) return
|
|
const newRow = {...row}
|
|
newRow[formField] = item[searchField]
|
|
if (formField == 'poLine') {
|
|
newRow['poNumber'] = item['poNumber']
|
|
newRow['poLine'] = item['poLine']
|
|
newRow['tax'] =item['tax']
|
|
newRow['projectCode'] = item['projectCode']
|
|
newRow['billType'] = item['billType']
|
|
newRow['recvBillNum'] = item['recvBillNum']
|
|
newRow['asnBillNum'] = item['asnBillNum']
|
|
newRow['supplierCode'] = item['supplierCode']
|
|
newRow['singlePrice'] = item['purchasePrice']//单价默认值 = 采购价格
|
|
newRow['purchasePrice'] = item['purchasePrice']
|
|
newRow['invoicableQuantity'] = item['invoicableQuantity']
|
|
newRow['itemCode'] = item['itemCode']
|
|
newRow['deliveryDate'] = item['prhRcpDate']
|
|
newRow['arrivalQty'] = item['prhRcvd']
|
|
}
|
|
tableData.value.push(newRow)
|
|
})
|
|
|
|
} else {
|
|
const setV = {}
|
|
setV[formField] = val[0][searchField]
|
|
searchFormRef.setValues(setV)
|
|
}
|
|
})
|
|
}
|
|
const Echo = []
|
|
|
|
const { tableObject, tableMethods } = useTable({
|
|
getListApi: SupplierinvoiceRequestMainApi.getSupplierinvoiceRequestMainPage // 分页接口
|
|
})
|
|
|
|
// 获得表格的各种操作
|
|
const { getList, setSearchParams } = tableMethods
|
|
|
|
// 列表头部按钮
|
|
const HeadButttondata = [
|
|
defaultButtons.defaultAddBtn({ hasPermi: 'wms:supplierinvoice-request-main:create' }), // 新增
|
|
defaultButtons.defaultImportBtn({hasPermi: 'wms:supplierinvoice-request-main:import'}), // 导入
|
|
defaultButtons.defaultExportBtn({hasPermi: 'wms:supplierinvoice-request-main:export'}), // 导出
|
|
defaultButtons.defaultFreshBtn(null), // 刷新
|
|
defaultButtons.defaultFilterBtn(null), // 筛选
|
|
defaultButtons.defaultSetBtn(null), // 设置
|
|
// {
|
|
// label: '自定义扩展按钮',
|
|
// name: 'zdy',
|
|
// hide: false,
|
|
// type: 'primary',
|
|
// icon: 'Select',
|
|
// color: ''
|
|
// },
|
|
]
|
|
|
|
// 头部按钮事件
|
|
const buttonBaseClick = (val, item) => {
|
|
if (val == 'add') { // 新增
|
|
openForm('create')
|
|
} else if (val == 'import') { // 导入
|
|
handleImport()
|
|
} else if (val == 'export') { // 导出
|
|
handleExport()
|
|
} else if (val == 'refresh') { // 刷新
|
|
if (tableObject.params.filters && tableObject.params.filters.length > 0 ) {
|
|
searchFormClick({
|
|
filters: tableObject.params.filters
|
|
})
|
|
} else {
|
|
getList()
|
|
}
|
|
} else if (val == 'filtrate') { // 筛选
|
|
} else { // 其他按钮
|
|
console.log('其他按钮', item)
|
|
}
|
|
}
|
|
|
|
// 根据状态返回该按钮是否显示
|
|
const isShowMainButton = (row, val) => {
|
|
if (val.indexOf(row.status) > -1) {
|
|
return false
|
|
} else {
|
|
return true
|
|
}
|
|
}
|
|
|
|
// 列表-操作按钮
|
|
const butttondata = (row,$index) => {
|
|
return [
|
|
defaultButtons.mainListPurchasePlanOpeBtn({ hide: isShowMainButton(row, ['9']) ,hasPermi: 'wms:supplierinvoice-request-main:open'}), // 打开
|
|
defaultButtons.mainListPlanSubBtn({ hide: isShowMainButton(row, ['1','6']),hasPermi: 'wms:supplierinvoice-request-main:sub' }), // 提交审批
|
|
{
|
|
label: t('ts.采购通过'),
|
|
name: 'purchase_mainPlanSub',
|
|
hide: isShowMainButton(row, ['2','7']) || !row.currentIsProcurementCreator,
|
|
type: 'primary',
|
|
icon: '',
|
|
color: '',
|
|
hasPermi: 'wms:supplierinvoice-request-main:app',
|
|
link: true, // 文本展现按钮
|
|
},{
|
|
label: t('ts.采购驳回'),
|
|
name: 'purchase_mainPlanTur',
|
|
hide: isShowMainButton(row, ['2','7']) || !row.currentIsProcurementCreator,
|
|
type: 'danger',
|
|
color: '',
|
|
link: true, // 文本展现按钮
|
|
hasPermi: 'wms:supplierinvoice-request-main:rej'
|
|
},
|
|
{
|
|
label: t('ts.供应商确认'),
|
|
name: 'invoice_sent_out',
|
|
hide: isShowMainButton(row, ['8']),
|
|
type: 'danger',
|
|
color: '',
|
|
link: true, // 文本展现按钮
|
|
hasPermi: 'wms:supplierinvoice-request-main:invoiceSentOut'
|
|
},
|
|
{
|
|
label: t('ts.财务通过'),
|
|
name: 'finance_mainPlanSub',
|
|
hide: isShowMainButton(row, ['4']),
|
|
type: 'primary',
|
|
icon: '',
|
|
color: '',
|
|
hasPermi: 'wms:supplierinvoice-request-main:financeApp',
|
|
link: true, // 文本展现按钮
|
|
},{
|
|
label: t('ts.财务驳回'),
|
|
name: 'finance_mainPlanTur',
|
|
hide: isShowMainButton(row, ['4']),
|
|
type: 'danger',
|
|
color: '',
|
|
link: true, // 文本展现按钮
|
|
hasPermi: 'wms:supplierinvoice-request-main:financeRej'
|
|
},
|
|
defaultButtons.mainListEditBtn({ hasPermi: 'wms:supplierinvoice-request-main:update' , hide: isShowMainButton(row, ['1','8','6'])}), // 编辑
|
|
defaultButtons.mainListPurchasePlanCloBtn({ hasPermi: 'wms:supplierinvoice-request-main:close' ,hide: isShowMainButton(row, ['1','8','6']) }), // 关闭
|
|
{
|
|
label: t('ts.作废'),
|
|
name: 'repeal',
|
|
hide: isShowMainButton(row, ['1','8','6']),
|
|
type: 'danger',
|
|
color: '',
|
|
link: true, // 文本展现按钮
|
|
hasPermi: 'wms:supplierinvoice-request-main:repeal'
|
|
},
|
|
// defaultButtons.mainListDeleteBtn({hasPermi:'wms:supplierinvoice-request-main:delete'}), // 删除
|
|
{
|
|
label: t('ts.打印'),
|
|
name: 'mian_print',
|
|
hide: !row.voucher_number,
|
|
type: 'primary',
|
|
color: '',
|
|
link: true, // 文本展现按钮
|
|
hasPermi: ''
|
|
}
|
|
]
|
|
}
|
|
|
|
/** 导入 */
|
|
const importFormRef = ref()
|
|
const handleImport = () => {
|
|
importFormRef.value.open()
|
|
}
|
|
|
|
// 列表-操作按钮事件
|
|
const buttonTableClick = async (val, row) => {
|
|
if (val == 'mainPurPlanOpe') { // 打开
|
|
handleOpe(row.id)
|
|
} else if (val == 'mainPurPlanClo') {// 关闭
|
|
handleClo(row.id)
|
|
} else if (val == 'mainPlanSub') { // 提交审批
|
|
handleSub(row.id)
|
|
} else if (val == 'purchase_mainPlanSub') { // 采购审批通过
|
|
handleApp(row.id)
|
|
} else if (val == 'purchase_mainPlanTur') { // 采购驳回按钮
|
|
resonSubmit(val, row)
|
|
// handleTur(row.id)
|
|
} else if (val == 'invoice_sent_out') { // 发票寄出确认
|
|
handleInvoiceSentOut(row.id)
|
|
} else if(val == 'finance_mainPlanSub'){ // 财务审批通过
|
|
handleFinanceApp(row.id)
|
|
} else if(val == 'finance_mainPlanTur'){ //财务审批拒绝
|
|
resonSubmit(val, row)
|
|
// handleFinaceTur(row.masterId)
|
|
} else if (val == 'genRecords') { // 处理
|
|
genRecords(row.id)
|
|
} else if (val == 'edit') { // 编辑
|
|
openForm('update', row)
|
|
} else if (val == 'delete') { // 删除
|
|
handleDelete(row.id)
|
|
} else if( val == 'mian_print'){ // 打印
|
|
handleDocumentPrint(row.id)
|
|
} else if( val == 'repeal'){ // 作废
|
|
handleRepeal(row.id)
|
|
}
|
|
}
|
|
|
|
/** 添加/修改操作 */
|
|
const formRef = ref()
|
|
const openForm = async (type : string, row ?: number) => {
|
|
if(type=='update'){
|
|
SupplierinvoiceRequestMain.allSchemas.formSchema.forEach((item) => {
|
|
if(item.field == 'orderType'){
|
|
item.componentProps.disabled = true
|
|
}
|
|
if(row.status=='3'){
|
|
if(item.field == 'procurementCreator'){
|
|
// 采购价格审批人
|
|
item.componentProps.disabled = true
|
|
}
|
|
if(item.field == 'taxRate'){
|
|
// 税率
|
|
item.componentProps.disabled = true
|
|
}
|
|
}else{
|
|
if(item.field == 'procurementCreator'){
|
|
// 采购价格审批人
|
|
item.componentProps.disabled = false
|
|
}
|
|
if(item.field == 'taxRate'){
|
|
// 税率
|
|
item.componentProps.disabled = false
|
|
}
|
|
}
|
|
|
|
|
|
})
|
|
|
|
}else{
|
|
SupplierinvoiceRequestMain.allSchemas.formSchema.forEach((item) => {
|
|
if(item.field == 'orderType'){
|
|
item.componentProps.disabled = false
|
|
}
|
|
if(item.field == 'supplierCode'){
|
|
//默认供应商代码
|
|
item.value = defaultSupplierCode.value
|
|
}
|
|
if(item.field == 'procurementCreator'){
|
|
//采购价格审批人
|
|
item.componentProps.disabled = false
|
|
}
|
|
if(item.field == 'taxRate'){
|
|
// 税率
|
|
item.componentProps.disabled = false
|
|
}
|
|
})
|
|
}
|
|
|
|
if(row && row.status == '8'){
|
|
SupplierinvoiceRequestMainRules.invoiceTime[0].required = true
|
|
SupplierinvoiceRequestMainRules.goldenTaxInvoiceNumber[0].required = true
|
|
}else{
|
|
SupplierinvoiceRequestMainRules.invoiceTime[0].required = false
|
|
SupplierinvoiceRequestMainRules.goldenTaxInvoiceNumber[0].required = false
|
|
}
|
|
if(row&&row.procurementCreator) row.procurementCreator = Number(row.procurementCreator)
|
|
// 校验是否可以开票
|
|
SupplierinvoiceRequestMainApi.checkInvoicingCalendar({}).then(res => {
|
|
if(res.flag){
|
|
message.alertWarning(res.msg)
|
|
return
|
|
}
|
|
tableData.value = [] // 重置明细数据
|
|
formRef.value.open(type, row)
|
|
})
|
|
}
|
|
const defaultSupplierCode = ref('')
|
|
const getDefaultSupplier = async ()=>{
|
|
let supplier = await SupplierApi.getSupplierPageSCP({isSearch:false})
|
|
if(supplier.list&&supplier.list.length>0){
|
|
defaultSupplierCode.value = supplier.list[0]['code']
|
|
}else{
|
|
defaultSupplierCode.value = ''
|
|
}
|
|
console.log('defaultSupplierCode',defaultSupplierCode)
|
|
}
|
|
|
|
|
|
// 获取部门 用于详情 部门回显
|
|
const { wsCache } = useCache()
|
|
/** 详情操作 */
|
|
const detailRef = ref()
|
|
const clicKRowId = ref();
|
|
const detailAnnexTable = ref(
|
|
[{
|
|
label: t('ts.合同附件'),
|
|
prop: 'Annex',
|
|
tableName:'contract',
|
|
hiddenDelete:false,
|
|
hiddenUpload:false
|
|
},{
|
|
label: t('ts.发票附件'),
|
|
prop: 'Annex',
|
|
tableName:'invoice'
|
|
},{
|
|
label: t('ts.货运单附件'),
|
|
prop: 'Annex',
|
|
tableName:'waybill'
|
|
}])
|
|
const openDetail = (row : any, titleName : any, titleValue : any) => {
|
|
const departmentCode = wsCache.get(CACHE_KEY.DEPT).find((account) => account.id == row.departmentCode)?.name
|
|
if (departmentCode) row.departmentCode = JSON.parse(JSON.stringify(departmentCode))
|
|
clicKRowId.value = row.id
|
|
detailAnnexTable.value[0].hiddenDelete = Number(row.status)>=3
|
|
detailAnnexTable.value[0].hiddenUpload = Number(row.status)>=3
|
|
detailRef.value.openDetail(row, titleName, titleValue)
|
|
}
|
|
|
|
/** 删除按钮操作 */
|
|
const handleDelete = async (id : number) => {
|
|
try {
|
|
// 删除的二次确认
|
|
await message.delConfirm()
|
|
tableObject.loading = true
|
|
// 发起删除
|
|
await SupplierinvoiceRequestMainApi.deleteSupplierinvoiceRequestMain(id)
|
|
message.success(t('common.delSuccess'))
|
|
tableObject.loading = false
|
|
// 刷新列表
|
|
await getList()
|
|
} catch { }finally{
|
|
tableObject.loading = false
|
|
}
|
|
}
|
|
|
|
/** 关闭按钮操作 */
|
|
const handleClo = async (id : number) => {
|
|
try {
|
|
// 关闭的二次确认
|
|
await message.confirm(t('ts.是否关闭所选中数据?'))
|
|
tableObject.loading = true
|
|
// 发起关闭
|
|
await SupplierinvoiceRequestMainApi.cloSupplierinvoiceRequestMain(id)
|
|
message.success(t('ts.关闭成功!'))
|
|
tableObject.loading = false
|
|
// 刷新列表
|
|
await getList()
|
|
} catch { }finally{
|
|
tableObject.loading = false
|
|
}
|
|
}
|
|
|
|
/** 关闭按钮操作 */
|
|
const handleRepeal = async (id : number) => {
|
|
try {
|
|
// 关闭的二次确认
|
|
await message.confirm(t('ts.是否作废所选中数据?'))
|
|
tableObject.loading = true
|
|
// 发起关闭
|
|
await SupplierinvoiceRequestMainApi.repealSupplierinvoiceRequestMain(id)
|
|
message.success(t('ts.作废成功!'))
|
|
tableObject.loading = false
|
|
// 刷新列表
|
|
await getList()
|
|
} catch { }finally{
|
|
tableObject.loading = false
|
|
}
|
|
}
|
|
|
|
/** 打开按钮操作 */
|
|
const handleOpe = async (id : number) => {
|
|
try {
|
|
// 打开的二次确认
|
|
await message.confirm(t('ts.是否打开所选中数据?'))
|
|
tableObject.loading = true
|
|
// 发起打开
|
|
await SupplierinvoiceRequestMainApi.opeSupplierinvoiceRequestMain(id)
|
|
message.success(t('ts.打开成功!'))
|
|
tableObject.loading = false
|
|
// 刷新列表
|
|
await getList()
|
|
} catch { }finally{
|
|
tableObject.loading = false
|
|
}
|
|
}
|
|
|
|
/** 提交审批按钮操作 */
|
|
const handleSub = async (id : number) => {
|
|
try {
|
|
// 提交审批的二次确认
|
|
await message.confirm(t('ts.是否提交审批所选中数据?'))
|
|
tableObject.loading = true
|
|
// 发起提交审批
|
|
await SupplierinvoiceRequestMainApi.subSupplierinvoiceRequestMain(id)
|
|
message.success(t('ts.提交审批成功!'))
|
|
tableObject.loading = false
|
|
// 刷新列表
|
|
await getList()
|
|
} catch { }finally{
|
|
tableObject.loading = false
|
|
}
|
|
}
|
|
|
|
/** 采购审批通过按钮操作 */
|
|
const handleApp = async (id : number) => {
|
|
try {
|
|
// 审批通过的二次确认
|
|
await message.confirm(t('ts.是否审批通过所选中数据?'))
|
|
tableObject.loading = true
|
|
// 发起审批通过
|
|
await SupplierinvoiceRequestMainApi.appSupplierinvoiceRequestMain(id)
|
|
message.success(t('ts.审批通过成功!'))
|
|
tableObject.loading = false
|
|
// 刷新列表
|
|
await getList()
|
|
} catch { }finally{
|
|
tableObject.loading = false
|
|
}
|
|
}
|
|
|
|
|
|
/** 审批通过按钮操作 */
|
|
const handleFinanceApp = async (id : number) => {
|
|
try {
|
|
// 审批通过的二次确认
|
|
await message.confirm(t('ts.是否审批通过所选中数据?'))
|
|
tableObject.loading = true
|
|
// 发起审批通过
|
|
await SupplierinvoiceRequestMainApi.financeappSupplierinvoiceRequestMain(id)
|
|
message.success(t('ts.审批通过成功!'))
|
|
tableObject.loading = false
|
|
// 刷新列表
|
|
await getList()
|
|
} catch { }finally{
|
|
tableObject.loading = false
|
|
}
|
|
}
|
|
|
|
/** 驳回按钮操作 */
|
|
const handleTur = async (id : number,cause:string) => {
|
|
try {
|
|
// 驳回的二次确认
|
|
// await message.confirm(t('ts.是否驳回所选中数据?'))
|
|
tableObject.loading = true
|
|
// 发起驳回
|
|
await SupplierinvoiceRequestMainApi.rejSupplierinvoiceRequestMain({
|
|
id,
|
|
cause
|
|
})
|
|
message.success(t('ts.驳回成功!'))
|
|
tableObject.loading = false
|
|
// 刷新列表
|
|
await getList()
|
|
} catch { }finally{
|
|
tableObject.loading = false
|
|
}
|
|
}
|
|
|
|
/** 发票寄出确认按钮操作 */
|
|
const handleInvoiceSentOut = async (id : number) => {
|
|
try {
|
|
// 驳回的二次确认
|
|
await message.confirm(t('ts.是否确认发票寄出选中数据?'))
|
|
tableObject.loading = true
|
|
// 发起驳回
|
|
await SupplierinvoiceRequestMainApi.invoiceSentOutSupplierinvoiceRequestMain(id)
|
|
message.success(t('ts.发票寄出成功!'))
|
|
tableObject.loading = false
|
|
// 刷新列表
|
|
await getList()
|
|
} catch { }finally{
|
|
tableObject.loading = false
|
|
}
|
|
}
|
|
|
|
const resonSubmit = async (val, row)=>{
|
|
|
|
ElMessageBox.prompt(t('ts.请输入驳回原因'), t('ts.提示'), {
|
|
confirmButtonText: t('common.ok'),
|
|
cancelButtonText: t('common.cancel'),
|
|
inputPattern: /^[\s\S]*.*\S[\s\S]*$/, // 判断非空,且非空格
|
|
inputErrorMessage: t(`ts.${'驳回原因不能为空,且不超过60字'}`),
|
|
inputType:'textarea',
|
|
inputValidator:(value)=>{
|
|
if(value.length>60||value.length==0){
|
|
return false
|
|
}else{
|
|
return true
|
|
}
|
|
}
|
|
}).then(({ value }) => {
|
|
// 驳回原因
|
|
if (val == 'purchase_mainPlanTur') { // 采购驳回按钮
|
|
handleTur(row.id,value)
|
|
}else if(val == 'finance_mainPlanTur'){ //财务审批拒绝
|
|
handleFinaceTur(row.id,value)
|
|
}
|
|
})
|
|
.catch(() => {
|
|
})
|
|
}
|
|
|
|
/** 驳回按钮操作 */
|
|
const handleFinaceTur = async (id : number,cause:string) => {
|
|
try {
|
|
// 驳回的二次确认
|
|
// await message.confirm(t('ts.是否驳回所选中数据?'))
|
|
tableObject.loading = true
|
|
// 发起驳回
|
|
await SupplierinvoiceRequestMainApi.financerejSupplierinvoiceRequestMain({
|
|
id,
|
|
cause
|
|
})
|
|
message.success(t('ts.驳回成功!'))
|
|
tableObject.loading = false
|
|
// 刷新列表
|
|
await getList()
|
|
} catch { }finally{
|
|
tableObject.loading = false
|
|
}
|
|
}
|
|
|
|
/** 处理按钮操作 */
|
|
const genRecords = async (id : number) => {
|
|
try {
|
|
// 处理的二次确认
|
|
await message.confirm(t('ts.是否处理所选中数据?'))
|
|
tableObject.loading = true
|
|
// 发起处理
|
|
await SupplierinvoiceRequestMainApi.genRecordsSupplierinvoiceRequestMain(id)
|
|
message.success(t('ts.处理成功!'))
|
|
tableObject.loading = false
|
|
// 刷新列表
|
|
await getList()
|
|
} catch { }finally{
|
|
tableObject.loading = false
|
|
}
|
|
}
|
|
|
|
/** 导出按钮操作 */
|
|
const exportLoading = ref(false) // 导出的加载中
|
|
const handleExport = async () => {
|
|
let rows:any = []
|
|
selectionRows.value.forEach(item=>{
|
|
rows = [...rows,...item.selectionRows.map(item1=>item1.number)]
|
|
})
|
|
|
|
let paramsData =JSON.parse(JSON.stringify(tableObject.params))
|
|
if(tableObject.params&&tableObject.params.isSearch==true){
|
|
paramsData.filters.push({
|
|
action: "in",
|
|
column: "number",
|
|
value: rows.join(",")
|
|
})
|
|
}else{
|
|
paramsData = {...paramsData,checkNums:rows}
|
|
}
|
|
console.log('批量导出',paramsData)
|
|
try {
|
|
// 导出的二次确认
|
|
await message.exportConfirm()
|
|
// 发起导出
|
|
exportLoading.value = true
|
|
const data = await SupplierinvoiceRequestMainApi.exportSupplierinvoiceRequestMain(paramsData)
|
|
download.excel(data, `${t('ts.供应商发票申请主')}.xlsx`)
|
|
} catch {
|
|
} finally {
|
|
exportLoading.value = false
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
* tableForm方法
|
|
*/
|
|
const tableFormKeys = {}
|
|
SupplierinvoiceRequestDetail.allSchemas.tableFormColumns.forEach(item => {
|
|
tableFormKeys[item.field] = item.default ? item.default : ''
|
|
})
|
|
const tableData = ref([])
|
|
|
|
// 添加明细
|
|
const handleAddTable = () => {
|
|
tableData.value.push(JSON.parse(JSON.stringify(tableFormKeys)))
|
|
}
|
|
// 删除明细
|
|
const handleDeleteTable = (item, index) => {
|
|
tableData.value.splice(index, 1)
|
|
}
|
|
const tableSelectionDelete = (selection) => {
|
|
tableData.value = tableData.value.filter(item => !selection.includes(item))
|
|
}
|
|
|
|
// 主子数据 提交
|
|
const submitForm = async (formType, data) => {
|
|
tableData.value.forEach((item) => {
|
|
item.differencePrice = Number((Number(item?.singlePrice)-Number(item?.purchasePrice)).toFixed(6))
|
|
})
|
|
data.subList = tableData.value // 拼接子表数据参数
|
|
try {
|
|
if (formType === 'create') {
|
|
if(data.subList.length == 0){
|
|
message.warning(t('ts.请添明细数据'))
|
|
return;
|
|
}
|
|
if(data.subList.length > 999){
|
|
message.warning(t('ts.明细数据条数已超过最大数量限制【999条】'))
|
|
return;
|
|
}
|
|
await SupplierinvoiceRequestMainApi.createSupplierinvoiceRequestMain(data)
|
|
message.success(t('common.createSuccess'))
|
|
} else {
|
|
await SupplierinvoiceRequestMainApi.updateSupplierinvoiceRequestMain(data)
|
|
message.success(t('common.updateSuccess'))
|
|
}
|
|
formRef.value.dialogVisible = false
|
|
// 刷新当前列表
|
|
getList()
|
|
} finally {
|
|
formRef.value.formLoading = false
|
|
}
|
|
}
|
|
|
|
// 导入附件弹窗所需的参数
|
|
const importTemplateData = reactive({
|
|
templateUrl: '',
|
|
templateTitle: `${t('ts.供应商发货申请主导入模版')}.xlsx`
|
|
})
|
|
|
|
// 导入成功之后
|
|
const importSuccess = () => {
|
|
getList()
|
|
}
|
|
|
|
// 筛选提交
|
|
const searchFormClick = (searchData) => {
|
|
tableObject.params = {
|
|
isSearch: true,
|
|
filters: searchData.filters
|
|
}
|
|
getList() // 刷新当前列表
|
|
}
|
|
|
|
// 详情--头部按钮事件
|
|
const detailButtonBaseClick = (val, item) => {
|
|
console.log("点击的按钮",val)
|
|
if(val == 'printing'){
|
|
// 单据打印
|
|
handleDocumentPrint(clicKRowId.value)
|
|
}else if(val === 'printing-all'){
|
|
//打印全部发货单
|
|
handlePrintAll(clicKRowId.value)
|
|
}else if(val === 'export-detail'){
|
|
console.log("导出明细:",clicKRowId.value)
|
|
handleDetailExport(clicKRowId.value)
|
|
}
|
|
}
|
|
|
|
const tableFormButton = (val, item) => {
|
|
console.log("点击的按钮",val)
|
|
if(val == 'print'){
|
|
// 打印
|
|
SupplierinvoiceRequestMainApi.printSupplierRecord(item.asnBillNum).then(res =>{
|
|
if(res){
|
|
handleSupplierdeliverRecordPrint(res);
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
/** 导出明细按钮操作 */
|
|
const exportLoadingDetail = ref(false) // 导出的加载中
|
|
const handleDetailExport = async (masterId) => {
|
|
try {
|
|
// 导出的二次确认
|
|
await message.exportConfirm()
|
|
// 发起导出导出明细
|
|
exportLoadingDetail.value = true
|
|
let params = {
|
|
masterId: masterId
|
|
}
|
|
const data = await SupplierinvoiceRequestMainApi.exportSupplierinvoiceRequestDetail(params)
|
|
download.excel(data, `${t('ts.供应商发票申请明细')}.xlsx`)
|
|
} catch {
|
|
} finally {
|
|
exportLoadingDetail.value = false
|
|
}
|
|
}
|
|
|
|
const BASE_URL = import.meta.env.VITE_JMREPORT_BASE_URL
|
|
|
|
//供应商发货单打印
|
|
const documentSupplierdeliverRecordSrc = ref(BASE_URL + '/jmreport/view/932556833517789184?token=' + getAccessToken())
|
|
const handleSupplierdeliverRecordPrint = async (id) => {
|
|
window.open(documentSupplierdeliverRecordSrc.value + '&id=' + id)
|
|
}
|
|
|
|
// 单据打印
|
|
const documentSrc = ref(BASE_URL + '/jmreport/view/936875675614240768?token=' + getAccessToken())
|
|
const handleDocumentPrint = async (id) => {
|
|
window.open(documentSrc.value + '&id=' + id)
|
|
}
|
|
|
|
const handlePrintAll = async (masterId) => {
|
|
// 打印
|
|
SupplierinvoiceRequestMainApi.printSupplierRecordByMasterId(masterId).then(res =>{
|
|
if(res && res.length > 0){
|
|
for(let i=0;i<res.length;i++){
|
|
let id = res[i];
|
|
handleSupplierdeliverRecordPrint(id);
|
|
}
|
|
}else{
|
|
message.warning(t('ts.非SCP订单无法打印'))
|
|
return;
|
|
}
|
|
})
|
|
}
|
|
|
|
/** 初始化 **/
|
|
onMounted(async () => {
|
|
getList()
|
|
getDefaultSupplier()
|
|
importTemplateData.templateUrl = await SupplierinvoiceRequestMainApi.importTemplate()
|
|
})
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.is-red{
|
|
border-radius:var(--el-border-radius-base);
|
|
border:1px solid var(--el-color-danger);
|
|
box-shadow: 0 0 0 1px var(--el-color-danger) inset;
|
|
}
|
|
.red-text{
|
|
color:var(--el-color-danger);
|
|
font-weight:700;
|
|
}
|
|
</style>
|
|
|