|
|
<template>
|
|
|
<div class="stock-in-panel">
|
|
|
<div class="stock-in-panel__header">
|
|
|
<div class="stock-in-panel__title">{{ dialogTitle }}</div>
|
|
|
<el-button text @click="closeForm">
|
|
|
<Icon icon="ep:close" />
|
|
|
</el-button>
|
|
|
</div>
|
|
|
<div class="stock-in-dialog" v-loading="formLoading">
|
|
|
<el-form
|
|
|
ref="formRef"
|
|
|
:model="formData"
|
|
|
:rules="formRules"
|
|
|
label-width="110px"
|
|
|
:disabled="disabled"
|
|
|
>
|
|
|
<el-row :gutter="20">
|
|
|
<el-col :span="8">
|
|
|
<el-form-item :label="t('SparePartsManagement.SpareIn.no')" prop="no">
|
|
|
<el-input disabled v-model="formData.no" :placeholder="t('SparePartsManagement.SpareIn.placeholderNoAuto')" />
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="8">
|
|
|
<el-form-item :label="t('SparePartsManagement.SpareIn.inType')" prop="inType">
|
|
|
<el-select
|
|
|
disabled
|
|
|
v-model="formData.inType"
|
|
|
clearable
|
|
|
filterable
|
|
|
:placeholder="t('SparePartsManagement.SpareIn.placeholderInType')"
|
|
|
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.SpareIn.inTime')" prop="inTime">
|
|
|
<el-date-picker
|
|
|
v-model="formData.inTime"
|
|
|
type="date"
|
|
|
value-format="x"
|
|
|
:placeholder="t('SparePartsManagement.SpareIn.placeholderInTime')"
|
|
|
class="!w-1/1"
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="8">
|
|
|
<el-form-item :label="t('SparePartsManagement.SpareIn.supplier')" prop="supplierId">
|
|
|
<el-select
|
|
|
v-model="formData.supplierId"
|
|
|
clearable
|
|
|
filterable
|
|
|
:placeholder="t('SparePartsManagement.SpareIn.placeholderSupplier')"
|
|
|
class="!w-1/1"
|
|
|
>
|
|
|
<el-option
|
|
|
v-for="item in supplierList"
|
|
|
:key="item.id"
|
|
|
:label="item.name"
|
|
|
:value="item.id"
|
|
|
/>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="8">
|
|
|
<el-form-item :label="t('SparePartsManagement.SpareIn.remark')" prop="remark">
|
|
|
<el-input
|
|
|
type="textarea"
|
|
|
v-model="formData.remark"
|
|
|
:rows="1"
|
|
|
:placeholder="t('SparePartsManagement.SpareIn.placeholderRemark')"
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="8">
|
|
|
<el-form-item :label="t('SparePartsManagement.SpareIn.file')" prop="fileUrl">
|
|
|
<UploadFile :is-show-tip="false" v-model="formData.fileUrl" :limit="1" />
|
|
|
</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.SpareIn.itemListTitle')" name="item">
|
|
|
<StockInItemForm ref="itemFormRef" :items="formData.items" :disabled="disabled" />
|
|
|
</el-tab-pane>
|
|
|
</el-tabs>
|
|
|
</ContentWrap>
|
|
|
</div>
|
|
|
|
|
|
<div class="stock-in-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 { StockInApi, StockInVO } from '@/api/erp/stock/in'
|
|
|
import StockInItemForm from './components/StockInItemForm.vue'
|
|
|
import { SupplierApi, SupplierVO } from '@/api/erp/purchase/supplier'
|
|
|
|
|
|
/** ERP 其它入库单 表单 */
|
|
|
defineOptions({ name: 'StockInForm' })
|
|
|
|
|
|
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,
|
|
|
supplierId: undefined,
|
|
|
inTime: undefined,
|
|
|
inType: undefined,
|
|
|
remark: undefined,
|
|
|
fileUrl: '',
|
|
|
items: []
|
|
|
})
|
|
|
const formRules = reactive({
|
|
|
inTime: [{ required: true, message: t('SparePartsManagement.SpareIn.validatorInTimeRequired'), trigger: 'blur' }],
|
|
|
inType: [{ required: true, message: t('SparePartsManagement.SpareIn.validatorInTypeRequired'), trigger: 'blur' }]
|
|
|
})
|
|
|
const disabled = computed(() => formType.value === 'detail')
|
|
|
const formRef = ref() // 表单 Ref
|
|
|
const supplierList = ref<SupplierVO[]>([]) // 供应商列表
|
|
|
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 StockInApi.getStockIn(id)
|
|
|
} finally {
|
|
|
formLoading.value = false
|
|
|
}
|
|
|
}
|
|
|
formData.value.inType = "备件入库"
|
|
|
// 加载供应商列表
|
|
|
supplierList.value = await SupplierApi.getSupplierSimpleList()
|
|
|
}
|
|
|
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 StockInVO
|
|
|
if (formType.value === 'create') {
|
|
|
await StockInApi.createStockIn(data)
|
|
|
message.success(t('common.createSuccess'))
|
|
|
} else {
|
|
|
await StockInApi.updateStockIn(data)
|
|
|
message.success(t('common.updateSuccess'))
|
|
|
}
|
|
|
// 发送操作成功的事件
|
|
|
emit('success')
|
|
|
closeForm()
|
|
|
} finally {
|
|
|
formLoading.value = false
|
|
|
}
|
|
|
}
|
|
|
|
|
|
/** 重置表单 */
|
|
|
const resetForm = () => {
|
|
|
formData.value = {
|
|
|
id: undefined,
|
|
|
supplierId: undefined,
|
|
|
inTime: undefined,
|
|
|
remark: undefined,
|
|
|
fileUrl: undefined,
|
|
|
items: []
|
|
|
}
|
|
|
formRef.value?.resetFields()
|
|
|
}
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
.stock-in-panel {
|
|
|
background: #fff;
|
|
|
border-radius: 12px;
|
|
|
box-shadow: var(--el-box-shadow-light);
|
|
|
}
|
|
|
|
|
|
.stock-in-panel__header {
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
justify-content: space-between;
|
|
|
padding: 16px 20px;
|
|
|
border-bottom: 1px solid #ebeef5;
|
|
|
}
|
|
|
|
|
|
.stock-in-panel__title {
|
|
|
color: #1f2937;
|
|
|
font-size: 18px;
|
|
|
font-weight: 600;
|
|
|
}
|
|
|
|
|
|
.stock-in-dialog {
|
|
|
max-height: calc(100vh - 220px);
|
|
|
padding: 20px 20px 0;
|
|
|
padding-right: 16px;
|
|
|
overflow-y: auto;
|
|
|
}
|
|
|
|
|
|
.stock-in-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-in-panel__header {
|
|
|
padding: 14px 16px;
|
|
|
}
|
|
|
|
|
|
.stock-in-dialog {
|
|
|
max-height: none;
|
|
|
padding: 16px 16px 0;
|
|
|
overflow-y: visible;
|
|
|
}
|
|
|
|
|
|
.stock-in-footer {
|
|
|
padding: 16px;
|
|
|
}
|
|
|
}
|
|
|
</style>
|