Browse Source

库存余额,打印标签功能修改 YT-459

intex_online20241111
YEJIAXING-PC\lenovo 1 month ago
parent
commit
6a2d98a132
  1. 5
      src/api/wms/package/index.ts
  2. 267
      src/views/wms/inventoryManage/balance/index.vue
  3. 1
      src/views/wms/moveManage/inventorymove/inventorymoveRecordMainNew/index.vue

5
src/api/wms/package/index.ts

@ -132,9 +132,10 @@ export const getBalanceToPackage = async (packingNumber: String) => {
} }
// 根据库存余额获取包装信息进行打印标签(英泰) // 根据库存余额获取包装信息进行打印标签(英泰)
export const getBalanceToPackageByIntex = async (itemCode: String) => { export const getBalanceToPackageByIntex = async (itemCode: String,batch: String) => {
const data = { const data = {
itemCode: itemCode itemCode: itemCode,
batch: batch
} }
return await request.put({ url: `/wms/package/getBalanceToPackageByIntex`, data: data}) return await request.put({ url: `/wms/package/getBalanceToPackageByIntex`, data: data})
} }

267
src/views/wms/inventoryManage/balance/index.vue

@ -6,17 +6,19 @@
<!-- 列表头部 --> <!-- 列表头部 -->
<TableHead <TableHead
:HeadButttondata="HeadButttondata" :HeadButttondata="HeadButttondata"
@button-base-click="buttonBaseClick" @button-base-click="buttonBaseClick"
:route-name="routeName" :route-name="routeName"
@updataTableColumns="updataTableColumns" @updataTableColumns="updataTableColumns"
@searchFormClick="searchFormClick" @searchFormClick="searchFormClick"
:allSchemas="Balance.allSchemas" :allSchemas="Balance.allSchemas"
/> />
<!-- 列表 --> <!-- 列表 -->
<ContentWrap> <ContentWrap>
<Table ref="tableRef" v-clientTable <Table
ref="tableRef"
v-clientTable
:selection="true" :selection="true"
:columns="tableColumns" :columns="tableColumns"
:data="tableObject.tableList" :data="tableObject.tableList"
@ -29,13 +31,17 @@
v-model:sort="tableObject.sort" v-model:sort="tableObject.sort"
@getSelectionRows="getSelectionRows" @getSelectionRows="getSelectionRows"
> >
<template #itemCode="{row}"> <template #itemCode="{ row }">
<el-button :type="row.frozen=='TRUE'||row.expireDate<dayjs().valueOf()?'danger':'primary'" link @click="openDetail(row, '物料代码', row.itemCode)"> <el-button
<span >{{ row.itemCode }}</span> :type="row.frozen == 'TRUE' || row.expireDate < dayjs().valueOf() ? 'danger' : 'primary'"
link
@click="openDetail(row, '物料代码', row.itemCode)"
>
<span>{{ row.itemCode }}</span>
</el-button> </el-button>
</template> </template>
<template #action="{ row }"> <template #action="{ row }">
<ButtonBase :Butttondata="butttondata" @button-base-click="buttonTableClick($event,row)" /> <ButtonBase :Butttondata="butttondata" @button-base-click="buttonTableClick($event, row)" />
</template> </template>
</Table> </Table>
</ContentWrap> </ContentWrap>
@ -59,16 +65,26 @@
:detailAllSchemas="TransactionTab.allSchemas" :detailAllSchemas="TransactionTab.allSchemas"
:apiPage="apiPage" :apiPage="apiPage"
:tabsExtend="tabsExtend" :tabsExtend="tabsExtend"
:tabs="[{ :tabs="[
label: '库存事务', {
prop: 'Transaction' label: '库存事务',
}]" prop: 'Transaction'
}
]"
@changeTabs="changeTabs" @changeTabs="changeTabs"
:tableObjectExtend="tableObjectExtend" :tableObjectExtend="tableObjectExtend"
/> />
<!-- 标签打印 -->
<SearchTable style="width:905px" ref="searchTableRef" @searchTableSuccess="searchTableSuccessLabel" />
<!-- 导入 --> <!-- 导入 -->
<ImportForm ref="importFormRef" url="/wms/balance/import" :importTemplateData="importTemplateData" @success="importSuccess" /> <ImportForm
ref="importFormRef"
url="/wms/balance/import"
:importTemplateData="importTemplateData"
@success="importSuccess"
/>
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
@ -77,7 +93,7 @@ import download from '@/utils/download'
import * as BalanceApi from '@/api/wms/balance' import * as BalanceApi from '@/api/wms/balance'
import * as PackageApi from '@/api/wms/package' import * as PackageApi from '@/api/wms/package'
import BasicForm from '@/components/BasicForm/src/BasicForm.vue' import BasicForm from '@/components/BasicForm/src/BasicForm.vue'
import { Balance,TransactionTab, BalanceRules } from './balance.data' import { Balance, TransactionTab, BalanceRules } from './balance.data'
import * as defaultButtons from '@/utils/disposition/defaultButtons' import * as defaultButtons from '@/utils/disposition/defaultButtons'
import TableHead from '@/components/TableHead/src/TableHead.vue' import TableHead from '@/components/TableHead/src/TableHead.vue'
import ImportForm from '@/components/ImportForm/src/ImportForm.vue' import ImportForm from '@/components/ImportForm/src/ImportForm.vue'
@ -86,6 +102,9 @@ import { getAccessToken } from '@/utils/auth'
import { getJmreportBaseUrl } from '@/utils/systemParam' import { getJmreportBaseUrl } from '@/utils/systemParam'
import { formatDate } from '@/utils/formatTime' import { formatDate } from '@/utils/formatTime'
import { usePageLoading } from '@/hooks/web/usePageLoading' import { usePageLoading } from '@/hooks/web/usePageLoading'
import {
SupplierdeliverRequestPackage
} from '@/views/wms/purchasereceiptManage/supplierdeliver/supplierdeliverRequestMain/supplierdeliverRequestMain.data'
const { loadStart, loadDone } = usePageLoading() const { loadStart, loadDone } = usePageLoading()
// //
defineOptions({ name: 'Balance' }) defineOptions({ name: 'Balance' })
@ -117,11 +136,11 @@ const { getList, setSearchParams } = tableMethods
const HeadButttondata = [ const HeadButttondata = [
// defaultButtons.defaultAddBtn({hasPermi:'wms:balance:create'}), // // defaultButtons.defaultAddBtn({hasPermi:'wms:balance:create'}), //
// defaultButtons.defaultImportBtn({hasPermi:'wms:balance:import'}), // // defaultButtons.defaultImportBtn({hasPermi:'wms:balance:import'}), //
defaultButtons.defaultExportBtn({hasPermi:'wms:balance:export'}), // defaultButtons.defaultExportBtn({ hasPermi: 'wms:balance:export' }), //
defaultButtons.mainLisSelectiontPointBtn(null), // defaultButtons.mainLisSelectiontPointBtn(null), //
defaultButtons.defaultFreshBtn(null),// defaultButtons.defaultFreshBtn(null), //
defaultButtons.defaultFilterBtn(null), // defaultButtons.defaultFilterBtn(null), //
defaultButtons.defaultSetBtn(null), // defaultButtons.defaultSetBtn(null) //
// { // {
// label: '', // label: '',
// name: 'zdy', // name: 'zdy',
@ -134,40 +153,49 @@ const HeadButttondata = [
// //
const buttonBaseClick = (val, item) => { const buttonBaseClick = (val, item) => {
if (val == 'add') { // if (val == 'add') {
//
openForm('create') openForm('create')
} else if (val == 'import') { // } else if (val == 'import') {
//
handleImport() handleImport()
} else if (val == 'export') { // } else if (val == 'export') {
//
handleExport() handleExport()
} else if (val == 'refresh') { // } else if (val == 'refresh') {
//
selectionRows.value = [] selectionRows.value = []
if (tableObject.params.filters && tableObject.params.filters.length > 0 ) { if (tableObject.params.filters && tableObject.params.filters.length > 0) {
searchFormClick({ searchFormClick({
filters: tableObject.params.filters filters: tableObject.params.filters
}) })
} else { } else {
getList() getList()
} }
} else if (val == 'filtrate') { // } else if (val == 'filtrate') {
} else if (val=='selection_point'){// //
} else if (val == 'selection_point') {
//
handleSelectionPoint() handleSelectionPoint()
} else { // } else {
//
console.log('其他按钮', item) console.log('其他按钮', item)
} }
} }
const searchList = (model)=>{ const searchList = (model) => {
selectionRows.value = [] selectionRows.value = []
setSearchParams(model) setSearchParams(model)
} }
watch( watch(
() => tableObject.tableList, () => tableObject.tableList,
() => { () => {
const currentRows = selectionRows.value.find(item=>item.currentPage==tableObject.currentPage) const currentRows = selectionRows.value.find(
if(currentRows){ (item) => item.currentPage == tableObject.currentPage
)
if (currentRows) {
nextTick(() => { nextTick(() => {
currentRows.selectionRows.forEach(item=>{ currentRows.selectionRows.forEach((item) => {
tableRef.value.toggleRowSelection(item,true) tableRef.value.toggleRowSelection(item, true)
}) })
}) })
} }
@ -175,48 +203,49 @@ watch(
) )
const selectionRows = ref<any>([]) const selectionRows = ref<any>([])
const tableRef = ref() const tableRef = ref()
const getSelectionRows = (currentPage,currentPageSelectionRows) => { const getSelectionRows = (currentPage, currentPageSelectionRows) => {
console.log("getSelectionRows",currentPage,currentPageSelectionRows) console.log('getSelectionRows', currentPage, currentPageSelectionRows)
const currentRows = selectionRows.value.find(item=>item.currentPage==currentPage) const currentRows = selectionRows.value.find((item) => item.currentPage == currentPage)
if(currentRows){ if (currentRows) {
currentRows.selectionRows = currentPageSelectionRows currentRows.selectionRows = currentPageSelectionRows
}else{ } else {
selectionRows.value.push({ selectionRows.value.push({
currentPage, currentPage,
selectionRows:currentPageSelectionRows selectionRows: currentPageSelectionRows
}) })
} }
} }
const handleSelectionPoint = async ()=>{ const handleSelectionPoint = async () => {
let rows:any = [] let rows: any = []
selectionRows.value.forEach(item=>{ selectionRows.value.forEach((item) => {
rows = [...rows,...item.selectionRows.map(item1=>item1.packingNumber)] rows = [...rows, ...item.selectionRows.map((item1) => item1.packingNumber)]
}) })
console.log('批量打印',rows.join(',')) console.log('批量打印', rows.join(','))
let getLoading = ElLoading.service({ let getLoading = ElLoading.service({
lock: true, lock: true,
text: 'loading...', text: 'loading...',
background: 'rgba(0, 0, 0, 0.7)' background: 'rgba(0, 0, 0, 0.7)'
}) })
PackageApi.getBalanceToPackageSelection(rows).then(res => { PackageApi.getBalanceToPackageSelection(rows)
console.log('res',res); .then((res) => {
getLoading?.close() console.log('res', res)
if(res.zzLabel){ getLoading?.close()
// if (res.zzLabel) {
const src = ref(BASE_URL + '/jmreport/view/922734157577715712?token=' + getAccessToken()) //
window.open(src.value+'&asn_number='+res.zzLabel) const src = ref(BASE_URL + '/jmreport/view/922734157577715712?token=' + getAccessToken())
} window.open(src.value + '&asn_number=' + res.zzLabel)
if (res.cgLabel) { }
// if (res.cgLabel) {
const src = ref(BASE_URL + '/jmreport/view/922729953438072832?token=' + getAccessToken()) //
window.open(src.value+'&asn_number='+res.cgLabel) const src = ref(BASE_URL + '/jmreport/view/922729953438072832?token=' + getAccessToken())
} window.open(src.value + '&asn_number=' + res.cgLabel)
}
}).catch(err => { })
console.log(err) .catch((err) => {
getLoading?.close() console.log(err)
}) getLoading?.close()
})
// window.open(srcPoint.value+'&relateNumber='+rows.join(',')) // window.open(srcPoint.value+'&relateNumber='+rows.join(','))
} }
// - // -
@ -229,10 +258,10 @@ const butttondata = [
icon: '', icon: '',
color: '', color: '',
link: true, link: true,
float:'right', float: 'right',
hasPermi: '' hasPermi: ''
}, },
defaultButtons.mainListPointBtn(null), // defaultButtons.mainListPointBtn(null) //
// defaultButtons.mainListEditBtn({hasPermi:'wms:balance:update'}), // // defaultButtons.mainListEditBtn({hasPermi:'wms:balance:update'}), //
// defaultButtons.mainListDeleteBtn({hasPermi:'wms:balance:delete'}), // // defaultButtons.mainListDeleteBtn({hasPermi:'wms:balance:delete'}), //
] ]
@ -240,9 +269,20 @@ const butttondata = [
// - // -
const buttonTableClick = async (val, row) => { const buttonTableClick = async (val, row) => {
if (val == 'bqxx') { if (val == 'bqxx') {
let aaa = 'HPQ;V1.0;I'+row.itemCode+';P'+row.packingNumber+';B'+row.batch+';Q'+row.qty+';U'+row.uom let aaa =
'HPQ;V1.0;I' +
row.itemCode +
';P' +
row.packingNumber +
';B' +
row.batch +
';Q' +
row.qty +
';U' +
row.uom
alert(aaa) alert(aaa)
}else if (val == 'point') { // } else if (val == 'point') {
//
handlePoint(row) handlePoint(row)
} }
// if (val == 'edit') { // // if (val == 'edit') { //
@ -264,35 +304,68 @@ const detailRef = ref()
const chooseRow = ref() const chooseRow = ref()
const openDetail = (row: any, titleName: any, titleValue: any) => { const openDetail = (row: any, titleName: any, titleValue: any) => {
chooseRow.value = row chooseRow.value = row
detailRef.value.openDetail(row, titleName, titleValue,'transactionBalance') detailRef.value.openDetail(row, titleName, titleValue, 'transactionBalance')
} }
const BASE_URL = getJmreportBaseUrl() const BASE_URL = getJmreportBaseUrl()
const labelType = ref('') // const labelType = ref('') //
//
const handlePoint = async (row) => { const handlePoint = async (row) => {
const itemCode = row.itemCode console.log(2333)
PackageApi.getBalanceToPackageByIntex(itemCode).then(res => { tableObject.loading = true
console.log(777,res); //
if (res.productionLineCode != null) { // await getLabelType(row,false)
labelType.value = 'zz' await getLabelDetailPage(row, false)
} else { }
labelType.value = 'cg'
} const searchTableRef = ref()
PackageApi.batchPrintingLable((res.number)).then((resLable) =>{
console.log(159,resLable ) const getLabelDetailPage = async (row, useToPackingNumber) => {
// ////
if (labelType.value == 'cg') { let defaultParams = {
const src = ref(BASE_URL + '/jmreport/view/922729953438072832?token=' + getAccessToken()) moduleName: 'move',
console.log(159,resLable ) recordNumber: '',
window.open(src.value+'&asn_number='+resLable) itemCode: row.itemCode,
} else { batch: row.batch
const src = ref(BASE_URL + '/jmreport/view/922734157577715712?token=' + getAccessToken())
window.open(src.value+'&asn_number='+resLable)
} }
}) const { tableObject: tableObjectPrint, tableMethods } = useTable({
defaultParams,
getListApi: PackageApi.getLabelDetailPage //
})
//
const { getList: getListPrint } = tableMethods
await getListPrint()
console.log('tableObjectPrint', tableObjectPrint)
tableObject.loading = false
const tableColumns = SupplierdeliverRequestPackage.allSchemas.tableFormColumns
tableColumns.forEach((item) => {
item.width = item.table?.width || 150
})
searchTableRef.value.openData('标签信息', tableObjectPrint, { tableColumns }, true)
}
// --
const searchTableSuccessLabel = async (formField, searchField, val, formRef, type, row) => {
console.log('批量打印',val)
if(val.length == 0){
message.warning("请先选择要打印的数据!")
return
}
await PackageApi.batchPrintingLable(val.map(item1=>item1.number).join(',')).then(res => {
console.log(res)
// if (labelType.value == 'cg') {
// const src = ref(BASE_URL + '/jmreport/view/922729953438072832?token=' + getAccessToken())
// window.open(src.value+'&asn_number='+res)
// } else {
// const src = ref(BASE_URL + '/jmreport/view/922734157577715712?token=' + getAccessToken())
// window.open(src.value+'&asn_number='+res)
// }
const src = ref(BASE_URL + '/jmreport/view/922734157577715712?token=' + getAccessToken())
window.open(src.value+'&asn_number='+res)
}).catch(err => { }).catch(err => {
console.log(err) console.log(err)
message.error('创建标签失败')
}) })
} }
@ -305,7 +378,7 @@ const handleDelete = async (id: number) => {
await BalanceApi.deleteBalance(id) await BalanceApi.deleteBalance(id)
message.success(t('common.delSuccess')) message.success(t('common.delSuccess'))
// //
buttonBaseClick('refresh',null) buttonBaseClick('refresh', null)
} catch {} } catch {}
} }
@ -352,21 +425,23 @@ const changeTabs = (item) => {
if (item.prop == 'Transaction') { if (item.prop == 'Transaction') {
tabsExtend.value = true tabsExtend.value = true
// //
tableObjectExtend.value = [{ tableObjectExtend.value = [
key: 'masterId', {
value: chooseRow.value.id key: 'masterId',
}] value: chooseRow.value.id
}
]
apiPage.value = BalanceApi.getTransactionBalancePage apiPage.value = BalanceApi.getTransactionBalancePage
console.log(988,tableObjectExtend.value) console.log(988, tableObjectExtend.value)
} else { } else {
tableObjectExtend.value = [] tableObjectExtend.value = []
tabsExtend.value = false tabsExtend.value = false
apiPage.value = '' apiPage.value = ''
} }
} }
/** 初始化 **/ /** 初始化 **/
onMounted(async() => { onMounted(async () => {
getList() getList()
// importTemplateData.templateUrl = await BalanceApi.importTemplate() // importTemplateData.templateUrl = await BalanceApi.importTemplate()
}) })

1
src/views/wms/moveManage/inventorymove/inventorymoveRecordMainNew/index.vue

@ -181,7 +181,6 @@ const openForm =async (type: string, row?: number) => {
formRef.value.open(type, row) formRef.value.open(type, row)
} }
// -
// - // -
const butttondata = (row,$index) => { const butttondata = (row,$index) => {
// const findIndex = row['masterId']?tableObject.tableList.findIndex(item=>item['masterId'] == row['masterId']):-1 // const findIndex = row['masterId']?tableObject.tableList.findIndex(item=>item['masterId'] == row['masterId']):-1

Loading…
Cancel
Save