#
luxiaotao1123
2021-03-05 c652626780b7b2ae7a4f962e880060ec08c891e1
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, 3, userId)>0;
    }
}