CadProdutoLoteEntity
extends Entity
in package
Table of Contents
Constants
- auditlog = []
- Allowed keys: 'exclude_fields': <...> 'object_rel': <...>
- const_values = []
- database = \config\Config::DB_DEFAULT
- db_table = 'cad_produtos_lote'
- pk_field = 'idProdutoLoteCompra'
- sanitize = []
- security = ['select' => 'core\EntitySecurity::securitySelect', 'delete' => 'core\EntitySecurity::securityDelete', 'update' => 'core\EntitySecurity::securityUpdate', 'insert' => 'core\EntitySecurity::securityInsert']
- Allowed keys: 'select': <...> 'update': <...> 'delete': <...> 'insert': <...>
- tracking = true
- validations = []
Properties
- $dataFabricacao : mixed
- $dataVecto : mixed
- $idDeposito : mixed
- $idProduto : mixed
- $idProdutoLoteCompra : mixed
- $numeroLote : mixed
- $saldo : mixed
Methods
- __construct() : mixed
- delete() : mixed
- delete_where() : mixed
- getAuditlog() : mixed
- getConst() : mixed
- getConstObj() : mixed
- getDatabase() : mixed
- getDataFabricacao() : mixed
- Get the value of dataFabricacao
- getDataVecto() : mixed
- Get the value of dataVecto
- getDBDriver() : mixed
- getDBTable() : mixed
- getIdDeposito() : mixed
- Get the value of idDeposito
- getIdProduto() : mixed
- Get the value of idProduto
- getIdProdutoLoteCompra() : mixed
- Get the value of idProdutoLote
- getNumeroLote() : mixed
- Get the value of numeroLote
- getSaldo() : mixed
- Get the value of saldo
- getTable() : mixed
- hasField() : mixed
- insert() : null|Entity
- insert_or_select() : null|Entity
- Funcao que insere ou seleciona se existe
- insert_or_update() : array<string|int, mixed>
- Funcao que insere ou atualiza uma entidade no banco de dados
- securityDelete() : bool
- securityInsert() : bool
- securitySelect() : array<string|int, mixed>
- securityUpdate() : bool
- setDataFabricacao() : self
- Set the value of dataFabricacao
- setDataVecto() : self
- Set the value of dataVecto
- setIdDeposito() : self
- Set the value of idDeposito
- setIdProduto() : self
- Set the value of idProduto
- setIdProdutoLoteCompra() : self
- Set the value of idProdutoLoteCompra
- setNumeroLote() : self
- Set the value of numeroLote
- setSaldo() : self
- Set the value of saldo
- update() : mixed
- A função update pode atualizar uma Entity já instanciada, desde que a chave primária esteja setada, ou pode atualizar uma Entity vazia informando o valor da chave primária no segundo parâmetro (pk_value)
- validateFields() : bool
- where() : Collection
- Rudimentary ORM functions
Constants
auditlog
Allowed keys: 'exclude_fields': <...> 'object_rel': <...>
public
mixed
auditlog
= []
const_values
public
mixed
const_values
= []
database
public
mixed
database
= \config\Config::DB_DEFAULT
db_table
public
mixed
db_table
= 'cad_produtos_lote'
pk_field
public
mixed
pk_field
= 'idProdutoLoteCompra'
sanitize
public
mixed
sanitize
= []
security
Allowed keys: 'select': <...> 'update': <...> 'delete': <...> 'insert': <...>
public
mixed
security
= ['select' => 'core\EntitySecurity::securitySelect', 'delete' => 'core\EntitySecurity::securityDelete', 'update' => 'core\EntitySecurity::securityUpdate', 'insert' => 'core\EntitySecurity::securityInsert']
tracking
public
mixed
tracking
= true
validations
public
mixed
validations
= []
Properties
$dataFabricacao
private
mixed
$dataFabricacao
$dataVecto
private
mixed
$dataVecto
$idDeposito
private
mixed
$idDeposito
$idProduto
private
mixed
$idProduto
$idProdutoLoteCompra
private
mixed
$idProdutoLoteCompra
$numeroLote
private
mixed
$numeroLote
$saldo
private
mixed
$saldo
Methods
__construct()
public
__construct([array<string|int, mixed> $values = [] ]) : mixed
Parameters
- $values : array<string|int, mixed> = []
delete()
public
delete(mixed $motivo) : mixed
Parameters
- $motivo : mixed
delete_where()
public
static delete_where(mixed $motivo[, mixed $where = [] ]) : mixed
Parameters
- $motivo : mixed
- $where : mixed = []
getAuditlog()
public
getAuditlog([string|null $key = null ]) : mixed
Parameters
- $key : string|null = null
getConst()
public
static getConst(string $field[, mixed $const_value = null ]) : mixed
Parameters
- $field : string
- $const_value : mixed = null
getConstObj()
public
static getConstObj(string $field[, mixed $const_value = null ]) : mixed
Parameters
- $field : string
- $const_value : mixed = null
getDatabase()
public
getDatabase() : mixed
getDataFabricacao()
Get the value of dataFabricacao
public
getDataFabricacao() : mixed
getDataVecto()
Get the value of dataVecto
public
getDataVecto() : mixed
getDBDriver()
public
static getDBDriver() : mixed
getDBTable()
public
static getDBTable() : mixed
getIdDeposito()
Get the value of idDeposito
public
getIdDeposito() : mixed
getIdProduto()
Get the value of idProduto
public
getIdProduto() : mixed
getIdProdutoLoteCompra()
Get the value of idProdutoLote
public
getIdProdutoLoteCompra() : mixed
getNumeroLote()
Get the value of numeroLote
public
getNumeroLote() : mixed
getSaldo()
Get the value of saldo
public
getSaldo() : mixed
getTable()
public
getTable() : mixed
hasField()
public
static hasField(mixed $field) : mixed
Parameters
- $field : mixed
insert()
public
insert() : null|Entity
Return values
null|Entityinsert_or_select()
Funcao que insere ou seleciona se existe
public
insert_or_select([mixed $where = [] ]) : null|Entity
Parameters
- $where : mixed = []
Return values
null|Entityinsert_or_update()
Funcao que insere ou atualiza uma entidade no banco de dados
public
insert_or_update([mixed $where = [] ][, mixed $update_fields = ['*'] ]) : array<string|int, mixed>
Parameters
- $where : mixed = []
- $update_fields : mixed = ['*']
Return values
array<string|int, mixed>securityDelete()
public
securityDelete(mixed $table, mixed $where) : bool
Parameters
- $table : mixed
- $where : mixed
Return values
boolsecurityInsert()
public
securityInsert(mixed $fields) : bool
Parameters
- $fields : mixed
Return values
bool —return 'true' if the security function didn't find any security issue and 'false' otherwise
securitySelect()
public
securitySelect(mixed $table, mixed $fields, mixed $where) : array<string|int, mixed>
Parameters
- $table : mixed
- $fields : mixed
- $where : mixed
Return values
array<string|int, mixed> —return an array with information to be appended in the SQL select
securityUpdate()
public
securityUpdate(mixed $fields, mixed $where) : bool
Parameters
- $fields : mixed
- $where : mixed
Return values
bool —return 'true' if the security function didn't find any security issue and 'false' otherwise
setDataFabricacao()
Set the value of dataFabricacao
public
setDataFabricacao(mixed $dataFabricacao) : self
Parameters
- $dataFabricacao : mixed
Return values
selfsetDataVecto()
Set the value of dataVecto
public
setDataVecto(mixed $dataVecto) : self
Parameters
- $dataVecto : mixed
Return values
selfsetIdDeposito()
Set the value of idDeposito
public
setIdDeposito(mixed $idDeposito) : self
Parameters
- $idDeposito : mixed
Return values
selfsetIdProduto()
Set the value of idProduto
public
setIdProduto(mixed $idProduto) : self
Parameters
- $idProduto : mixed
Return values
selfsetIdProdutoLoteCompra()
Set the value of idProdutoLoteCompra
public
setIdProdutoLoteCompra(mixed $idProdutoLoteCompra) : self
Parameters
- $idProdutoLoteCompra : mixed
Return values
selfsetNumeroLote()
Set the value of numeroLote
public
setNumeroLote(mixed $numeroLote) : self
Parameters
- $numeroLote : mixed
Return values
selfsetSaldo()
Set the value of saldo
public
setSaldo(mixed $saldo) : self
Parameters
- $saldo : mixed
Return values
selfupdate()
A função update pode atualizar uma Entity já instanciada, desde que a chave primária esteja setada, ou pode atualizar uma Entity vazia informando o valor da chave primária no segundo parâmetro (pk_value)
public
update(array<string|int, mixed> $values[, mixed $pk_value = null ]) : mixed
Parameters
- $values : array<string|int, mixed>
- $pk_value : mixed = null
validateFields()
public
validateFields([array<string|int, mixed> $fields = [] ]) : bool
Parameters
- $fields : array<string|int, mixed> = []
Return values
boolwhere()
Rudimentary ORM functions
public
static where([mixed $where = [] ][, mixed $select = '*' ]) : Collection
Parameters
- $where : mixed = []
- $select : mixed = '*'