2026-04-03 08:38:34 +08:00
|
|
|
|
<template>
|
|
|
|
|
|
<!-- 物料列表 - 添加物料 -->
|
|
|
|
|
|
<view class="materialList">
|
|
|
|
|
|
<view class="remarkLine">
|
|
|
|
|
|
<text>物料列表</text>
|
2026-04-14 08:46:29 +08:00
|
|
|
|
<uv-button type="primary" v-if="isAddMaterial" :plain="true" size="small" text="添加物料"
|
2026-04-23 14:35:54 +08:00
|
|
|
|
@tap="toMaterial"></uv-button>
|
2026-04-14 08:46:29 +08:00
|
|
|
|
|
|
|
|
|
|
<view v-if="isShowRqCode" class="flex align-center justify-between">
|
2026-04-23 14:35:54 +08:00
|
|
|
|
<text class="f-12 mr-16 grey" style="font-size: 12px;" v-if="num > 0">
|
|
|
|
|
|
剩余<text style="color: red;">
|
2026-04-03 08:38:34 +08:00
|
|
|
|
{{ num }}
|
2026-04-23 14:35:54 +08:00
|
|
|
|
</text>种物料未生成唯一码
|
|
|
|
|
|
</text>
|
2026-04-03 08:38:34 +08:00
|
|
|
|
<uv-button type="primary" :plain="true" size="small" text="快速生成唯一码"
|
2026-04-23 14:35:54 +08:00
|
|
|
|
@tap="toGenerateUniqueCodeQuickly"></uv-button>
|
2026-04-03 08:38:34 +08:00
|
|
|
|
</view>
|
2026-04-14 08:46:29 +08:00
|
|
|
|
|
2026-04-03 08:38:34 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 物料列表-->
|
|
|
|
|
|
<view class="material-list-container">
|
|
|
|
|
|
<uni-forms ref="materialFormRef" :modelValue="formData">
|
|
|
|
|
|
<view v-for="(item, idx) in formData.material" :key="item.id || idx" class="material-box"
|
|
|
|
|
|
@longpress="() => handleItemLongPress(item, index)">
|
|
|
|
|
|
<view class="material-item" v-if="`${item?.isDelete}` === '0'">
|
|
|
|
|
|
<!-- 标题 -->
|
|
|
|
|
|
<view class="title mb-2">
|
|
|
|
|
|
{{ item.materialName }} ({{ item.materialCode }})
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<!-- 副标题:简称/型号/规格/类型 -->
|
|
|
|
|
|
<view class="subTitle mb-2">
|
2026-04-23 14:35:54 +08:00
|
|
|
|
<text v-if="item.materialShortName">{{ item.materialShortName }} / </text>
|
|
|
|
|
|
<text v-if="item.model">{{ item.model }} / </text>
|
|
|
|
|
|
<text v-if="item.specification">{{ item.specification }} / </text>
|
|
|
|
|
|
<text v-if="item.typeName">{{ item.typeName }}</text>
|
2026-04-03 08:38:34 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
<!-- uniqueCode -->
|
|
|
|
|
|
<view class="uniqueCode mb-2">
|
2026-04-23 14:35:54 +08:00
|
|
|
|
<text class="f-12 " v-if="item.uniqueCode">唯一码:{{ item?.uniqueCode }}</text>
|
2026-04-03 08:38:34 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
<!-- 数量 + 单位 -->
|
|
|
|
|
|
<view class="tag-row mb-2">
|
2026-04-23 14:35:54 +08:00
|
|
|
|
<text class="tag-error">{{ getTypeParentNames(item.typeParentNames) }}</text>
|
2026-04-03 08:38:34 +08:00
|
|
|
|
<view class="quantity-form">
|
|
|
|
|
|
<uni-forms-item :name="`material[${idx}].quantity`" label-width="0">
|
|
|
|
|
|
<uni-easyinput :disabled="!edit || isEdit == '5'"
|
|
|
|
|
|
v-model="formData.material[idx].quantity" type="number" :clearable="false"
|
|
|
|
|
|
placeholder="数量" />
|
|
|
|
|
|
</uni-forms-item>
|
|
|
|
|
|
<text class="unit">{{ item.unitName }}</text>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<!-- 库存状态 -->
|
2026-04-23 14:35:54 +08:00
|
|
|
|
<view class="flex justify-between mb-2 " v-if="isEdit == 3 && includes(keyType, 'stockIn')">
|
2026-04-03 08:38:34 +08:00
|
|
|
|
<p style="font-size: 13px;">
|
|
|
|
|
|
已入库:
|
2026-04-23 14:35:54 +08:00
|
|
|
|
<text style="color:green">{{ getStockQuantity(item, 'complete') }}</text>
|
2026-04-03 08:38:34 +08:00
|
|
|
|
</p>
|
|
|
|
|
|
<p style="font-size: 13px;">
|
|
|
|
|
|
剩余:
|
2026-04-23 14:35:54 +08:00
|
|
|
|
<text style="color:red">{{ getStockQuantity(item, 'remaining') }}</text>
|
2026-04-03 08:38:34 +08:00
|
|
|
|
</p>
|
|
|
|
|
|
</view>
|
2026-04-23 14:35:54 +08:00
|
|
|
|
<view class="flex justify-between mb-2 " v-if="isEdit == 3 && includes(keyType, 'stockOut')">
|
2026-04-14 08:46:29 +08:00
|
|
|
|
<p style="font-size: 13px;">
|
|
|
|
|
|
已出库:
|
2026-04-23 14:35:54 +08:00
|
|
|
|
<text style="color:green">{{ getStockQuantity(item, 'complete') }}</text>
|
2026-04-14 08:46:29 +08:00
|
|
|
|
</p>
|
|
|
|
|
|
<p style="font-size: 13px;">
|
|
|
|
|
|
剩余:
|
2026-04-23 14:35:54 +08:00
|
|
|
|
<text style="color:red">{{ getStockQuantity(item, 'remaining') }}</text>
|
2026-04-14 08:46:29 +08:00
|
|
|
|
</p>
|
|
|
|
|
|
</view>
|
2026-04-03 08:38:34 +08:00
|
|
|
|
<!-- 备注 -->
|
|
|
|
|
|
<view class="remark-row">
|
|
|
|
|
|
<uni-forms-item :name="`material[${idx}].remark`" label="备注:">
|
|
|
|
|
|
<uni-easyinput :disabled="!edit" v-model="formData.material[idx].remark" type="text"
|
|
|
|
|
|
:clearable="false" :inputBorder="false" placeholder="请填写备注信息" />
|
|
|
|
|
|
</uni-forms-item>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 空数据提示 -->
|
|
|
|
|
|
<view class="empty" v-if="!formData.material?.length">
|
|
|
|
|
|
暂无物料,请添加物料
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</uni-forms>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 选择物料 -->
|
|
|
|
|
|
<uv-modal ref="modalRef" class="chooseModal" :title="none" :showConfirmButton="false" :showCancelButton="false">
|
|
|
|
|
|
<p class="title">请选择称重来源</p>
|
2026-04-23 14:35:54 +08:00
|
|
|
|
<p class="link" v-if="includes(keyType, 'declaration')" @tap="toMaterialSelection('2')">蓝牙电子秤</p>
|
|
|
|
|
|
<p class="link" @tap="toMaterialSelection('0')">无线液位计</p>
|
|
|
|
|
|
<p class="link" @tap="toMaterialSelection('1')">手动输入</p>
|
2026-04-03 08:38:34 +08:00
|
|
|
|
|
|
|
|
|
|
</uv-modal>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 删除弹窗 -->
|
|
|
|
|
|
<view>
|
|
|
|
|
|
<uni-popup ref="alertDialog" type="center">
|
|
|
|
|
|
<uni-popup-dialog type="error" v-if="isDialog" cancelText="取消" confirmText="确认" title="是否需要删除该唯一码?"
|
|
|
|
|
|
@confirm="dialogConfirm" @close="dialogClose"></uni-popup-dialog>
|
|
|
|
|
|
</uni-popup>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
<script setup>
|
2026-04-14 08:46:29 +08:00
|
|
|
|
import { computed, ref, toRefs } from 'vue';
|
|
|
|
|
|
import { assign, findIndex, includes } from 'lodash';
|
2026-04-03 08:38:34 +08:00
|
|
|
|
import { getStockQuantity, objectToQuery } from '../until';
|
|
|
|
|
|
import { getTypeParentNames } from '../warehousing/uniqueCode/until';
|
2026-04-14 08:46:29 +08:00
|
|
|
|
const OPERATE_CONFIG = {
|
|
|
|
|
|
// 唯一码创建 /唯一码编辑 /唯一码详情 /入库单开单
|
|
|
|
|
|
issueUniqueCode: {
|
|
|
|
|
|
toMaterialUrl: '/pages/warehousing/uniqueCode/issueUniqueCode/materialSelection',
|
|
|
|
|
|
title: '入库单开单'
|
|
|
|
|
|
},
|
|
|
|
|
|
// 入库单入库
|
|
|
|
|
|
stockIn: {
|
|
|
|
|
|
toMaterialUrl: '/pages/warehousing/uniqueCode/issueUniqueCode/index',
|
|
|
|
|
|
title: '入库单开单'
|
|
|
|
|
|
},
|
2026-04-23 14:35:54 +08:00
|
|
|
|
// 申报单开单
|
|
|
|
|
|
declaration: {
|
|
|
|
|
|
toMaterialUrl: '/pages/warehousing/uniqueCode/issueUniqueCode/materialSelection',
|
|
|
|
|
|
title: '申报单开单'
|
|
|
|
|
|
},
|
|
|
|
|
|
my: {
|
|
|
|
|
|
toMaterialUrl: '/pages/warehousing/uniqueCode/issueUniqueCode/index',
|
|
|
|
|
|
title: '申报单开单'
|
|
|
|
|
|
},
|
2026-04-03 08:38:34 +08:00
|
|
|
|
|
2026-04-14 08:46:29 +08:00
|
|
|
|
}
|
2026-04-03 08:38:34 +08:00
|
|
|
|
const props = defineProps({
|
|
|
|
|
|
formData: { type: Object, default: () => ({ material: [], remark: '' }), required: true },//物料信息
|
2026-04-23 14:35:54 +08:00
|
|
|
|
isEdit: { type: Boolean, default: true, required: true }, //编辑1 / 物料只读2 / 入/出库单只读3 /入库生成唯一码编辑4 /5数量不可编辑 备注可编辑
|
2026-04-03 08:38:34 +08:00
|
|
|
|
pathParams: { type: Object, default: {} }, //只读时传入对应的code、id
|
|
|
|
|
|
extendData: { type: Object, default: {} }, //其他额外参数
|
|
|
|
|
|
})
|
2026-04-23 14:35:54 +08:00
|
|
|
|
const emit = defineEmits(["setStorage"]); //申报开单 选择物料存储所填数据
|
2026-04-03 08:38:34 +08:00
|
|
|
|
|
2026-04-14 08:46:29 +08:00
|
|
|
|
const { formData, isEdit, pathParams, extendData } = toRefs(props)
|
2026-04-23 14:35:54 +08:00
|
|
|
|
|
|
|
|
|
|
// 标识:页面
|
2026-04-14 08:46:29 +08:00
|
|
|
|
const keyType = computed(() => pathParams.value.type)
|
2026-04-23 14:35:54 +08:00
|
|
|
|
// 标识:是否为编辑状态
|
2026-04-14 08:46:29 +08:00
|
|
|
|
const edit = computed(() => includes(['1', '4', '5'], `${isEdit.value}`))
|
2026-04-23 14:35:54 +08:00
|
|
|
|
// 标识:显示添加物料按钮 编辑1且非开单页面以及非出库相关页面
|
|
|
|
|
|
const isAddMaterial = computed(() => `${isEdit.value}` === '1' && keyType.value != 'stockIn_inbound' && !includes(keyType.value, 'stockOut'))
|
|
|
|
|
|
// 标识:显示快速生成唯一码 编辑5数量不可编辑 备注可编辑且非出库相关页面
|
2026-04-14 08:46:29 +08:00
|
|
|
|
const isShowRqCode = computed(() => `${isEdit.value}` === '5' && !includes(keyType.value, 'stockOut'))
|
2026-04-23 14:35:54 +08:00
|
|
|
|
|
2026-04-03 08:38:34 +08:00
|
|
|
|
// 删除:数据
|
|
|
|
|
|
const delItem = ref(null)
|
|
|
|
|
|
// 删除:开关
|
|
|
|
|
|
const alertDialog = ref(null)
|
|
|
|
|
|
// 删除:开关
|
|
|
|
|
|
const isDialog = ref(false)
|
2026-04-23 14:35:54 +08:00
|
|
|
|
// 数据:开单-可选择的物料列表
|
2026-04-03 08:38:34 +08:00
|
|
|
|
const selectMaterialList = computed(() => extendData.value?.selectMaterialList)
|
|
|
|
|
|
const num = computed(() => selectMaterialList.value?.length || 0)
|
2026-04-23 14:35:54 +08:00
|
|
|
|
// 弹窗:入库单开单
|
2026-04-03 08:38:34 +08:00
|
|
|
|
const modalRef = ref()
|
|
|
|
|
|
|
|
|
|
|
|
// 按钮:添加物料
|
|
|
|
|
|
const toMaterial = () => {
|
2026-04-23 14:35:54 +08:00
|
|
|
|
if (keyType.value == 'stockIn' || includes(keyType.value, 'declaration')) { // 入库单开单 - 添加物料可选择手输入/无线液位计
|
2026-04-03 08:38:34 +08:00
|
|
|
|
modalRef.value.open()
|
|
|
|
|
|
} else {
|
2026-04-14 08:46:29 +08:00
|
|
|
|
const path = objectToQuery(pathParams.value)
|
2026-04-03 08:38:34 +08:00
|
|
|
|
const value = uni.getStorageSync('app_material');
|
|
|
|
|
|
uni.setStorageSync('app_material', [{ ...value[0], uniqueCodeRemark: formData.value?.remark }]); // 将最新的唯一码备注写入缓存
|
|
|
|
|
|
uni.navigateTo({
|
2026-04-14 08:46:29 +08:00
|
|
|
|
url: `${OPERATE_CONFIG.issueUniqueCode.toMaterialUrl}${path}`
|
2026-04-03 08:38:34 +08:00
|
|
|
|
})
|
2026-04-23 14:35:54 +08:00
|
|
|
|
|
2026-04-03 08:38:34 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2026-04-23 14:35:54 +08:00
|
|
|
|
// 添加物料弹窗: 入库单入库、申报开单 时可选择手动/无线液
|
2026-04-03 08:38:34 +08:00
|
|
|
|
const toMaterialSelection = (type) => {
|
2026-04-23 14:35:54 +08:00
|
|
|
|
// 0无线液 1手动输入 2蓝牙
|
2026-04-03 08:38:34 +08:00
|
|
|
|
let url = ''
|
2026-04-14 08:46:29 +08:00
|
|
|
|
const path = objectToQuery(pathParams.value)
|
2026-04-03 08:38:34 +08:00
|
|
|
|
if (type === '1') {
|
2026-04-23 14:35:54 +08:00
|
|
|
|
emit("setStorage");
|
2026-04-14 08:46:29 +08:00
|
|
|
|
url = `${OPERATE_CONFIG.issueUniqueCode.toMaterialUrl}`
|
2026-04-03 08:38:34 +08:00
|
|
|
|
}
|
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
|
url: `${url}${path}`
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
2026-04-23 14:35:54 +08:00
|
|
|
|
|
|
|
|
|
|
// 快速生成唯一码 -
|
2026-04-03 08:38:34 +08:00
|
|
|
|
const toGenerateUniqueCodeQuickly = () => {
|
2026-04-14 08:46:29 +08:00
|
|
|
|
const path = objectToQuery(pathParams.value)
|
2026-04-03 08:38:34 +08:00
|
|
|
|
uni.navigateTo({
|
2026-04-14 08:46:29 +08:00
|
|
|
|
url: `${OPERATE_CONFIG.stockIn.toMaterialUrl}${path}`
|
2026-04-03 08:38:34 +08:00
|
|
|
|
})
|
|
|
|
|
|
}
|
2026-04-23 14:35:54 +08:00
|
|
|
|
|
2026-04-03 08:38:34 +08:00
|
|
|
|
// 删除弹窗:显示 长按事件
|
|
|
|
|
|
const handleItemLongPress = (val) => {
|
|
|
|
|
|
alertDialog.value.open()
|
|
|
|
|
|
isDialog.value = true
|
|
|
|
|
|
delItem.value = val
|
|
|
|
|
|
}
|
|
|
|
|
|
// 删除弹窗:关闭
|
|
|
|
|
|
const dialogClose = () => {
|
|
|
|
|
|
alertDialog.value.close()
|
|
|
|
|
|
isDialog.value = false
|
|
|
|
|
|
}
|
|
|
|
|
|
// 删除弹窗:确认
|
|
|
|
|
|
const dialogConfirm = () => {
|
|
|
|
|
|
const idx = findIndex(formData.value.material, (i) => `${i.id}` === `${delItem.value.id}`)
|
|
|
|
|
|
assign(formData.value.material[idx], { isDelete: '1' });
|
|
|
|
|
|
uni.setStorageSync('app_material', formData.value.material)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const getMaterialList = () => {
|
2026-04-14 08:46:29 +08:00
|
|
|
|
const material = formData.value?.material || []
|
|
|
|
|
|
const params = material?.map((i) => ({
|
2026-04-03 08:38:34 +08:00
|
|
|
|
...i,
|
|
|
|
|
|
material: {
|
|
|
|
|
|
//? 这里的判断是为了区分 =详情带出的物料以及新增的物料 详情带出的物料有id以及materialId 新增物料id为物料id materialId无值
|
|
|
|
|
|
materialId: i.materialId ? i.materialId : i.id,
|
|
|
|
|
|
id: i.materialId ? i.id : null,
|
|
|
|
|
|
remark: i.remark,
|
|
|
|
|
|
quantity: i.quantity,
|
|
|
|
|
|
unitId: i.unitId,
|
|
|
|
|
|
isDelete: i?.isDelete,
|
|
|
|
|
|
uniqueCode: i?.uniqueCode
|
|
|
|
|
|
},
|
|
|
|
|
|
}))
|
|
|
|
|
|
return params
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
defineExpose({
|
|
|
|
|
|
getMaterialList
|
|
|
|
|
|
})
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
|
|
|
|
|
.remarkLine {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
padding: 12px 15px;
|
|
|
|
|
|
margin-bottom: 2rpx;
|
|
|
|
|
|
|
|
|
|
|
|
text {
|
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.btn-link {
|
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
color: #3c9cff;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-23 14:35:54 +08:00
|
|
|
|
text {
|
2026-04-03 08:38:34 +08:00
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
p {
|
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
::v-deep .uv-button {
|
|
|
|
|
|
height: 30px;
|
|
|
|
|
|
// line-height: 60rpx;
|
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.material-item {
|
|
|
|
|
|
padding: 12px 15px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.empty {
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
padding: 60rpx 0;
|
|
|
|
|
|
color: #999;
|
|
|
|
|
|
font-size: 26rpx;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
::v-deep.chooseModal {
|
|
|
|
|
|
.uv-modal__content {
|
|
|
|
|
|
display: block;
|
|
|
|
|
|
padding-top: 24rpx !important;
|
|
|
|
|
|
padding: 48rpx;
|
|
|
|
|
|
|
|
|
|
|
|
.title {
|
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
|
margin: 16rpx 0;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.link {
|
|
|
|
|
|
color: #999;
|
|
|
|
|
|
margin-top: 24rpx;
|
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
</style>
|