| | |
| | | import com.zy.common.web.BaseController; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.beans.factory.annotation.Value; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | |
| | | private LocMastService locMastService; |
| | | @Autowired |
| | | private BasCrnErrorService basCrnErrorService; |
| | | |
| | | @Value("${wms.url}") |
| | | private String wmsUrl; |
| | | |
| | | private static final boolean auth = true; |
| | | |
| | |
| | | return R.error("条码[barcode]不能为空"); |
| | | } |
| | | |
| | | openService.taskCreateIn(param); |
| | | HashMap<String, Object> result = openService.taskCreateIn(param); |
| | | return R.ok().add(result); |
| | | }catch (Exception e){ |
| | | log.error("任务下发异常"+e); |
| | | return R.error(); |
| | | } |
| | | return R.ok(); |
| | | return R.error(); |
| | | } |
| | | |
| | | //查询任务详情 |