mirror of
https://git.imnavajas.es/jjimenez/erp-imprimelibros.git
synced 2026-02-09 12:29:13 +00:00
aceptando ferro
This commit is contained in:
@ -4,14 +4,20 @@ import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
|
||||
import org.springframework.core.io.Resource;
|
||||
import org.springframework.http.HttpHeaders;
|
||||
import java.security.Principal;
|
||||
import java.util.Comparator;
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Locale;
|
||||
import java.util.Map;
|
||||
|
||||
import org.springframework.context.MessageSource;
|
||||
import org.springframework.core.io.ByteArrayResource;
|
||||
import org.springframework.data.jpa.domain.Specification;
|
||||
import org.springframework.http.MediaType;
|
||||
import org.springframework.http.ResponseEntity;
|
||||
import org.springframework.stereotype.Controller;
|
||||
import org.springframework.ui.Model;
|
||||
|
||||
@ -30,7 +36,8 @@ import jakarta.persistence.criteria.JoinType;
|
||||
import jakarta.servlet.http.HttpServletRequest;
|
||||
|
||||
import org.springframework.web.bind.annotation.ResponseBody;
|
||||
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
|
||||
@Controller
|
||||
@RequestMapping("/pedidos")
|
||||
@ -66,9 +73,9 @@ public class PedidosController {
|
||||
"app.cancelar",
|
||||
"app.seleccionar",
|
||||
"app.yes",
|
||||
"checkout.payment.card",
|
||||
"checkout.payment.card",
|
||||
"checkout.payment.bizum",
|
||||
"checkout.payment.bank-transfer",
|
||||
"checkout.payment.bank-transfer",
|
||||
"checkout.error.select-method");
|
||||
|
||||
Map<String, String> translations = translationService.getTranslations(locale, keys);
|
||||
@ -181,15 +188,17 @@ public class PedidosController {
|
||||
return text;
|
||||
})
|
||||
.add("actions", pedido -> {
|
||||
String data = "<span class=\'badge bg-success btn-view \' data-id=\'" + pedido.getId()
|
||||
String data = "<span class=\'badge bg-success btn-view \' data-id=\'" + pedido.getId()
|
||||
+ "\' style=\'cursor: pointer;\'>"
|
||||
+ messageSource.getMessage("app.view", null, locale) + "</span>";
|
||||
List<PedidoLinea> lineas = repoPedidoLinea.findByPedidoId(pedido.getId());
|
||||
boolean hasDenegadoPago = lineas.stream()
|
||||
.anyMatch(linea -> PedidoLinea.Estado.denegado_pago.equals(linea.getEstado()));
|
||||
if (hasDenegadoPago) {
|
||||
data += " <span class='badge bg-danger btn-pay' data-amount='" + (int)(pedido.getTotal()*100) + "' data-id='" + pedido.getId() + "' style='cursor: pointer;'>" + messageSource.getMessage("app.pay", null, locale) + "</span>";
|
||||
}
|
||||
data += " <span class='badge bg-danger btn-pay' data-amount='" + (int) (pedido.getTotal() * 100)
|
||||
+ "' data-id='" + pedido.getId() + "' style='cursor: pointer;'>"
|
||||
+ messageSource.getMessage("app.pay", null, locale) + "</span>";
|
||||
}
|
||||
return data;
|
||||
})
|
||||
.where(base)
|
||||
@ -219,6 +228,32 @@ public class PedidosController {
|
||||
|
||||
List<Map<String, Object>> lineas = pedidoService.getLineas(id, locale);
|
||||
for (Map<String, Object> linea : lineas) {
|
||||
|
||||
PedidoLinea pedidoLinea = repoPedidoLinea.findById(
|
||||
((Number) linea.get("lineaId")).longValue()).orElse(null);
|
||||
if (pedidoLinea != null) {
|
||||
Map<String, Boolean> buttons = new HashMap<>();
|
||||
if (pedidoLinea.getEstado().getPriority() >= PedidoLinea.Estado.esperando_aceptacion_ferro.getPriority()
|
||||
&& pedidoLinea.getEstado().getPriority() <= PedidoLinea.Estado.produccion.getPriority()) {
|
||||
|
||||
if (pedidoLinea.getEstado() == PedidoLinea.Estado.esperando_aceptacion_ferro) {
|
||||
buttons.put("aceptar_ferro", true);
|
||||
} else {
|
||||
buttons.put("aceptar_ferro", false);
|
||||
}
|
||||
|
||||
Map<String, Object> filesType = pedidoService.getFilesType(pedidoLinea.getId(), locale);
|
||||
if (filesType == null || filesType.get("error") != null) {
|
||||
throw new RuntimeException(
|
||||
messageSource.getMessage("pedido.errors.update-server-error", null, locale));
|
||||
}
|
||||
for (String key : filesType.keySet()) {
|
||||
buttons.put(key, (Integer) filesType.get(key) == 1 ? true : false);
|
||||
}
|
||||
linea.put("buttons", buttons);
|
||||
}
|
||||
}
|
||||
|
||||
List<PedidoDireccion> dirEntrega = pedidoService.getDireccionesEntregaPedidoLinea(
|
||||
((Number) linea.get("lineaId")).longValue());
|
||||
|
||||
@ -239,15 +274,131 @@ public class PedidosController {
|
||||
// -------------------------------------
|
||||
// Acciones sobre las lineas de pedido
|
||||
// -------------------------------------
|
||||
@GetMapping("/linea/{id}/update-status")
|
||||
public String getMethodName(
|
||||
@PathVariable(name = "id", required = true) Long id) {
|
||||
@PostMapping("/linea/{id}/update-status")
|
||||
@ResponseBody
|
||||
public Map<String, Object> updateStatus(
|
||||
@PathVariable(name = "id", required = true) Long id, Locale locale) {
|
||||
|
||||
PedidoLinea linea = repoPedidoLinea.findById(id).orElse(null);
|
||||
if (linea != null) {
|
||||
Long externalId = linea.getPresupuesto().getProveedorRef2();
|
||||
|
||||
}
|
||||
return new String();
|
||||
Map<String, Object> result = pedidoService.actualizarEstado(id, locale);
|
||||
|
||||
return result;
|
||||
}
|
||||
}
|
||||
|
||||
@PostMapping("/linea/{id}/update-maquetacion")
|
||||
@ResponseBody
|
||||
public Map<String, Object> updateMaquetacion(
|
||||
@PathVariable(name = "id", required = true) Long id,
|
||||
Locale locale) {
|
||||
|
||||
PedidoLinea entity = repoPedidoLinea.findById(id).orElse(null);
|
||||
if (entity == null) {
|
||||
String errorMsg = messageSource.getMessage("pedido.errors.linea-not-found", null, locale);
|
||||
return Map.of(
|
||||
"success", false,
|
||||
"message", errorMsg);
|
||||
}
|
||||
|
||||
if (entity.getEstado() != PedidoLinea.Estado.maquetacion) {
|
||||
String errorMsg = messageSource.getMessage("pedido.errors.state-error", null, locale);
|
||||
return Map.of(
|
||||
"success", false,
|
||||
"message", errorMsg);
|
||||
}
|
||||
|
||||
entity.setEstado(PedidoLinea.Estado.haciendo_ferro);
|
||||
repoPedidoLinea.save(entity);
|
||||
String successMsg = messageSource.getMessage("pedido.success.estado-actualizado", null, locale);
|
||||
return Map.of(
|
||||
"success", true,
|
||||
"message", successMsg,
|
||||
"state", messageSource.getMessage(entity.getEstado().getMessageKey(), null, locale));
|
||||
}
|
||||
|
||||
@GetMapping("/linea/{id}/download-ferro")
|
||||
public ResponseEntity<Resource> downloadFerro(@PathVariable(name = "id", required = true) Long id, Locale locale) {
|
||||
|
||||
byte[] ferroFileContent = pedidoService.getFerroFileContent(id, locale);
|
||||
if (ferroFileContent == null) {
|
||||
return ResponseEntity.notFound().build();
|
||||
}
|
||||
|
||||
ByteArrayResource resource = new ByteArrayResource(ferroFileContent);
|
||||
|
||||
return ResponseEntity.ok()
|
||||
.header(HttpHeaders.CONTENT_DISPOSITION, "attachment; filename=ferro_" + id + ".pdf")
|
||||
.contentType(MediaType.APPLICATION_PDF)
|
||||
.body(resource);
|
||||
}
|
||||
|
||||
@GetMapping("/linea/{id}/download-cub")
|
||||
public ResponseEntity<Resource> downloadCubierta(@PathVariable(name = "id", required = true) Long id,
|
||||
Locale locale) {
|
||||
|
||||
byte[] cubFileContent = pedidoService.getCubiertaFileContent(id, locale);
|
||||
if (cubFileContent == null) {
|
||||
return ResponseEntity.notFound().build();
|
||||
}
|
||||
|
||||
ByteArrayResource resource = new ByteArrayResource(cubFileContent);
|
||||
|
||||
return ResponseEntity.ok()
|
||||
.header(HttpHeaders.CONTENT_DISPOSITION, "attachment; filename=cubierta_" + id + ".pdf")
|
||||
.contentType(MediaType.APPLICATION_PDF)
|
||||
.body(resource);
|
||||
}
|
||||
|
||||
@GetMapping("/linea/{id}/download-tapa")
|
||||
public ResponseEntity<Resource> downloadTapa(@PathVariable(name = "id", required = true) Long id, Locale locale) {
|
||||
|
||||
byte[] tapaFileContent = pedidoService.getTapaFileContent(id, locale);
|
||||
if (tapaFileContent == null) {
|
||||
return ResponseEntity.notFound().build();
|
||||
}
|
||||
|
||||
ByteArrayResource resource = new ByteArrayResource(tapaFileContent);
|
||||
|
||||
return ResponseEntity.ok()
|
||||
.header(HttpHeaders.CONTENT_DISPOSITION, "attachment; filename=tapa_" + id + ".pdf")
|
||||
.contentType(MediaType.APPLICATION_PDF)
|
||||
.body(resource);
|
||||
}
|
||||
|
||||
@PostMapping("/linea/{id}/aceptar-ferro")
|
||||
@ResponseBody
|
||||
public Map<String, Object> aceptarFerro(@PathVariable(name = "id", required = true) Long id,
|
||||
Locale locale) {
|
||||
|
||||
PedidoLinea entity = repoPedidoLinea.findById(id).orElse(null);
|
||||
if (entity == null) {
|
||||
String errorMsg = messageSource.getMessage("pedido.errors.linea-not-found", null, locale);
|
||||
return Map.of(
|
||||
"success", false,
|
||||
"message", errorMsg);
|
||||
}
|
||||
|
||||
if (entity.getEstado() != PedidoLinea.Estado.esperando_aceptacion_ferro) {
|
||||
String errorMsg = messageSource.getMessage("pedido.errors.state-error", null, locale);
|
||||
return Map.of(
|
||||
"success", false,
|
||||
"message", errorMsg);
|
||||
}
|
||||
|
||||
Boolean result = pedidoService.aceptarFerro(id, locale);
|
||||
|
||||
if (result) {
|
||||
entity.setEstado(PedidoLinea.Estado.haciendo_ferro);
|
||||
repoPedidoLinea.save(entity);
|
||||
String successMsg = messageSource.getMessage("pedido.success.estado-actualizado", null, locale);
|
||||
return Map.of(
|
||||
"success", true,
|
||||
"message", successMsg,
|
||||
"state", messageSource.getMessage(entity.getEstado().getMessageKey(), null, locale));
|
||||
} else {
|
||||
String errorMsg = messageSource.getMessage("pedido.errors.update-server-error", null, locale);
|
||||
return Map.of(
|
||||
"success", false,
|
||||
"message", errorMsg);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user