This commit is contained in:
parent
424e0c430c
commit
248358fbd7
|
@ -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);
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue