Преглед изворни кода

Cambiar parametros en recibo

David Gómez пре 2 месеци
родитељ
комит
7464e0ab26
1 измењених фајлова са 195 додато и 132 уклоњено
  1. 195 132
      recibo.php

+ 195 - 132
recibo.php

@@ -1,4 +1,11 @@
 <?php
+/**
+ * Archivo para imprimir recibos de venta
+ * Este archivo debe copiarse al servidor de impresión (printserver)
+ * Imprime en la impresora de caja (normalmente POS-80C)
+ * Usa librería: mike42/escpos-php
+ */
+
 if ($_SERVER['REQUEST_METHOD'] == 'OPTIONS') {
     header("Access-Control-Allow-Origin: *");
     header("Access-Control-Allow-Methods: GET, POST, PUT, DELETE, OPTIONS");
@@ -10,6 +17,7 @@ if ($_SERVER['REQUEST_METHOD'] == 'OPTIONS') {
 header("Access-Control-Allow-Origin: *");
 header("Access-Control-Allow-Methods: GET, POST, PUT, DELETE");
 header("Access-Control-Allow-Headers: Content-Type, Authorization");
+header('Content-Type: application/json; charset=utf-8');
 
 error_reporting(E_ALL);
 ini_set('display_errors', 0);
@@ -20,152 +28,207 @@ require __DIR__ . '/vendor/autoload.php';
 use Mike42\Escpos\Printer;
 use Mike42\Escpos\PrintConnectors\WindowsPrintConnector;
 
-// Helper functions
-function printLinea($printer, $char = "-", $width = 48) {
-    $printer->text(str_repeat($char, $width) . "\n");
-}
-
-function cutString($text, $maxLength) {
-    return substr($text, 0, $maxLength);
-}
+// Recibir datos
+$dataPrint = null;
+$isc = '';
 
-function printAlignedText($printer, $leftText, $rightText, $width = 48) {
-    $rightLen = strlen($rightText);
-    $leftLen = $width - $rightLen;
-    $leftPadded = str_pad($leftText, $leftLen, " ", STR_PAD_RIGHT);
-    $printer->text($leftPadded . $rightText . "\n");
+if(isset($_POST["dataPrint"])){
+    // jQuery envía el objeto como está, necesitamos convertirlo a array
+    $dataPrint = is_array($_POST["dataPrint"]) ? $_POST["dataPrint"] : json_decode(json_encode($_POST["dataPrint"]), true);
 }
 
-// Get data from POST
-$dataPrint = null;
-if ($_SERVER['REQUEST_METHOD'] == 'POST' && isset($_POST["dataPrint"])) {
-    $dataPrint = json_decode($_POST["dataPrint"]);
+if(!$dataPrint){
+    echo json_encode([
+        'success' => false,
+        'status' => 'error', 
+        'message' => 'No se recibieron datos para imprimir'
+    ]);
+    exit;
 }
 
-if ($dataPrint) {
-    $PRINTER_NAME = $dataPrint->printer ?? 'POS-80C';
-    
-    try {
-        $connector = new WindowsPrintConnector($PRINTER_NAME);
-        $printer = new Printer($connector);
-        
-        // COMPANY HEADER
-        $printer->setJustification(Printer::JUSTIFY_CENTER);
-        $printer->setTextSize(2, 2);
-        $printer->text(cutString(strtoupper($dataPrint->nombre_empresa), 24) . "\n");
-        
-        $printer->setTextSize(1, 1);
-        //$printer->text(cutString(strtoupper($dataPrint->giro_empresa ?? ''), 48) . "\n");
-        //$printer->text(cutString(strtoupper($dataPrint->direcion_empresa), 48) . "\n");
-        //$printer->text(cutString(strtoupper($dataPrint->rsocial_empresa), 48) . "\n");
-        //$printer->text("NRC: " . $dataPrint->nrc_empresa . " - NIT: " . $dataPrint->nit_empresa . "\n");
-        
-        printLinea($printer);
-        
-        // DOCUMENT INFO
-        $printer->setJustification(Printer::JUSTIFY_LEFT);
-        printAlignedText($printer, "Fecha: " . $dataPrint->fecha, "Caja: " . $dataPrint->caja);
-        printAlignedText($printer, "Vendedor: " . $dataPrint->vendedor, "Cajero: " . $dataPrint->cajero);
-        
-        $printer->setJustification(Printer::JUSTIFY_CENTER);
+try {
+    // Nombre de la impresora de caja
+    $nombreImpresora = isset($dataPrint['printer']) ? $dataPrint['printer'] : "POS-80C";
+    
+    $connector = new WindowsPrintConnector($nombreImpresora);
+    $printer = new Printer($connector);
+    
+    // ENCABEZADO
+    $printer->setJustification(Printer::JUSTIFY_CENTER);
+    $printer->setTextSize(2, 2);
+    $printer->text($dataPrint['nombre_empresa'] . "\n");
+    $printer->setTextSize(1, 1);
+    
+    if (!empty($dataPrint['direcion_empresa'])) {
+        $printer->text($dataPrint['direcion_empresa'] . "\n");
+    }
+    
+    if (!empty($dataPrint['nit_empresa'])) {
+        $printer->text("NIT: " . $dataPrint['nit_empresa'] . "\n");
+    }
+    
+    if (!empty($dataPrint['nrc_empresa'])) {
+        $printer->text("NRC: " . $dataPrint['nrc_empresa'] . "\n");
+    }
+    
+    $printer->text(str_repeat("=", 45) . "\n");
+    $printer->setEmphasis(true);
+    $printer->text("R E C I B O\n");
+    $printer->setEmphasis(false);
+    $printer->text(str_repeat("=", 45) . "\n");
+    
+    // INFORMACIÓN DEL RECIBO
+    $printer->setJustification(Printer::JUSTIFY_LEFT);
+    
+    if (!empty($dataPrint['doc_numero'])) {
         $printer->setEmphasis(true);
-        $printer->text("RECIBO\n");
-        $printer->text("No. " . $dataPrint->doc_numero . "\n");
+        $printer->text("Recibo #: ");
         $printer->setEmphasis(false);
-        
-        printLinea($printer);
-        
-        // CUSTOMER INFO
-        if (isset($dataPrint->cliente) && $dataPrint->cliente != "") {
-            $printer->setJustification(Printer::JUSTIFY_LEFT);
-            $printer->text("Cliente: " . $dataPrint->cliente . "\n");
-            if (isset($dataPrint->direccion_cliente) && $dataPrint->direccion_cliente != "") {
-                $printer->text("Direccion: " . $dataPrint->direccion_cliente . "\n");
-            }
-            printLinea($printer);
-        }
-        
-        // PRODUCTS TABLE
-        $printer->setJustification(Printer::JUSTIFY_LEFT);
+        $printer->text($dataPrint['doc_numero'] . "\n");
+    }
+    
+    if (!empty($dataPrint['fecha'])) {
+        $printer->setEmphasis(true);
+        $printer->text("Fecha: ");
+        $printer->setEmphasis(false);
+        $printer->text($dataPrint['fecha'] . "\n");
+    }
+    
+    if (!empty($dataPrint['referencia'])) {
+        $printer->setEmphasis(true);
+        $printer->text("Referencia: ");
+        $printer->setEmphasis(false);
+        $printer->text($dataPrint['referencia'] . "\n");
+    }
+    
+    if (!empty($dataPrint['cliente'])) {
+        $printer->setEmphasis(true);
+        $printer->text("Cliente: ");
+        $printer->setEmphasis(false);
+        $printer->text($dataPrint['cliente'] . "\n");
+    }
+    
+    if (!empty($dataPrint['vendedor'])) {
+        $printer->setEmphasis(true);
+        $printer->text("Vendedor: ");
+        $printer->setEmphasis(false);
+        $printer->text($dataPrint['vendedor'] . "\n");
+    }
+    
+    if (!empty($dataPrint['caja'])) {
         $printer->setEmphasis(true);
-        $printer->text("CANT  DESCRIPCION               PRECIO  TOTAL\n");
-        printLinea($printer);
+        $printer->text("Caja: ");
         $printer->setEmphasis(false);
-        
-        foreach ($dataPrint->productos_normal as $producto) {
-            $cantidad = str_pad(number_format($producto->cant, 2), 5, " ", STR_PAD_RIGHT);
-            $precio = str_pad(number_format($producto->costo, 2), 7, " ", STR_PAD_LEFT);
-            $total = str_pad(number_format($producto->costo * $producto->cant, 2), 7, " ", STR_PAD_LEFT);
+        $printer->text($dataPrint['caja'] . "\n");
+    }
+    
+    $printer->text(str_repeat("-", 45) . "\n");
+    
+    // ENCABEZADO DE TABLA
+    $printer->setEmphasis(true);
+    $printer->text("CANT  DESCRIPCION               TOTAL\n");
+    $printer->setEmphasis(false);
+    $printer->text(str_repeat("-", 45) . "\n");
+    
+    // PRODUCTOS
+    $subtotal = 0;
+    if (isset($dataPrint['productos_normal']) && is_array($dataPrint['productos_normal'])) {
+        foreach ($dataPrint['productos_normal'] as $producto) {
+            // Convertir objeto a array si es necesario
+            $productoArray = is_object($producto) ? (array)$producto : $producto;
             
-            $descripcion = wordwrap(strtoupper($producto->desc), 23, "\n", true);
-            $lineasDescripcion = explode("\n", $descripcion);
+            $cant = isset($productoArray['cant']) ? number_format($productoArray['cant'], 0) : '0';
+            $desc = isset($productoArray['desc']) ? $productoArray['desc'] : '';
+            $costo = isset($productoArray['costo']) ? floatval($productoArray['costo']) : 0;
+            $cantNum = isset($productoArray['cant']) ? floatval($productoArray['cant']) : 0;
+            $total = $cantNum * $costo;
+            $subtotal += $total;
             
-            $printer->text("$cantidad " . str_pad($lineasDescripcion[0], 23, " ") . " $precio $total\n");
+            // Línea del producto - cant y descripción
+            $cantPad = str_pad($cant, 4);
+            $descCorto = substr($desc, 0, 25);
+            $totalStr = "$" . number_format($total, 2);
             
-            for ($i = 1; $i < count($lineasDescripcion); $i++) {
-                $printer->text("      " . $lineasDescripcion[$i] . "\n");
-            }
-        }
-        
-        printLinea($printer);
-        
-        // TOTALS
-        $printer->setJustification(Printer::JUSTIFY_RIGHT);
-        $printer->setEmphasis(true);
-        $printer->setTextSize(1, 2);
-        $printer->text("TOTAL $" . number_format($dataPrint->totales->totalTotal, 2) . "\n");
-        $printer->setTextSize(1, 1);
-        $printer->setEmphasis(false);
-        
-        $printer->text("EFECTIVO $" . number_format($dataPrint->efectivo, 2) . "\n");
-        
-        if (isset($dataPrint->pos) && floatval($dataPrint->pos) > 0) {
-            $printer->text("POS $" . number_format($dataPrint->pos, 2) . "\n");
-        }
-        
-        $printer->setJustification(Printer::JUSTIFY_LEFT);
-        printAlignedText($printer, "REF.: " . $dataPrint->referencia, "CAMBIO $" . number_format($dataPrint->cambio, 2));
-        
-        printLinea($printer);
-        
-        // NOTES
-        if (isset($dataPrint->notas) && $dataPrint->notas != "") {
-            $printer->setJustification(Printer::JUSTIFY_LEFT);
-            $printer->text("Notas: " . $dataPrint->notas . "\n");
-            printLinea($printer);
+            $printer->text($cantPad . "x " . str_pad($descCorto, 27) . str_pad($totalStr, 10, " ", STR_PAD_LEFT) . "\n");
         }
-        
-        // FINAL MESSAGE
-        $printer->setJustification(Printer::JUSTIFY_CENTER);
-        $printer->text("\n");
-        
-        if (isset($dataPrint->mensaje_ticket) && $dataPrint->mensaje_ticket != "") {
-            $mensajeLines = wordwrap($dataPrint->mensaje_ticket, 48, "\n", true);
-            foreach (explode("\n", $mensajeLines) as $linea) {
-                $printer->text($linea . "\n");
-            }
-        }
-        
-        // FINISH
-        $printer->feed(2);
-        $printer->cut();
-        $printer->close();
-        
-        echo json_encode([
-            "status" => "success",
-            "message" => "Recibo impreso correctamente."
-        ]);
-        
-    } catch (Exception $e) {
-        echo json_encode([
-            "status" => "error",
-            "message" => "Error al imprimir: " . $e->getMessage()
-        ]);
-    }
-} else {
+    }
+    
+    $printer->text(str_repeat("=", 45) . "\n");
+    
+    // TOTALES
+    $printer->setJustification(Printer::JUSTIFY_RIGHT);
+    
+    $totales = isset($dataPrint['totales']) && is_array($dataPrint['totales']) ? $dataPrint['totales'] : [];
+    
+    $totalGrabadas = isset($totales['totalGrabadas']) ? floatval(str_replace(',', '', $totales['totalGrabadas'])) : $subtotal;
+    $descuento = isset($totales['descuento']) ? floatval(str_replace(',', '', $totales['descuento'])) : 0;
+    $propina = isset($totales['propina']) ? floatval(str_replace(',', '', $totales['propina'])) : 0;
+    $totalTotal = isset($totales['totalTotal']) ? floatval(str_replace(',', '', $totales['totalTotal'])) : 0;
+    
+    $printer->text("Subtotal:  $" . number_format($totalGrabadas, 2) . "\n");
+    
+    if ($descuento > 0) {
+        $printer->text("Descuento: -$" . number_format($descuento, 2) . "\n");
+    }
+    
+    if ($propina > 0) {
+        $printer->text("Propina:   $" . number_format($propina, 2) . "\n");
+    }
+    
+
+    
+    // FORMA DE PAGO
+    $printer->setJustification(Printer::JUSTIFY_RIGHT);
+    
+    $efectivo = isset($dataPrint['efectivo']) ? floatval($dataPrint['efectivo']) : 0;
+    $pos = isset($dataPrint['pos']) ? floatval($dataPrint['pos']) : 0;
+    $cambio = isset($dataPrint['cambio']) ? floatval($dataPrint['cambio']) : 0;
+    
+    if ($efectivo > 0) {
+        $printer->text("Efectivo:  $" . number_format($efectivo, 2) . "\n");
+    }
+    
+    if ($pos > 0) {
+        $printer->text("POS/Tarjeta: $" . number_format($pos, 2) . "\n");
+    }
+    
+    if ($cambio > 0) {
+        $printer->text("Cambio:    $" . number_format($cambio, 2) . "\n");
+    }
+    
+    $printer->text(str_repeat("-", 45) . "\n");
+    $printer->setEmphasis(true);
+    $printer->setTextSize(2, 1);
+    $printer->text("TOTAL: $" . number_format($totalTotal, 2) . "\n");
+    $printer->setTextSize(1, 1);
+    $printer->setEmphasis(false);
+    $printer->text(str_repeat("=", 45) . "\n");
+    
+    // MENSAJE FINAL
+    $printer->setJustification(Printer::JUSTIFY_CENTER);
+    
+    if (!empty($dataPrint['mensaje_ticket'])) {
+        $printer->text($dataPrint['mensaje_ticket'] . "\n");
+    }
+    
+    $printer->text("\n¡Gracias por su compra!\n");
+    $printer->text("Este es un recibo, NO factura\n");
+    
+    $printer->feed(3);
+    $printer->cut();
+    $printer->close();
+    
+    echo json_encode([
+        'success' => true,
+        'status' => 'success',
+        'message' => 'Recibo impreso correctamente en ' . $nombreImpresora
+    ]);
+    
+} catch (Exception $e) {
     echo json_encode([
-        "status" => "error",
-        "message" => "No se recibieron datos para imprimir."
+        'success' => false,
+        'status' => 'error',
+        'message' => 'Error al imprimir: ' . $e->getMessage()
     ]);
 }
 ?>