refs #7409 fix pr
gitea/salix/pipeline/pr-dev There was a failure building this commit Details

This commit is contained in:
Carlos Satorres 2024-06-25 12:35:25 +02:00
parent 424e0c430c
commit 248358fbd7
1 changed files with 7 additions and 11 deletions

View File

@ -3884,20 +3884,16 @@ INSERT INTO `vn`.`calendarHolidays` (calendarHolidaysTypeFk, dated, calendarHoli
INSERT INTO vn.payrollComponent INSERT INTO vn.payrollComponent
(id, name, isSalaryAgreed, isVariable, isException) (id, name, isSalaryAgreed, isVariable, isException)
VALUES(1, 'Salario1', 1, 0, 0); VALUES
INSERT INTO vn.payrollComponent (1, 'Salario1', 1, 0, 0),
(id, name, isSalaryAgreed, isVariable, isException) (2, 'Salario2', 1, 1, 0),
VALUES(2, 'Salario2', 1, 1, 0); (3, 'Salario3', 1, 0, 1);
INSERT INTO vn.payrollComponent
(id, name, isSalaryAgreed, isVariable, isException)
VALUES(3, 'Salario3', 1, 0, 1);
INSERT INTO vn.workerIncome INSERT INTO vn.workerIncome
(debit, credit, incomeTypeFk, paymentDate, workerFk, concept) (debit, credit, incomeTypeFk, paymentDate, workerFk, concept)
VALUES(1000.00, 900.00, 2, '2000-01-01', 1106, NULL); VALUES
INSERT INTO vn.workerIncome (1000.00, 900.00, 2, '2000-01-01', 1106, NULL),
(debit, credit, incomeTypeFk, paymentDate, workerFk, concept) (1001.00, 800.00, 2, '2000-01-01', 1106, NULL);
VALUES(1001.00, 800.00, 2, '2000-01-01', 1106, NULL);