mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
etiqueta impresora
This commit is contained in:
@ -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");
|
||||
}
|
||||
}
|
||||
45
ci4/app/Database/Seeds/EtiquetaImpresoraSeeder.php
Normal file
45
ci4/app/Database/Seeds/EtiquetaImpresoraSeeder.php
Normal 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);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user