|
|
|
@ -11,6 +11,7 @@ import com.glxp.api.admin.util.gs1.Gs1128Decoder;
|
|
|
|
|
import com.glxp.api.admin.util.gs1.Gs1128Engine;
|
|
|
|
|
|
|
|
|
|
import java.util.Map;
|
|
|
|
|
import java.util.Optional;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @author 彭于晏
|
|
|
|
@ -315,8 +316,11 @@ public class FilterUdiUtils {
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
public static String transGlxpHasSerStr(WarehouseEntity warehouseEntity) {
|
|
|
|
|
String udiCode = "#" + warehouseEntity.getNameCode() + "#" + warehouseEntity.getProduceDate() + "#" + warehouseEntity.getExpireDate() +
|
|
|
|
|
"#" + warehouseEntity.getBatchNo() + "#" + warehouseEntity.getSerialNo() + "#" + "#";
|
|
|
|
|
String udiCode = "#" + warehouseEntity.getNameCode()
|
|
|
|
|
+ "#" + Optional.ofNullable(warehouseEntity.getProduceDate()).orElse("")
|
|
|
|
|
+ "#" + Optional.ofNullable(warehouseEntity.getExpireDate()).orElse("")
|
|
|
|
|
+ "#" + Optional.ofNullable(warehouseEntity.getBatchNo()).orElse("")
|
|
|
|
|
+ "#" + Optional.ofNullable(warehouseEntity.getSerialNo()).orElse("") + "#" + "#";
|
|
|
|
|
return udiCode;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|