|
|
<template>
|
|
|
<div class="stock-out-panel">
|
|
|
<div class="stock-out-panel__header">
|
|
|
<div class="stock-out-panel__title">{{ dialogTitle }}</div>
|
|
|
<el-button text @click="closeForm">
|
|
|
<Icon icon="ep:close" />
|
|
|
</el-button>
|
|
|
</div>
|
|
|
<div class="stock-out-dialog" v-loading="formLoading">
|
|
|
<el-form
|
|
|
ref="formRef"
|
|
|
:model="formData"
|
|
|
:rules="formRules"
|
|
|
label-width="100px"
|
|
|
:disabled="disabled"
|
|
|
>
|
|
|
<el-row :gutter="20">
|
|
|
<el-col :span="8">
|
|
|
<el-form-item :label="t('SparePartsManagement.SpareOut.no')" prop="no">
|
|
|
<el-input
|
|
|
disabled
|
|
|
v-model="formData.no"
|
|
|
:placeholder="t('SparePartsManagement.SpareOut.placeholderNoAuto')"
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
|
|
|
<el-col :span="8">
|
|
|
<el-form-item :label="t('SparePartsManagement.SpareOut.outTime')" prop="outTime">
|
|
|
<el-date-picker
|
|
|
v-model="formData.outTime"
|
|
|
type="date"
|
|
|
value-format="x"
|
|
|
:placeholder="t('SparePartsManagement.SpareOut.placeholderOutTime')"
|
|
|
class="!w-1/1"
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="8">
|
|
|
<el-form-item :label="t('SparePartsManagement.SpareOut.outType')" prop="outType">
|
|
|
<el-select
|
|
|
disabled
|
|
|
v-model="formData.outType"
|
|
|
clearable
|
|
|
filterable
|
|
|
:placeholder="t('SparePartsManagement.SpareOut.placeholderOutType')"
|
|
|
class="!w-1/1"
|
|
|
>
|
|
|
<el-option
|
|
|
v-for="item in options"
|
|
|
:key="item.value"
|
|
|
:label="item.label"
|
|
|
:value="item.value"
|
|
|
:disabled="item.disabled"
|
|
|
/>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
<el-col :span="8">
|
|
|
<el-form-item :label="t('SparePartsManagement.SpareOut.remark')" prop="remark">
|
|
|
<el-input
|
|
|
type="textarea"
|
|
|
v-model="formData.remark"
|
|
|
:rows="1"
|
|
|
:placeholder="t('SparePartsManagement.SpareOut.placeholderRemark')"
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
</el-form>
|
|
|
<!-- 子表的表单 -->
|
|
|
<ContentWrap>
|
|
|
<el-tabs v-model="subTabsName" class="-mt-15px -mb-10px">
|
|
|
<el-tab-pane :label="t('SparePartsManagement.SpareOut.itemListTitle')" name="item">
|
|
|
<StockOutItemForm ref="itemFormRef" :items="formData.items" :disabled="disabled" />
|
|
|
</el-tab-pane>
|
|
|
</el-tabs>
|
|
|
</ContentWrap>
|
|
|
</div>
|
|
|
|
|
|
<div class="stock-out-footer">
|
|
|
<el-button @click="closeForm">{{ t('common.cancel') }}</el-button>
|
|
|
<el-button v-if="!disabled" @click="submitForm" type="primary" :disabled="formLoading">
|
|
|
{{ t('common.ok') }}
|
|
|
</el-button>
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
|
<script setup lang="ts">
|
|
|
import { StockOutApi, StockOutVO } from '@/api/erp/stock/out'
|
|
|
import StockOutItemForm from './components/StockOutItemForm.vue'
|
|
|
import { CustomerApi, CustomerVO } from '@/api/erp/sale/customer'
|
|
|
import {DICT_TYPE, getBoolDictOptions, getStrDictOptions} from "@/utils/dict";
|
|
|
|
|
|
/** ERP 其它出库单表单 */
|
|
|
defineOptions({ name: 'StockOutForm' })
|
|
|
|
|
|
const { t } = useI18n() // 国际化
|
|
|
const message = useMessage() // 消息弹窗
|
|
|
|
|
|
const dialogTitle = ref('') // 弹窗的标题
|
|
|
const formLoading = ref(false) // 表单的加载中:1)修改时的数据加载;2)提交的按钮禁用
|
|
|
const formType = ref('') // 表单的类型:create - 新增;update - 修改;detail - 详情
|
|
|
const formData = ref({
|
|
|
id: undefined,
|
|
|
customerId: undefined,
|
|
|
outTime: undefined,
|
|
|
remark: undefined,
|
|
|
outType: undefined,
|
|
|
fileUrl: '',
|
|
|
items: []
|
|
|
})
|
|
|
const formRules = reactive({
|
|
|
outTime: [
|
|
|
{ required: true, message: t('SparePartsManagement.SpareOut.validatorOutTimeRequired'), trigger: 'blur' }
|
|
|
],
|
|
|
outType: [
|
|
|
{ required: true, message: t('SparePartsManagement.SpareOut.validatorOutTypeRequired'), trigger: 'blur' }
|
|
|
]
|
|
|
})
|
|
|
const disabled = computed(() => formType.value === 'detail')
|
|
|
const formRef = ref() // 表单 Ref
|
|
|
const options = [
|
|
|
{
|
|
|
value: '其他出库',
|
|
|
label: '其他出库',
|
|
|
},
|
|
|
{
|
|
|
value: '备件出库',
|
|
|
label: '备件出库',
|
|
|
|
|
|
},
|
|
|
{
|
|
|
value: '原料出库',
|
|
|
label: '原料出库',
|
|
|
},
|
|
|
{
|
|
|
value: '产品出库',
|
|
|
label: '产品出库',
|
|
|
},
|
|
|
{
|
|
|
value: '领料出库',
|
|
|
label: '领料出库',
|
|
|
disabled: true,
|
|
|
},
|
|
|
|
|
|
]
|
|
|
/** 子表的表单 */
|
|
|
const subTabsName = ref('item')
|
|
|
const itemFormRef = ref()
|
|
|
|
|
|
/** 打开弹窗 */
|
|
|
const open = async (type: string, id?: number) => {
|
|
|
dialogTitle.value = t('action.' + type)
|
|
|
formType.value = type
|
|
|
resetForm()
|
|
|
// 修改时,设置数据
|
|
|
if (id) {
|
|
|
formLoading.value = true
|
|
|
try {
|
|
|
formData.value = await StockOutApi.getStockOut(id)
|
|
|
} finally {
|
|
|
formLoading.value = false
|
|
|
}
|
|
|
}
|
|
|
formData.value.outType = "备件出库"
|
|
|
}
|
|
|
defineExpose({ open }) // 提供 open 方法,用于打开弹窗
|
|
|
|
|
|
const closeForm = () => {
|
|
|
emit('closed')
|
|
|
}
|
|
|
|
|
|
/** 提交表单 */
|
|
|
const emit = defineEmits(['success', 'closed']) // 定义 success 和 closed 事件
|
|
|
const submitForm = async () => {
|
|
|
// 校验表单
|
|
|
await formRef.value.validate()
|
|
|
await itemFormRef.value.validate()
|
|
|
// 提交请求
|
|
|
formLoading.value = true
|
|
|
try {
|
|
|
const data = formData.value as unknown as StockOutVO
|
|
|
if (formType.value === 'create') {
|
|
|
await StockOutApi.createStockOut(data)
|
|
|
message.success(t('common.createSuccess'))
|
|
|
} else {
|
|
|
await StockOutApi.updateStockOut(data)
|
|
|
message.success(t('common.updateSuccess'))
|
|
|
}
|
|
|
// 发送操作成功的事件
|
|
|
emit('success')
|
|
|
closeForm()
|
|
|
} finally {
|
|
|
formLoading.value = false
|
|
|
}
|
|
|
}
|
|
|
|
|
|
/** 重置表单 */
|
|
|
const resetForm = () => {
|
|
|
formData.value = {
|
|
|
id: undefined,
|
|
|
customerId: undefined,
|
|
|
outTime: undefined,
|
|
|
remark: undefined,
|
|
|
fileUrl: undefined,
|
|
|
items: []
|
|
|
}
|
|
|
formRef.value?.resetFields()
|
|
|
}
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
.stock-out-panel {
|
|
|
background: #fff;
|
|
|
border-radius: 12px;
|
|
|
box-shadow: var(--el-box-shadow-light);
|
|
|
}
|
|
|
|
|
|
.stock-out-panel__header {
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
justify-content: space-between;
|
|
|
padding: 16px 20px;
|
|
|
border-bottom: 1px solid #ebeef5;
|
|
|
}
|
|
|
|
|
|
.stock-out-panel__title {
|
|
|
color: #1f2937;
|
|
|
font-size: 18px;
|
|
|
font-weight: 600;
|
|
|
}
|
|
|
|
|
|
.stock-out-dialog {
|
|
|
max-height: calc(100vh - 220px);
|
|
|
padding: 20px 20px 0;
|
|
|
padding-right: 16px;
|
|
|
overflow-y: auto;
|
|
|
}
|
|
|
|
|
|
.stock-out-footer {
|
|
|
display: flex;
|
|
|
justify-content: flex-end;
|
|
|
gap: 12px;
|
|
|
width: 100%;
|
|
|
padding: 16px 20px 20px;
|
|
|
border-top: 1px solid #ebeef5;
|
|
|
}
|
|
|
|
|
|
@media (max-width: 768px) {
|
|
|
.stock-out-panel__header {
|
|
|
padding: 14px 16px;
|
|
|
}
|
|
|
|
|
|
.stock-out-dialog {
|
|
|
max-height: none;
|
|
|
padding: 16px 16px 0;
|
|
|
overflow-y: visible;
|
|
|
}
|
|
|
|
|
|
.stock-out-footer {
|
|
|
padding: 16px;
|
|
|
}
|
|
|
}
|
|
|
</style>
|