@ -252,20 +252,22 @@ public class BizNimsController {
@Operation ( summary = "barcode string 제품 제조 정보 조회" , description = "barcode string 제품 제조 정보 조회<br><br>Barcode를 통한 제품 제조 정보 조회<br><br>ex) 01088065780457311717050110A1234210000000006" , tags = { "BIZ NIMS API" } )
@Operation ( summary = "barcode string 제품 제조 정보 조회" , description = "barcode string 제품 제조 정보 조회<br><br>Barcode를 통한 제품 제조 정보 조회<br><br>ex) 01088065780457311717050110A1234210000000006" , tags = { "BIZ NIMS API" } )
@PostMapping ( value = "/getPrdMnfSeqInfoOfBarcode" )
@PostMapping ( value = "/getPrdMnfSeqInfoOfBarcode" )
public ApiBaseResponse < NimsApiDto . ProductInfoKd > getPrdMnfSeqInfoOfBarcode (
public ApiBaseResponse < NimsApiDto . ProductInfoKd > getPrdMnfSeqInfoOfBarcode (
@RequestParam final String barcodeStr
@RequestParam final String barcodeStr ,
@RequestParam final String userId
) {
) {
return ApiBaseResponse . of ( bizNimsService . getPrdMnfSeqInfoOfBarcode ( barcodeStr )) ;
return ApiBaseResponse . of ( bizNimsService . getPrdMnfSeqInfoOfBarcode ( barcodeStr , userId )) ;
}
}
@Operation ( summary = "barcode 이미지 제품 제조 정보 조회" , description = "barcode 이미지 제품 제조 정보 조회<br><br>barcode 이미지를 통한 제품 제조 정보 조회" , tags = { "BIZ NIMS API" } )
@Operation ( summary = "barcode 이미지 제품 제조 정보 조회" , description = "barcode 이미지 제품 제조 정보 조회<br><br>barcode 이미지를 통한 제품 제조 정보 조회" , tags = { "BIZ NIMS API" } )
@PostMapping ( value = "/getProductInfoByQrcodeImg" , consumes = { MediaType . MULTIPART_FORM_DATA_VALUE } )
@PostMapping ( value = "/getProductInfoByQrcodeImg" , consumes = { MediaType . MULTIPART_FORM_DATA_VALUE } )
//@PostMapping(value = "/api/biz/nims/v1/getQrcode")
public ApiBaseResponse < NimsApiDto . ProductInfoKd > getProductInfoByQrcodeImg (
public ApiBaseResponse < NimsApiDto . ProductInfoKd > getProductInfoByQrcodeImg (
@RequestParam ( "uploadFiles" )
@RequestParam ( "uploadFiles" )
final MultipartFile mf
final MultipartFile mf ,
@RequestParam
final String userId
) {
) {
return ApiBaseResponse . of (
return ApiBaseResponse . of (
bizNimsService . getPrdMnfSeqInfoOfBarcode ( XingUtils . readQrcodeFromFile ( XingUtils . convert ( mf ) ) )
bizNimsService . getPrdMnfSeqInfoOfBarcode ( XingUtils . readQrcodeFromFile ( XingUtils . convert ( mf ) ) , userId )
) ;
) ;
}
}