fix(storagelog): 修复库存记录显示逻辑并完善事务处理
This commit is contained in:
parent
d590a1e248
commit
918c57e233
@ -63,6 +63,7 @@ public class WmsStorageServiceImpl implements WmsStorageService {
|
||||
}
|
||||
|
||||
@Override
|
||||
@Transactional(rollbackFor = Exception.class)
|
||||
public void deleteWmsStorage(Long id) {
|
||||
// 校验存在
|
||||
validateWmsStorageExists(id);
|
||||
|
||||
@ -70,7 +70,7 @@
|
||||
|
||||
<el-table-column label="物料编码" align="center" prop="matCode" min-width="250" >
|
||||
<template #default="scope">
|
||||
<template v-if="scope.row.goodsType == 2">
|
||||
<template v-if="scope.row.stock_mode == 11 ">
|
||||
<el-form-item class="mb-0px!">
|
||||
<el-select
|
||||
v-model="scope.row.matId"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user