Skip to content
Snippets Groups Projects
Commit fca29f43 authored by aspangaro's avatar aspangaro
Browse files

Add table into script migration && key language

parent 048b3c01
No related branches found
No related tags found
No related merge requests found
......@@ -1037,3 +1037,21 @@ CREATE TABLE IF NOT EXISTS `llx_expeditiondet_batch` (
`fk_origin_stock` int(11) NOT NULL,
KEY `ix_fk_expeditiondet` (`fk_expeditiondet`)
) ENGINE=InnoDB;
--Salary payment in tax module
CREATE TABLE IF NOT EXISTS `llx_salaries` (
`rowid` integer AUTO_INCREMENT PRIMARY KEY,
`tms` timestamp,
`fk_user` integer NOT NULL,
`datep` date,
`datev` date,
`amount` real NOT NULL DEFAULT 0,
`label` varchar(255),
`datesp` date, -- date de début de la période
`dateep` date, -- date de fin de la période
`entity` integer DEFAULT 1 NOT NULL, -- multi company id
`note` text,
`fk_bank` integer,
`fk_user_creat` integer,
`fk_user_modif` integer
)ENGINE=innodb;
\ No newline at end of file
......@@ -70,6 +70,8 @@ ListOfPayments=List of payments
ListOfCustomerPayments=List of customer payments
ListOfSupplierPayments=List of supplier payments
DatePayment=Payment date
Datesp=Date start period
Dateep=Date end period
NewVATPayment=New VAT payment
NewSalPayment=New Salary payment
newLT2PaymentES=New IRPF payment
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment