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.

612 lines
18 KiB

12 months ago
<template>
<ContentWrap>
<!-- 搜索工作栏 -->
10 months ago
<Search :schema="Balance.allSchemas.searchSchema" @search="searchList" @reset="searchList" />
12 months ago
</ContentWrap>
<!-- 列表头部 -->
<TableHead
:HeadButttondata="HeadButttondata"
@button-base-click="buttonBaseClick"
:route-name="routeName"
@updataTableColumns="updataTableColumns"
@searchFormClick="searchFormClick"
:allSchemas="Balance.allSchemas"
/>
12 months ago
<!-- 列表 -->
<ContentWrap>
<Table
ref="tableRef"
v-clientTable
10 months ago
:selection="true"
12 months ago
: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"
10 months ago
@getSelectionRows="getSelectionRows"
12 months ago
>
<template #itemCode="{ row }">
<el-button
:type="row.frozen == 'TRUE' || row.expireDate < dayjs().valueOf() ? 'danger' : 'primary'"
link
@click="openDetail(row, '物料代码', row.itemCode)"
>
<span>{{ row.itemCode }}</span>
12 months ago
</el-button>
</template>
<template #action="{ row }">
<ButtonBase :Butttondata="butttondata(row)" @button-base-click="buttonTableClick($event, row)" />
12 months ago
</template>
</Table>
</ContentWrap>
<!-- 表单弹窗添加/修改 -->
<BasicForm
ref="basicFormRef"
@success="getList"
:rules="BalanceRules"
12 months ago
:formAllSchemas="Balance.allSchemas"
:apiUpdate="BalanceApi.updateBalance"
:apiCreate="BalanceApi.createBalance"
:isBusiness="false"
/>
<!-- 详情 -->
<Detail
ref="detailRef"
:isBasic="true"
:allSchemas="TransactionTab.allSchemas"
:detailAllSchemas="TransactionTab.allSchemas"
6 months ago
:apiPage="apiPage"
:tabsExtend="tabsExtend"
:tabs="[
{
label: '库存事务',
prop: 'Transaction'
}
]"
6 months ago
@changeTabs="changeTabs"
:tableObjectExtend="tableObjectExtend"
/>
12 months ago
<!-- 标签打印 -->
// <SearchTable style="width:905px" ref="searchTableRef" @searchTableSuccess="searchTableSuccessLabel" />
<BasicForm
ref="labelPointFormRef"
@success="getList"
:tableAllSchemas="detailListTableColumns"
:tableFormRules="detailListTableColumnsRules"
:tableData="detatableData1"
:isBusiness="true"
:isShowButton="false"
@searchTableSuccess="searchTableSuccessLabel"
:isShowReduceButton="false"
@clearInput="clearInput"
:footButttondata="footButttondata"
@footButtonClick="footButtonClick"
/>
12 months ago
<!-- 导入 -->
<ImportForm
ref="importFormRef"
url="/wms/balance/import"
:importTemplateData="importTemplateData"
@success="importSuccess"
/>
12 months ago
</template>
<script setup lang="ts">
9 months ago
import dayjs from 'dayjs'
12 months ago
import download from '@/utils/download'
import { cloneDeep } from 'lodash-es'
12 months ago
import * as BalanceApi from '@/api/wms/balance'
import * as PackageApi from '@/api/wms/package'
12 months ago
import BasicForm from '@/components/BasicForm/src/BasicForm.vue'
import { Balance, TransactionTab, BalanceRules,BalancePackage,BalancePackageRules } from './balance.data'
12 months ago
import * as defaultButtons from '@/utils/disposition/defaultButtons'
import TableHead from '@/components/TableHead/src/TableHead.vue'
12 months ago
import ImportForm from '@/components/ImportForm/src/ImportForm.vue'
import Detail from '@/components/Detail/src/Detail.vue'
import { getAccessToken } from '@/utils/auth'
import { getJmreportBaseUrl } from '@/utils/systemParam'
import { formatDate } from '@/utils/formatTime'
import { usePageLoading } from '@/hooks/web/usePageLoading'
import * as ItembasicApi from '@/api/wms/itembasic'
import * as SupplieritemApi from '@/api/wms/supplieritem'
import * as ProductionlineitemApi from '@/api/wms/productionlineitem'
import {
SupplierdeliverRequestPackage,
SupplierdeliverRequestPackageRules
} from '@/views/wms/purchasereceiptManage/supplierdeliver/supplierdeliverRequestMain/supplierdeliverRequestMain.data'
console.log(222,SupplierdeliverRequestPackage)
const { loadStart, loadDone } = usePageLoading()
12 months ago
// 库存余额
defineOptions({ name: 'Balance' })
const message = useMessage() // 消息弹窗
const { t } = useI18n() // 国际化
const route = useRoute() //路由信息
const routeName = ref()
routeName.value = route.name
const tableColumns = ref(Balance.allSchemas.tableColumns)
6 months ago
const tabsExtend = ref(false)
const apiPage = ref()
const tableObjectExtend = ref()
const detailListTableColumns =cloneDeep(BalancePackage.allSchemas)
const detailListTableColumnsRules =cloneDeep(BalancePackageRules)
12 months ago
//字段设置 更新主列表字段
const updataTableColumns = (val) => {
tableColumns.value = val
}
const { tableObject, tableMethods } = useTable({
getListApi: BalanceApi.getBalancePageAll // 分页接口
12 months ago
})
// 获得表格的各种操作
const { getList, setSearchParams } = tableMethods
// 列表头部按钮
const HeadButttondata = [
// defaultButtons.defaultAddBtn({hasPermi:'wms:balance:create'}), // 新增
// defaultButtons.defaultImportBtn({hasPermi:'wms:balance:import'}), // 导入
defaultButtons.defaultExportBtn({ hasPermi: 'wms:balance:export' }), // 导出
// defaultButtons.mainLisSelectiontPointBtn(null), // 批量标签打印
defaultButtons.defaultFreshBtn(null), //刷新
12 months ago
defaultButtons.defaultFilterBtn(null), //筛选
defaultButtons.defaultSetBtn(null) // 设置
12 months ago
// {
// label: '自定义扩展按钮',
// name: 'zdy',
// hide: false,
// type: 'primary',
// icon: 'Select',
// color: ''
// },
]
// 头部按钮事件
12 months ago
const buttonBaseClick = (val, item) => {
if (val == 'add') {
// 新增
12 months ago
openForm('create')
} else if (val == 'import') {
// 导入
12 months ago
handleImport()
} else if (val == 'export') {
// 导出
12 months ago
handleExport()
} else if (val == 'refresh') {
// 刷新
7 months ago
selectionRows.value = []
if (tableObject.params.filters && tableObject.params.filters.length > 0) {
12 months ago
searchFormClick({
filters: tableObject.params.filters
})
} else {
getList()
}
} else if (val == 'filtrate') {
// 筛选
} else if (val == 'selection_point') {
// 批量打印
10 months ago
handleSelectionPoint()
} else {
// 其他按钮
12 months ago
console.log('其他按钮', item)
}
}
const searchList = (model) => {
10 months ago
selectionRows.value = []
setSearchParams(model)
}
10 months ago
watch(
() => tableObject.tableList,
() => {
const currentRows = selectionRows.value.find(
(item) => item.currentPage == tableObject.currentPage
)
if (currentRows) {
10 months ago
nextTick(() => {
currentRows.selectionRows.forEach((item) => {
tableRef.value.toggleRowSelection(item, true)
10 months ago
})
})
}
}
)
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) {
10 months ago
currentRows.selectionRows = currentPageSelectionRows
} else {
10 months ago
selectionRows.value.push({
currentPage,
selectionRows: currentPageSelectionRows
10 months ago
})
}
}
12 months ago
const handleSelectionPoint = async () => {
let rows: any = []
selectionRows.value.forEach((item) => {
rows = [...rows, ...item.selectionRows.map((item1) => item1.packingNumber)]
10 months ago
})
console.log('批量打印', rows.join(','))
let getLoading = ElLoading.service({
lock: true,
text: 'loading...',
background: 'rgba(0, 0, 0, 0.7)'
})
PackageApi.getBalanceToPackageSelection(rows)
.then((res) => {
console.log('res', res)
getLoading?.close()
if (res.zzLabel) {
//制造标签
const src = ref(BASE_URL + '/jmreport/view/922734157577715712?token=' + getAccessToken())
window.open(src.value + '&asn_number=' + res.zzLabel)
}
if (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)
getLoading?.close()
})
10 months ago
// window.open(srcPoint.value+'&relateNumber='+rows.join(','))
}
const isShowPointBtn = (row) =>{
 if(row.qty>0){
   return false
 }else{
   return true
 }
}
12 months ago
// 列表-操作按钮
const butttondata = (row) => {
  return [
// {
// label: '标签信息',
// name: 'bqxx',
// hide: false,
// type: 'primary',
// icon: '',
// color: '',
// link: true,
// float: 'right',
// hasPermi: ''
// },
defaultButtons.mainListPointBtn({hide: isShowPointBtn(row)} ) // 标签打印
12 months ago
// defaultButtons.mainListEditBtn({hasPermi:'wms:balance:update'}), // 编辑
// defaultButtons.mainListDeleteBtn({hasPermi:'wms:balance:delete'}), // 删除
  ]
}
12 months ago
// 列表-操作按钮事件
12 months ago
const buttonTableClick = async (val, row) => {
if (val == 'bqxx') {
let aaa =
'HPQ;V1.0;I' +
row.itemCode +
';P' +
row.packingNumber +
';B' +
row.batch +
';Q' +
row.qty +
';U' +
row.uom
12 months ago
alert(aaa)
} else if (val == 'point') {
// 标签打印
handlePoint(row)
12 months ago
}
// if (val == 'edit') { // 编辑
// // const res = await BalanceApi.getItempackaging(row.id)
// openForm('update', row)
// } else if (val == 'delete') { // 删除
// handleDelete(row.id)
// }
}
/** 添加/修改操作 */
const basicFormRef = ref()
const openForm = (type: string, row?: any) => {
basicFormRef.value.open(type, row)
}
/** 详情操作 */
const detailRef = ref()
6 months ago
const chooseRow = ref()
12 months ago
const openDetail = (row: any, titleName: any, titleValue: any) => {
6 months ago
chooseRow.value = row
detailRef.value.openDetail(row, titleName, titleValue, 'transactionBalance')
12 months ago
}
const BASE_URL = getJmreportBaseUrl()
const labelType = ref('') // 标签类别 采购还是制造等
const labelPointFormRef = ref()
const detatableData1 = ref([])
const handlePoint = async (row) => {
await getLabelDetailPage(row,false)
labelPointFormRef.value.open('create', row, null, 'createLabel') //创建标签页面 createLabel 标题
}
const searchTableRef = ref()
const enableBuyOrenableMake = ref()//是可制造还是可采购
const getLabelDetailPage = async (row, useToPackingNumber) => {
////英泰项目没有包装号 所以只能通过物料号,批次,到库位代码去查询对应的包装
// let defaultParams = {
// moduleName: 'move',
// recordNumber: '',
// itemCode: row.itemCode,
// packQty: row.packQty,
// batch: row.batch
// }
// const { tableObject: tableObjectPrint, tableMethods } = useTable({
// defaultParams,
// getListApi: PackageApi.getLabelDetailPage // 分页接口
// })
// // 获得表格的各种操作
// const { getList: getListPrint } = tableMethods
// await getListPrint()
// tableObject.loading = false
// const tableColumns = SupplierdeliverRequestPackage.allSchemas.tableFormColumns
// tableColumns.forEach((item) => {
// item.width = item.table?.width || 150
// })
// detatableData1.value = tableObjectPrint.tableList
await ItembasicApi.getItembasicPage({
pageSize: 10,
pageNo: 1,
code: row.itemCode,
sort: '',
by: 'ASC',
}).then(res => {
if (res.list.length > 0) {
// 判断物料 可采购
detailListTableColumnsRules.value = cloneDeep(detailListTableColumnsRules)
enableBuyOrenableMake.value = res.list[0].enableBuy == "TRUE" ? 'enableBuy' : res.list[0].enableMake == "TRUE" ? 'enableMake' :''
if (res.list[0].enableBuy == "TRUE") {
detailListTableColumns.tableFormColumns = BalancePackage.allSchemas.tableFormColumns.filter(item=>item.field != 'productionLineCodePackage')
delete detailListTableColumnsRules.value.productionLineCodePackage
// 修改 tableform 属性
detailListTableColumns.tableFormColumns.map(itemColumns => {
if(itemColumns.field == 'supplierItemCode') {
SupplieritemApi.getSupplieritemPage({
pageSize: 10,
pageNo: 1,
itemCode: row.itemCode,
sort: '',
by: 'ASC',
}).then(response => {
row.supplierItemCode = response.list[0].supplierCode
})
}
})
}
// 判断物料 可制造
if (res.list[0].enableMake == "TRUE") {
// 修改 tableform 属性
detailListTableColumns.tableFormColumns = BalancePackage.allSchemas.tableFormColumns.filter(item=>item.field != 'supplierItemCode')
delete detailListTableColumnsRules.value.supplierItemCode
detailListTableColumns.tableFormColumns.map(itemColumns => {
if(itemColumns.field == 'productionLineCodePackage') {
ProductionlineitemApi.getProductionlineitemPage({
pageNo: 1,
itemCode: row.itemCode,
sort: '',
by: 'ASC',
}).then(response => {
row.productionLineCodePackage = response.list[0].productionLineCode
})
}
})
}
} else {
message.warning('没有查询到物料代码:【' + row.itemCode + '】')
return
}
})
detatableData1.value=[]//不走打印详情接口,用主数据
detatableData1.value.push(row)
detatableData1.value.forEach(item => {
item.printQty =row.qty
if (!item.batch) {
item.batch = formatDate(new Date(),'YYYYMMDD')
item['disabled_batch'] = false
} else {
item['disabled_batch'] = false
}
})
// searchTableRef.value.openData('标签信息', tableObjectPrint, { tableColumns }, true)
}
// 批量打印--预生产收货
const searchTableSuccessLabel = async (formField, searchField, val, formRef, type, row) => {
console.log('批量打印',val)
if (type == 'tableForm') {
} else {
const setV = {}
setV[formField] = val[0][searchField]
formRef.setValues(setV)
}
// 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 => {
// console.log(err)
// message.error('创建标签失败')
// })
}
12 months ago
/** 删除按钮操作 */
const handleDelete = async (id: number) => {
try {
// 删除的二次确认
await message.delConfirm()
// 发起删除
await BalanceApi.deleteBalance(id)
message.success(t('common.delSuccess'))
// 刷新列表
buttonBaseClick('refresh', null)
12 months ago
} catch {}
}
/** 导出按钮操作 */
const handleExport = async () => {
try {
// 导出的二次确认
await message.exportConfirm()
// 发起导出
loadStart()
const excelTitle = ref(route.meta.title)
12 months ago
const data = await BalanceApi.exportBalance(tableObject.params)
download.excel(data, `${excelTitle.value}】【${formatDate(new Date())}】.xlsx`)
12 months ago
} catch {
} finally {
loadDone()
12 months ago
}
}
/** 导入 */
const importFormRef = ref()
const handleImport = () => {
importFormRef.value.open()
}
// 导入附件弹窗所需的参数
const importTemplateData = reactive({
templateUrl: '',
templateTitle: `${route.meta.title}】导入模版.xlsx`
12 months ago
})
// 导入成功之后
const importSuccess = () => {
getList()
}
// 筛选提交
const searchFormClick = (searchData) => {
tableObject.params = {
isSearch: true,
filters: searchData.filters
}
getList() // 刷新当前列表
}
6 months ago
const changeTabs = (item) => {
if (item.prop == 'Transaction') {
tabsExtend.value = true
// 当前物料代码作为条件
tableObjectExtend.value = [
{
key: 'masterId',
value: chooseRow.value.id
}
]
6 months ago
apiPage.value = BalanceApi.getTransactionBalancePage
console.log(988, tableObjectExtend.value)
6 months ago
} else {
tableObjectExtend.value = []
6 months ago
tabsExtend.value = false
apiPage.value = ''
}
}
const footButttondata = ref([
defaultButtons.formSureBtn(null), // 确定
defaultButtons.formCloseBtn(null) // BOM关闭
])
const footButtonClick = async (val) => {
if (val == 'sure') {
const validateForm = await labelPointFormRef.value.tableFormRef.validateForm()
// console.log(11,detatableData1.value)
if (!validateForm) {
return
}
pointLabel()
} else if (val == 'close') {
labelPointFormRef.value.dialogVisible = false
}
}
const pointLabel = async () => {
4 months ago
// const array =detatableData1.value.map(item=>{
// return {
// packingNumber:item.number,
// batch: item.batch,
// printQty:item.printQty,
// }
// })
const obj = {
itemCode:detatableData1.value[0].itemCode,
batch:detatableData1.value[0].batch,
printQty:detatableData1.value[0].printQty,
packUnit:detatableData1.value[0].packUnit,
packQty:detatableData1.value[0].packQty,
uom:detatableData1.value[0].uom,
productionLineCodePackage:detatableData1.value[0].productionLineCodePackage,
supplierItemCode:detatableData1.value[0].supplierItemCode,
4 months ago
}
// const isHave = detatableData1.value.find(item => parseFloat(item.printQty) <= 0)
if(!parseFloat(obj.printQty) ){
message.error(`物料号${obj.itemCode}打印数量不可以为0`)
return;
}
await PackageApi.batchPrintingBalanceLableForCreate(obj).then(res => {
let src =ref('')
// src.value = BASE_URL + '/jmreport/view/922734157577715712?token=' + getAccessToken()+'&asn_number='+res//制造标签模板
if (enableBuyOrenableMake.value == 'enableBuy') {
src.value = BASE_URL + '/jmreport/view/1016234988731322368?token=' + getAccessToken()+'&id='+res//采购标签模板
} else if(enableBuyOrenableMake.value == 'enableMake') {
src.value = BASE_URL + '/jmreport/view/922734157577715712?token=' + getAccessToken()+'&asn_number='+res//制造标签模板
}
window.open(src.value)
}).catch(err => {
console.log(err)
message.error('创建标签失败')
})
}
12 months ago
/** 初始化 **/
onMounted(async () => {
12 months ago
getList()
// importTemplateData.templateUrl = await BalanceApi.importTemplate()
})
</script>