|
@@ -125,6 +125,12 @@
|
|
|
</template>
|
|
|
批量导出
|
|
|
</a-button>
|
|
|
+ <a-button @click="onPrint">
|
|
|
+ <template #icon>
|
|
|
+ <PrinterOutlined />
|
|
|
+ </template>
|
|
|
+ 打印
|
|
|
+ </a-button>
|
|
|
</a-space>
|
|
|
</template>
|
|
|
<template #bodyCell="{ column, record }">
|
|
@@ -154,6 +160,8 @@
|
|
|
<a-button type="link" danger size="small" v-if="hasPerm('qyFrontlineWarehouseDelete')">删除</a-button>
|
|
|
</a-popconfirm>
|
|
|
<a-button type="link" primary size="small" @click="goodsDetailRef.onOpen(record)">{{ (record.warehouseType == 0 ? '入' : '出') + '库单' }}</a-button>
|
|
|
+ <a-divider type="vertical"/>
|
|
|
+ <a-button type="link" primary size="small" @click="certificateDetailRef.onOpen(record)">记账凭证</a-button>
|
|
|
</a-space>
|
|
|
</template>
|
|
|
</template>
|
|
@@ -162,6 +170,7 @@
|
|
|
<Detail v-else ref="detailRef" @onClose="indexShow = true" @successful="onSearch()"/>
|
|
|
<EnterpriseDetail ref="enterpriseDetailRef"/>
|
|
|
<GoodsDetail ref="goodsDetailRef"/>
|
|
|
+ <CertificateDetail ref="certificateDetailRef"/>
|
|
|
</template>
|
|
|
|
|
|
<script setup name="qyfrontlinewarehouse">
|
|
@@ -170,8 +179,10 @@ import {cloneDeep} from 'lodash-es'
|
|
|
import Detail from './detail.vue'
|
|
|
import EnterpriseDetail from '@/views/yqyc/component/enterprise/detail.vue'
|
|
|
import GoodsDetail from './goods.vue'
|
|
|
+import CertificateDetail from './certificate.vue'
|
|
|
import qyFrontlineWarehouseApi from '@/api/yqyc/qyFrontlineWarehouseApi'
|
|
|
import downloadUtil from "@/utils/downloadUtil";
|
|
|
+import printJS from "print-js";
|
|
|
|
|
|
const {proxy} = getCurrentInstance()
|
|
|
const searchFormState = ref({
|
|
@@ -184,6 +195,7 @@ const filterParam = ref({})
|
|
|
const detailRef = ref()
|
|
|
const enterpriseDetailRef = ref()
|
|
|
const goodsDetailRef = ref()
|
|
|
+const certificateDetailRef = ref()
|
|
|
const indexShow = ref(true)
|
|
|
const toolConfig = {refresh: true, height: true, columnSetting: true, striped: false}
|
|
|
// 查询区域显示更多控制
|
|
@@ -247,6 +259,13 @@ const columns = ref([
|
|
|
dataIndex: 'accountTime',
|
|
|
sorter: true,
|
|
|
},
|
|
|
+ {
|
|
|
+ title: '操作',
|
|
|
+ dataIndex: 'action',
|
|
|
+ align: 'center',
|
|
|
+ width: 200,
|
|
|
+ fixed: 'right',
|
|
|
+ }
|
|
|
])
|
|
|
watch(() => searchFormStateReal.value.warehouseType, (n) => {
|
|
|
columns.value.forEach(v => {
|
|
@@ -260,12 +279,10 @@ watch(() => searchFormStateReal.value.warehouseType, (n) => {
|
|
|
})
|
|
|
// 操作栏通过权限判断是否显示
|
|
|
if (hasPerm(['qyFrontlineWarehouseEdit', 'qyFrontlineWarehouseDelete'])) {
|
|
|
- columns.value.push({
|
|
|
- title: '操作',
|
|
|
- dataIndex: 'action',
|
|
|
- align: 'center',
|
|
|
- width: 200,
|
|
|
- fixed: 'right',
|
|
|
+ columns.value.forEach(v => {
|
|
|
+ if (v.dataIndex === 'action') {
|
|
|
+ v.width = 400
|
|
|
+ }
|
|
|
})
|
|
|
}
|
|
|
const selectedRowKeys = ref([])
|
|
@@ -358,6 +375,9 @@ const onDetail = (record = null, view) => {
|
|
|
detailRef.value.onOpen(record, view)
|
|
|
})
|
|
|
}
|
|
|
+const onPrint = () => {
|
|
|
+ printJS('http://localhost:18070/dev/file/download?id=1809073783625551874', 'pdf')
|
|
|
+}
|
|
|
const accountTypeOptions = tool.dictList('account_type')
|
|
|
const businessTypeOptions = tool.dictList('bussiness_type')
|
|
|
const measurementUnitOptions = tool.dictList('measurement unit')
|