2025-02-20 07:48:49 +00:00
|
|
|
CREATE OR REPLACE DEFINER=`vn`@`localhost`
|
2024-01-29 11:35:49 +00:00
|
|
|
SQL SECURITY DEFINER
|
|
|
|
VIEW `vn2008`.`account_conciliacion`
|
|
|
|
AS SELECT `ar`.`id` AS `idaccount_conciliacion`,
|
|
|
|
`ar`.`supplierAccountFk` AS `Id_Proveedores_account`,
|
|
|
|
`ar`.`operationDated` AS `Fechaoperacion`,
|
|
|
|
`ar`.`valueDated` AS `FechaValor`,
|
|
|
|
`ar`.`amount` AS `importe`,
|
|
|
|
`ar`.`concept` AS `Concepto`,
|
|
|
|
`ar`.`debitCredit` AS `DebeHaber`,
|
|
|
|
`ar`.`calculatedCode` AS `id_calculated`,
|
|
|
|
`ar`.`created` AS `odbc_date`
|
|
|
|
FROM `vn`.`accountReconciliation` `ar`
|