| | |
| | | import com.zy.asrs.wms.system.service.UserService;
|
| | | import io.jsonwebtoken.lang.Collections;
|
| | | import io.netty.util.internal.StringUtil;
|
| | | import io.swagger.annotations.ApiOperation;
|
| | | import org.springframework.beans.factory.annotation.Autowired;
|
| | | import org.springframework.beans.factory.annotation.Value;
|
| | | import org.springframework.web.bind.annotation.*;
|
| | |
| | | * @param barcode
|
| | | * @return
|
| | | */
|
| | | @ApiOperation("入库单据--扫码获取订单明细列表")
|
| | | @PostMapping("/mat/auth")
|
| | | public R getProductForBarcode(@RequestBody Map<String, String> barcode) {
|
| | | if (Objects.isNull(barcode)) {
|
| | |
| | | return mobileService.selectShippingDetl(params);
|
| | | }
|
| | |
|
| | |
|
| | | /**
|
| | | * @author Ryan
|
| | | * @date 2025/6/28
|
| | | * @description: 获取推荐库位
|
| | | * @version 1.0
|
| | | */
|
| | | @GetMapping("/recommend/locs")
|
| | | public R getRecommend() {
|
| | | return mobileService.getRecommendLocs();
|
| | | }
|
| | |
|
| | |
|
| | | /**
|
| | | * @author Ryan
|
| | | * @date 2025/6/28
|
| | | * @description: 查询物料信息
|
| | | * @version 1.0
|
| | | */
|
| | | @GetMapping("/mats/search/{matnr}")
|
| | | public R getMats(@PathVariable String matnr) {
|
| | | return mobileService.getMatsByCode(matnr);
|
| | | }
|
| | |
|
| | |
|
| | | /**
|
| | | * 确认发货单明细
|
| | | * @return
|