#
luxiaotao1123
2021-03-04 6f7c57ceab710f631f0530e307c6fdbee4e7b9af
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package zy.cloud.wms.manager.service.impl;
 
import zy.cloud.wms.manager.mapper.PakoutMapper;
import zy.cloud.wms.manager.entity.Pakout;
import zy.cloud.wms.manager.service.PakoutService;
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
 
@Service("pakoutService")
public class PakoutServiceImpl extends ServiceImpl<PakoutMapper, Pakout> implements PakoutService {
 
    @Override
    public Boolean stockOutComplete(String wrkNo, String docNum, Long userId) {
        return this.baseMapper.updateWrkSts(wrkNo, docNum, 2, userId)>0;
    }
}