Fix project task numbering rule
This commit is contained in:
parent
92a8fde88b
commit
92dc21be04
@ -957,3 +957,5 @@ INSERT INTO llx_accountingaccount (fk_pcg_version, pcg_type, pcg_subtype, accoun
|
||||
INSERT INTO llx_accountingaccount (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUE ('PCMN-BASE', 'PROD', 'XXXXXX', '793', '79', 'Perte à reporter', '1');
|
||||
INSERT INTO llx_accountingaccount (fk_pcg_version, pcg_type, pcg_subtype, account_number, account_parent, label, active) VALUE ('PCMN-BASE', 'PROD', 'XXXXXX', '794', '79', 'Intervention d''associés (ou du propriétaire) dans la perte', '1');
|
||||
|
||||
|
||||
ALTER TABLE llx_projet_task ADD COLUMN entity integer DEFAULT 1 NOT NULL ref;
|
||||
|
||||
@ -21,6 +21,7 @@ create table llx_projet_task
|
||||
(
|
||||
rowid integer AUTO_INCREMENT PRIMARY KEY,
|
||||
ref varchar(50),
|
||||
entity integer DEFAULT 1 NOT NULL, -- multi company id
|
||||
fk_projet integer NOT NULL,
|
||||
fk_task_parent integer DEFAULT 0 NOT NULL,
|
||||
datec datetime, -- date creation
|
||||
|
||||
Loading…
Reference in New Issue
Block a user