etiqueta impresora

This commit is contained in:
amazuecos
2025-04-02 08:16:58 +02:00
parent bb78f9cbd8
commit d42f46d280
8 changed files with 343 additions and 1 deletions

View File

@ -0,0 +1,80 @@
<?php
namespace App\Database\Migrations;
use CodeIgniter\Database\Migration;
use CodeIgniter\Database\RawSql;
class ImpresoraEtiquetasTable extends Migration
{
protected array $COLUMNS = [
'id' => [
'type' => 'INT',
'unsigned' => true,
'auto_increment' => true,
],
'name' => [
'type' => 'VARCHAR',
'constraint' => 255
],
'tipo' => [
'type' => 'INT',
'unsigned' => true,
'default' => 1,
],
'ip' => [
'type' => 'VARCHAR',
'constraint' => 255
],
'port' => [
'type' => 'INT',
'unsigned' => true,
],
'user' => [
'type' => 'VARCHAR',
'constraint' => 255,
'null' => true,
],
'pass' => [
'type' => 'VARCHAR',
'constraint' => 255,
'null' => true,
],
'description' => [
'type' => 'LONGTEXT',
'null' => true,
],
];
public function up()
{
$this->forge->addField($this->COLUMNS);
$currenttime = new RawSql('CURRENT_TIMESTAMP');
$this->forge->addField([
'created_at' => [
'type' => 'TIMESTAMP',
'default' => $currenttime,
],
'updated_at' => [
'type' => 'TIMESTAMP',
'null' => true,
],
'deleted_at' => [
'type' => 'TIMESTAMP',
'null' => true,
],
]);
$this->forge->addPrimaryKey('id');
$this->forge->createTable("etiqueta_impresoras");
}
public function down()
{
$this->forge->dropTable("etiqueta_impresoras");
}
}

View File

@ -0,0 +1,45 @@
<?php
namespace App\Database\Seeds;
use App\Models\Configuracion\ImpresoraEtiquetaModel;
use CodeIgniter\Database\Seeder;
class EtiquetaImpresoraSeeder extends Seeder
{
public function run()
{
$data = [
[
"name" => "GC420d",
"tipo" => 0,
"ip" => "83.61.19.226",
"port" => 9101,
"description" => "cat rutadocumento | netcat -w 1 83.61.19.226 9101"
],
[
"name" => "LABPRINT-1",
"tipo" => 1,
"ip" => "83.61.19.226",
"port" => 9102,
"user" => "52J153500357"
],
[
"name" => "LABPRINT-2",
"tipo" => 1,
"ip" => "83.61.19.226",
"port" => 9103,
"user" => "52J153500357"
]
];
$etiquetaImpresoraModel = model(ImpresoraEtiquetaModel::class);
foreach ($data as $key => $impresoraData) {
$impresoraCount = $etiquetaImpresoraModel->where('name',$impresoraData["name"])->countAllResults();
if($impresoraCount == 0){
$etiquetaImpresoraModel->insert($impresoraData);
}
}
}
}