NEW Asset module - New structure
This commit is contained in:
parent
a1f88c1186
commit
5152a060cc
@ -237,4 +237,219 @@ ALTER TABLE llx_advtargetemailing RENAME TO llx_mailing_advtarget;
|
||||
|
||||
ALTER TABLE llx_mailing ADD UNIQUE uk_mailing(titre, entity);
|
||||
|
||||
-- Assets - New module
|
||||
ALTER TABLE llx_asset DROP FOREIGN KEY fk_asset_asset_type;
|
||||
ALTER TABLE llx_asset DROP INDEX idx_asset_fk_asset_type;
|
||||
|
||||
ALTER TABLE llx_asset CHANGE COLUMN amount_ht acquisition_value_ht double(24,8) NOT NULL;
|
||||
ALTER TABLE llx_asset CHANGE COLUMN amount_vat recovered_vat double(24,8);
|
||||
|
||||
DELETE FROM llx_asset WHERE fk_asset_type IS NOT NULL;
|
||||
|
||||
ALTER TABLE llx_asset DROP COLUMN fk_asset_type;
|
||||
ALTER TABLE llx_asset DROP COLUMN description;
|
||||
|
||||
ALTER TABLE llx_asset ADD COLUMN fk_asset_model integer AFTER label;
|
||||
ALTER TABLE llx_asset ADD COLUMN reversal_amount_ht double(24,8) AFTER fk_asset_model;
|
||||
ALTER TABLE llx_asset ADD COLUMN reversal_date date AFTER recovered_vat;
|
||||
ALTER TABLE llx_asset ADD COLUMN date_acquisition date NOT NULL AFTER reversal_date;
|
||||
ALTER TABLE llx_asset ADD COLUMN date_start date NOT NULL AFTER date_acquisition;
|
||||
ALTER TABLE llx_asset ADD COLUMN qty real DEFAULT 1 NOT NULL AFTER date_start;
|
||||
ALTER TABLE llx_asset ADD COLUMN acquisition_type smallint DEFAULT 0 NOT NULL AFTER qty;
|
||||
ALTER TABLE llx_asset ADD COLUMN asset_type smallint DEFAULT 0 NOT NULL AFTER acquisition_type;
|
||||
ALTER TABLE llx_asset ADD COLUMN not_depreciated integer(1) DEFAULT 0 AFTER asset_type;
|
||||
ALTER TABLE llx_asset ADD COLUMN disposal_date date AFTER not_depreciated;
|
||||
ALTER TABLE llx_asset ADD COLUMN disposal_amount_ht double(24,8) AFTER disposal_date;
|
||||
ALTER TABLE llx_asset ADD COLUMN fk_disposal_type integer AFTER disposal_amount_ht;
|
||||
ALTER TABLE llx_asset ADD COLUMN disposal_depreciated integer(1) DEFAULT 0 AFTER fk_disposal_type;
|
||||
ALTER TABLE llx_asset ADD COLUMN disposal_subject_to_vat integer(1) DEFAULT 0 AFTER disposal_depreciated;
|
||||
ALTER TABLE llx_asset ADD COLUMN last_main_doc varchar(255) AFTER fk_user_modif;
|
||||
ALTER TABLE llx_asset ADD COLUMN model_pdf varchar(255) AFTER import_key;
|
||||
|
||||
DROP TABLE llx_asset_type;
|
||||
|
||||
CREATE TABLE llx_c_asset_disposal_type
|
||||
(
|
||||
rowid integer AUTO_INCREMENT PRIMARY KEY,
|
||||
entity integer NOT NULL DEFAULT 1,
|
||||
code varchar(16) NOT NULL,
|
||||
label varchar(50) NOT NULL,
|
||||
active integer DEFAULT 1 NOT NULL
|
||||
)ENGINE=innodb;
|
||||
|
||||
CREATE TABLE llx_asset_accountancy_codes_economic(
|
||||
rowid integer AUTO_INCREMENT PRIMARY KEY NOT NULL,
|
||||
fk_asset integer,
|
||||
fk_asset_model integer,
|
||||
|
||||
asset varchar(32),
|
||||
depreciation_asset varchar(32),
|
||||
depreciation_expense varchar(32),
|
||||
value_asset_sold varchar(32),
|
||||
receivable_on_assignment varchar(32),
|
||||
proceeds_from_sales varchar(32),
|
||||
vat_collected varchar(32),
|
||||
vat_deductible varchar(32),
|
||||
tms timestamp,
|
||||
fk_user_modif integer
|
||||
) ENGINE=innodb;
|
||||
|
||||
CREATE TABLE llx_asset_accountancy_codes_fiscal(
|
||||
rowid integer AUTO_INCREMENT PRIMARY KEY NOT NULL,
|
||||
fk_asset integer,
|
||||
fk_asset_model integer,
|
||||
|
||||
accelerated_depreciation varchar(32),
|
||||
endowment_accelerated_depreciation varchar(32),
|
||||
provision_accelerated_depreciation varchar(32),
|
||||
|
||||
tms timestamp,
|
||||
fk_user_modif integer
|
||||
) ENGINE=innodb;
|
||||
|
||||
CREATE TABLE llx_asset_depreciation_options_economic(
|
||||
rowid integer AUTO_INCREMENT PRIMARY KEY NOT NULL,
|
||||
fk_asset integer,
|
||||
fk_asset_model integer,
|
||||
|
||||
depreciation_type smallint DEFAULT 0 NOT NULL, -- 0:linear, 1:degressive, 2:exceptional
|
||||
accelerated_depreciation_option integer(1), -- activate accelerated depreciation mode (fiscal)
|
||||
|
||||
degressive_coefficient double(24,8),
|
||||
duration smallint NOT NULL,
|
||||
duration_type smallint DEFAULT 0 NOT NULL, -- 0:annual, 1:monthly, 2:daily
|
||||
|
||||
amount_base_depreciation_ht double(24,8),
|
||||
amount_base_deductible_ht double(24,8),
|
||||
total_amount_last_depreciation_ht double(24,8),
|
||||
|
||||
tms timestamp,
|
||||
fk_user_modif integer
|
||||
) ENGINE=innodb;
|
||||
|
||||
CREATE TABLE llx_asset_depreciation_options_fiscal(
|
||||
rowid integer AUTO_INCREMENT PRIMARY KEY NOT NULL,
|
||||
fk_asset integer,
|
||||
fk_asset_model integer,
|
||||
|
||||
depreciation_type smallint DEFAULT 0 NOT NULL, -- 0:linear, 1:degressive, 2:exceptional
|
||||
|
||||
degressive_coefficient double(24,8),
|
||||
duration smallint NOT NULL,
|
||||
duration_type smallint DEFAULT 0 NOT NULL, -- 0:annual, 1:monthly, 2:daily
|
||||
|
||||
amount_base_depreciation_ht double(24,8),
|
||||
amount_base_deductible_ht double(24,8),
|
||||
total_amount_last_depreciation_ht double(24,8),
|
||||
|
||||
tms timestamp,
|
||||
fk_user_modif integer
|
||||
) ENGINE=innodb;
|
||||
|
||||
CREATE TABLE llx_asset_depreciation(
|
||||
rowid integer AUTO_INCREMENT PRIMARY KEY NOT NULL,
|
||||
|
||||
fk_asset integer NOT NULL,
|
||||
depreciation_mode varchar(255) NOT NULL, -- (economic, fiscal or other)
|
||||
|
||||
ref varchar(255) NOT NULL,
|
||||
depreciation_date datetime NOT NULL,
|
||||
depreciation_ht double(24,8) NOT NULL,
|
||||
cumulative_depreciation_ht double(24,8) NOT NULL,
|
||||
|
||||
accountancy_code_debit varchar(32),
|
||||
accountancy_code_credit varchar(32),
|
||||
|
||||
tms timestamp,
|
||||
fk_user_modif integer
|
||||
) ENGINE=innodb;
|
||||
|
||||
CREATE TABLE llx_asset_model(
|
||||
rowid integer AUTO_INCREMENT PRIMARY KEY NOT NULL,
|
||||
entity integer DEFAULT 1 NOT NULL, -- multi company id
|
||||
ref varchar(128) NOT NULL,
|
||||
label varchar(255) NOT NULL,
|
||||
|
||||
asset_type smallint NOT NULL,
|
||||
fk_pays integer DEFAULT 0,
|
||||
|
||||
note_public text,
|
||||
note_private text,
|
||||
date_creation datetime NOT NULL,
|
||||
tms timestamp,
|
||||
fk_user_creat integer NOT NULL,
|
||||
fk_user_modif integer,
|
||||
import_key varchar(14),
|
||||
status smallint NOT NULL
|
||||
) ENGINE=innodb;
|
||||
|
||||
CREATE TABLE llx_asset_model_extrafields
|
||||
(
|
||||
rowid integer AUTO_INCREMENT PRIMARY KEY,
|
||||
tms timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
fk_object integer NOT NULL,
|
||||
import_key varchar(14) -- import key
|
||||
) ENGINE=innodb;
|
||||
|
||||
ALTER TABLE llx_c_asset_disposal_type ADD UNIQUE INDEX uk_c_asset_disposal_type(code, entity);
|
||||
|
||||
ALTER TABLE llx_asset ADD INDEX idx_asset_fk_asset_model (fk_asset_model);
|
||||
ALTER TABLE llx_asset ADD INDEX idx_asset_fk_disposal_type (fk_disposal_type);
|
||||
|
||||
ALTER TABLE llx_asset ADD CONSTRAINT fk_asset_asset_model FOREIGN KEY (fk_asset_model) REFERENCES llx_asset_model (rowid);
|
||||
ALTER TABLE llx_asset ADD CONSTRAINT fk_asset_disposal_type FOREIGN KEY (fk_disposal_type) REFERENCES llx_c_asset_disposal_type (rowid);
|
||||
ALTER TABLE llx_asset ADD CONSTRAINT fk_asset_user_creat FOREIGN KEY (fk_user_creat) REFERENCES llx_user (rowid);
|
||||
ALTER TABLE llx_asset ADD CONSTRAINT fk_asset_user_modif FOREIGN KEY (fk_user_modif) REFERENCES llx_user (rowid);
|
||||
|
||||
ALTER TABLE llx_asset_accountancy_codes_economic ADD INDEX idx_asset_ace_rowid (rowid);
|
||||
ALTER TABLE llx_asset_accountancy_codes_economic ADD UNIQUE uk_asset_ace_fk_asset (fk_asset);
|
||||
ALTER TABLE llx_asset_accountancy_codes_economic ADD UNIQUE uk_asset_ace_fk_asset_model (fk_asset_model);
|
||||
|
||||
ALTER TABLE llx_asset_accountancy_codes_economic ADD CONSTRAINT fk_asset_ace_asset FOREIGN KEY (fk_asset) REFERENCES llx_asset (rowid);
|
||||
ALTER TABLE llx_asset_accountancy_codes_economic ADD CONSTRAINT fk_asset_ace_asset_model FOREIGN KEY (fk_asset_model) REFERENCES llx_asset_model (rowid);
|
||||
ALTER TABLE llx_asset_accountancy_codes_economic ADD CONSTRAINT fk_asset_ace_user_modif FOREIGN KEY (fk_user_modif) REFERENCES llx_user (rowid);
|
||||
|
||||
ALTER TABLE llx_asset_accountancy_codes_fiscal ADD INDEX idx_asset_acf_rowid (rowid);
|
||||
ALTER TABLE llx_asset_accountancy_codes_fiscal ADD UNIQUE uk_asset_acf_fk_asset (fk_asset);
|
||||
ALTER TABLE llx_asset_accountancy_codes_fiscal ADD UNIQUE uk_asset_acf_fk_asset_model (fk_asset_model);
|
||||
|
||||
ALTER TABLE llx_asset_accountancy_codes_fiscal ADD CONSTRAINT fk_asset_acf_asset FOREIGN KEY (fk_asset) REFERENCES llx_asset (rowid);
|
||||
ALTER TABLE llx_asset_accountancy_codes_fiscal ADD CONSTRAINT fk_asset_acf_asset_model FOREIGN KEY (fk_asset_model) REFERENCES llx_asset_model (rowid);
|
||||
ALTER TABLE llx_asset_accountancy_codes_fiscal ADD CONSTRAINT fk_asset_acf_user_modif FOREIGN KEY (fk_user_modif) REFERENCES llx_user (rowid);
|
||||
|
||||
ALTER TABLE llx_asset_depreciation_options_economic ADD INDEX idx_asset_doe_rowid (rowid);
|
||||
ALTER TABLE llx_asset_depreciation_options_economic ADD UNIQUE uk_asset_doe_fk_asset (fk_asset);
|
||||
ALTER TABLE llx_asset_depreciation_options_economic ADD UNIQUE uk_asset_doe_fk_asset_model (fk_asset_model);
|
||||
|
||||
ALTER TABLE llx_asset_depreciation_options_economic ADD CONSTRAINT fk_asset_doe_asset FOREIGN KEY (fk_asset) REFERENCES llx_asset (rowid);
|
||||
ALTER TABLE llx_asset_depreciation_options_economic ADD CONSTRAINT fk_asset_doe_asset_model FOREIGN KEY (fk_asset_model) REFERENCES llx_asset_model (rowid);
|
||||
ALTER TABLE llx_asset_depreciation_options_economic ADD CONSTRAINT fk_asset_doe_user_modif FOREIGN KEY (fk_user_modif) REFERENCES llx_user (rowid);
|
||||
|
||||
ALTER TABLE llx_asset_depreciation_options_fiscal ADD INDEX idx_asset_dof_rowid (rowid);
|
||||
ALTER TABLE llx_asset_depreciation_options_fiscal ADD UNIQUE uk_asset_dof_fk_asset (fk_asset);
|
||||
ALTER TABLE llx_asset_depreciation_options_fiscal ADD UNIQUE uk_asset_dof_fk_asset_model (fk_asset_model);
|
||||
|
||||
ALTER TABLE llx_asset_depreciation_options_fiscal ADD CONSTRAINT fk_asset_dof_asset FOREIGN KEY (fk_asset) REFERENCES llx_asset (rowid);
|
||||
ALTER TABLE llx_asset_depreciation_options_fiscal ADD CONSTRAINT fk_asset_dof_asset_model FOREIGN KEY (fk_asset_model) REFERENCES llx_asset_model (rowid);
|
||||
ALTER TABLE llx_asset_depreciation_options_fiscal ADD CONSTRAINT fk_asset_dof_user_modif FOREIGN KEY (fk_user_modif) REFERENCES llx_user (rowid);
|
||||
|
||||
ALTER TABLE llx_asset_depreciation ADD INDEX idx_asset_depreciation_rowid (rowid);
|
||||
ALTER TABLE llx_asset_depreciation ADD INDEX idx_asset_depreciation_fk_asset (fk_asset);
|
||||
ALTER TABLE llx_asset_depreciation ADD INDEX idx_asset_depreciation_depreciation_mode (depreciation_mode);
|
||||
ALTER TABLE llx_asset_depreciation ADD INDEX idx_asset_depreciation_ref (ref);
|
||||
ALTER TABLE llx_asset_depreciation ADD UNIQUE uk_asset_depreciation_fk_asset (fk_asset, depreciation_mode, ref);
|
||||
|
||||
ALTER TABLE llx_asset_depreciation ADD CONSTRAINT fk_asset_depreciation_asset FOREIGN KEY (fk_asset) REFERENCES llx_asset (rowid);
|
||||
ALTER TABLE llx_asset_depreciation ADD CONSTRAINT fk_asset_depreciation_user_modif FOREIGN KEY (fk_user_modif) REFERENCES llx_user (rowid);
|
||||
|
||||
ALTER TABLE llx_asset_model ADD INDEX idx_asset_model_rowid (rowid);
|
||||
ALTER TABLE llx_asset_model ADD INDEX idx_asset_model_ref (ref);
|
||||
ALTER TABLE llx_asset_model ADD INDEX idx_asset_model_pays (fk_pays);
|
||||
ALTER TABLE llx_asset_model ADD INDEX idx_asset_model_entity (entity);
|
||||
ALTER TABLE llx_asset_model ADD UNIQUE INDEX uk_asset_model (entity, ref);
|
||||
|
||||
ALTER TABLE llx_asset_model ADD CONSTRAINT fk_asset_model_user_creat FOREIGN KEY (fk_user_creat) REFERENCES llx_user (rowid);
|
||||
ALTER TABLE llx_asset_model ADD CONSTRAINT fk_asset_model_user_modif FOREIGN KEY (fk_user_modif) REFERENCES llx_user (rowid);
|
||||
|
||||
ALTER TABLE llx_asset_model_extrafields ADD INDEX idx_asset_model_extrafields (fk_object);
|
||||
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
-- Copyright (C) 2018 Alexandre Spangaro <aspangaro@open-dsi.fr>
|
||||
-- ========================================================================
|
||||
-- Copyright (C) 2018-2022 OpenDSI <support@open-dsi.fr>
|
||||
--
|
||||
-- This program is free software: you can redistribute it and/or modify
|
||||
-- it under the terms of the GNU General Public License as published by
|
||||
@ -12,12 +13,12 @@
|
||||
--
|
||||
-- You should have received a copy of the GNU General Public License
|
||||
-- along with this program. If not, see https://www.gnu.org/licenses/.
|
||||
-- ========================================================================
|
||||
|
||||
ALTER TABLE llx_asset ADD INDEX idx_asset_fk_asset_model (fk_asset_model);
|
||||
ALTER TABLE llx_asset ADD INDEX idx_asset_fk_disposal_type (fk_disposal_type);
|
||||
|
||||
ALTER TABLE llx_asset ADD INDEX idx_asset_rowid (rowid);
|
||||
ALTER TABLE llx_asset ADD INDEX idx_asset_ref (ref);
|
||||
ALTER TABLE llx_asset ADD INDEX idx_asset_entity (entity);
|
||||
|
||||
ALTER TABLE llx_asset ADD INDEX idx_asset_fk_asset_type (fk_asset_type);
|
||||
ALTER TABLE llx_asset ADD CONSTRAINT fk_asset_asset_type FOREIGN KEY (fk_asset_type) REFERENCES llx_asset_type (rowid);
|
||||
|
||||
ALTER TABLE llx_asset ADD CONSTRAINT fk_asset_asset_model FOREIGN KEY (fk_asset_model) REFERENCES llx_asset_model (rowid);
|
||||
ALTER TABLE llx_asset ADD CONSTRAINT fk_asset_disposal_type FOREIGN KEY (fk_disposal_type) REFERENCES llx_c_asset_disposal_type (rowid);
|
||||
ALTER TABLE llx_asset ADD CONSTRAINT fk_asset_user_creat FOREIGN KEY (fk_user_creat) REFERENCES llx_user (rowid);
|
||||
ALTER TABLE llx_asset ADD CONSTRAINT fk_asset_user_modif FOREIGN KEY (fk_user_modif) REFERENCES llx_user (rowid);
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
-- Copyright (C) 2018 Alexandre Spangaro <aspangaro@open-dsi.fr>
|
||||
-- ========================================================================
|
||||
-- Copyright (C) 2018-2022 OpenDSI <support@open-dsi.fr>
|
||||
--
|
||||
-- This program is free software: you can redistribute it and/or modify
|
||||
-- it under the terms of the GNU General Public License as published by
|
||||
@ -12,23 +13,47 @@
|
||||
--
|
||||
-- You should have received a copy of the GNU General Public License
|
||||
-- along with this program. If not, see https://www.gnu.org/licenses/.
|
||||
|
||||
-- ========================================================================
|
||||
|
||||
CREATE TABLE llx_asset(
|
||||
rowid integer AUTO_INCREMENT PRIMARY KEY NOT NULL,
|
||||
ref varchar(128) NOT NULL,
|
||||
entity integer DEFAULT 1 NOT NULL,
|
||||
label varchar(255),
|
||||
amount_ht double(24,8) DEFAULT NULL,
|
||||
amount_vat double(24,8) DEFAULT NULL,
|
||||
fk_asset_type integer NOT NULL,
|
||||
description text,
|
||||
note_public text,
|
||||
note_private text,
|
||||
date_creation datetime NOT NULL,
|
||||
tms timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
fk_user_creat integer NOT NULL,
|
||||
fk_user_modif integer,
|
||||
import_key varchar(14),
|
||||
status integer NOT NULL
|
||||
rowid integer AUTO_INCREMENT PRIMARY KEY NOT NULL,
|
||||
ref varchar(128) NOT NULL,
|
||||
entity integer DEFAULT 1 NOT NULL,
|
||||
label varchar(255),
|
||||
|
||||
fk_asset_model integer,
|
||||
|
||||
reversal_amount_ht double(24,8),
|
||||
acquisition_value_ht double(24,8) DEFAULT NULL,
|
||||
recovered_vat double(24,8),
|
||||
|
||||
reversal_date date,
|
||||
|
||||
date_acquisition date NOT NULL,
|
||||
date_start date NOT NULL,
|
||||
|
||||
qty real DEFAULT 1 NOT NULL,
|
||||
|
||||
acquisition_type smallint DEFAULT 0 NOT NULL,
|
||||
asset_type smallint DEFAULT 0 NOT NULL,
|
||||
|
||||
not_depreciated integer DEFAULT 0,
|
||||
|
||||
disposal_date date,
|
||||
disposal_amount_ht double(24,8),
|
||||
fk_disposal_type integer,
|
||||
disposal_depreciated integer DEFAULT 0,
|
||||
disposal_subject_to_vat integer DEFAULT 0,
|
||||
|
||||
note_public text,
|
||||
note_private text,
|
||||
|
||||
date_creation datetime NOT NULL,
|
||||
tms timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
fk_user_creat integer NOT NULL,
|
||||
fk_user_modif integer,
|
||||
last_main_doc varchar(255),
|
||||
import_key varchar(14),
|
||||
model_pdf varchar(255),
|
||||
status integer NOT NULL
|
||||
) ENGINE=innodb;
|
||||
|
||||
@ -0,0 +1,24 @@
|
||||
-- ========================================================================
|
||||
-- Copyright (C) 2022 OpenDSI <support@open-dsi.fr>
|
||||
--
|
||||
-- This program is free software: you can redistribute it and/or modify
|
||||
-- it under the terms of the GNU General Public License as published by
|
||||
-- the Free Software Foundation, either version 3 of the License, or
|
||||
-- (at your option) any later version.
|
||||
--
|
||||
-- This program is distributed in the hope that it will be useful,
|
||||
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
-- GNU General Public License for more details.
|
||||
--
|
||||
-- You should have received a copy of the GNU General Public License
|
||||
-- along with this program. If not, see https://www.gnu.org/licenses/.
|
||||
-- ========================================================================
|
||||
|
||||
ALTER TABLE llx_asset_accountancy_codes_economic ADD INDEX idx_asset_ace_rowid (rowid);
|
||||
ALTER TABLE llx_asset_accountancy_codes_economic ADD UNIQUE uk_asset_ace_fk_asset (fk_asset);
|
||||
ALTER TABLE llx_asset_accountancy_codes_economic ADD UNIQUE uk_asset_ace_fk_asset_model (fk_asset_model);
|
||||
|
||||
ALTER TABLE llx_asset_accountancy_codes_economic ADD CONSTRAINT fk_asset_ace_asset FOREIGN KEY (fk_asset) REFERENCES llx_asset (rowid);
|
||||
ALTER TABLE llx_asset_accountancy_codes_economic ADD CONSTRAINT fk_asset_ace_asset_model FOREIGN KEY (fk_asset_model) REFERENCES llx_asset_model (rowid);
|
||||
ALTER TABLE llx_asset_accountancy_codes_economic ADD CONSTRAINT fk_asset_ace_user_modif FOREIGN KEY (fk_user_modif) REFERENCES llx_user (rowid);
|
||||
@ -0,0 +1,33 @@
|
||||
-- ========================================================================
|
||||
-- Copyright (C) 2022 OpenDSI <support@open-dsi.fr>
|
||||
--
|
||||
-- This program is free software: you can redistribute it and/or modify
|
||||
-- it under the terms of the GNU General Public License as published by
|
||||
-- the Free Software Foundation, either version 3 of the License, or
|
||||
-- (at your option) any later version.
|
||||
--
|
||||
-- This program is distributed in the hope that it will be useful,
|
||||
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
-- GNU General Public License for more details.
|
||||
--
|
||||
-- You should have received a copy of the GNU General Public License
|
||||
-- along with this program. If not, see https://www.gnu.org/licenses/.
|
||||
-- ========================================================================
|
||||
|
||||
CREATE TABLE llx_asset_accountancy_codes_economic(
|
||||
rowid integer AUTO_INCREMENT PRIMARY KEY NOT NULL,
|
||||
fk_asset integer,
|
||||
fk_asset_model integer,
|
||||
|
||||
asset varchar(32),
|
||||
depreciation_asset varchar(32),
|
||||
depreciation_expense varchar(32),
|
||||
value_asset_sold varchar(32),
|
||||
receivable_on_assignment varchar(32),
|
||||
proceeds_from_sales varchar(32),
|
||||
vat_collected varchar(32),
|
||||
vat_deductible varchar(32),
|
||||
tms timestamp,
|
||||
fk_user_modif integer
|
||||
) ENGINE=innodb;
|
||||
@ -0,0 +1,24 @@
|
||||
-- ========================================================================
|
||||
-- Copyright (C) 2022 OpenDSI <support@open-dsi.fr>
|
||||
--
|
||||
-- This program is free software: you can redistribute it and/or modify
|
||||
-- it under the terms of the GNU General Public License as published by
|
||||
-- the Free Software Foundation, either version 3 of the License, or
|
||||
-- (at your option) any later version.
|
||||
--
|
||||
-- This program is distributed in the hope that it will be useful,
|
||||
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
-- GNU General Public License for more details.
|
||||
--
|
||||
-- You should have received a copy of the GNU General Public License
|
||||
-- along with this program. If not, see https://www.gnu.org/licenses/.
|
||||
-- ========================================================================
|
||||
|
||||
ALTER TABLE llx_asset_accountancy_codes_fiscal ADD INDEX idx_asset_acf_rowid (rowid);
|
||||
ALTER TABLE llx_asset_accountancy_codes_fiscal ADD UNIQUE uk_asset_acf_fk_asset (fk_asset);
|
||||
ALTER TABLE llx_asset_accountancy_codes_fiscal ADD UNIQUE uk_asset_acf_fk_asset_model (fk_asset_model);
|
||||
|
||||
ALTER TABLE llx_asset_accountancy_codes_fiscal ADD CONSTRAINT fk_asset_acf_asset FOREIGN KEY (fk_asset) REFERENCES llx_asset (rowid);
|
||||
ALTER TABLE llx_asset_accountancy_codes_fiscal ADD CONSTRAINT fk_asset_acf_asset_model FOREIGN KEY (fk_asset_model) REFERENCES llx_asset_model (rowid);
|
||||
ALTER TABLE llx_asset_accountancy_codes_fiscal ADD CONSTRAINT fk_asset_acf_user_modif FOREIGN KEY (fk_user_modif) REFERENCES llx_user (rowid);
|
||||
@ -0,0 +1,29 @@
|
||||
-- ========================================================================
|
||||
-- Copyright (C) 2022 OpenDSI <support@open-dsi.fr>
|
||||
--
|
||||
-- This program is free software: you can redistribute it and/or modify
|
||||
-- it under the terms of the GNU General Public License as published by
|
||||
-- the Free Software Foundation, either version 3 of the License, or
|
||||
-- (at your option) any later version.
|
||||
--
|
||||
-- This program is distributed in the hope that it will be useful,
|
||||
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
-- GNU General Public License for more details.
|
||||
--
|
||||
-- You should have received a copy of the GNU General Public License
|
||||
-- along with this program. If not, see https://www.gnu.org/licenses/.
|
||||
-- ========================================================================
|
||||
|
||||
CREATE TABLE llx_asset_accountancy_codes_fiscal(
|
||||
rowid integer AUTO_INCREMENT PRIMARY KEY NOT NULL,
|
||||
fk_asset integer,
|
||||
fk_asset_model integer,
|
||||
|
||||
accelerated_depreciation varchar(32),
|
||||
endowment_accelerated_depreciation varchar(32),
|
||||
provision_accelerated_depreciation varchar(32),
|
||||
|
||||
tms timestamp,
|
||||
fk_user_modif integer
|
||||
) ENGINE=innodb;
|
||||
@ -0,0 +1,25 @@
|
||||
-- ========================================================================
|
||||
-- Copyright (C) 2022 OpenDSI <support@open-dsi.fr>
|
||||
--
|
||||
-- This program is free software: you can redistribute it and/or modify
|
||||
-- it under the terms of the GNU General Public License as published by
|
||||
-- the Free Software Foundation, either version 3 of the License, or
|
||||
-- (at your option) any later version.
|
||||
--
|
||||
-- This program is distributed in the hope that it will be useful,
|
||||
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
-- GNU General Public License for more details.
|
||||
--
|
||||
-- You should have received a copy of the GNU General Public License
|
||||
-- along with this program. If not, see https://www.gnu.org/licenses/.
|
||||
-- ========================================================================
|
||||
|
||||
ALTER TABLE llx_asset_depreciation ADD INDEX idx_asset_depreciation_rowid (rowid);
|
||||
ALTER TABLE llx_asset_depreciation ADD INDEX idx_asset_depreciation_fk_asset (fk_asset);
|
||||
ALTER TABLE llx_asset_depreciation ADD INDEX idx_asset_depreciation_depreciation_mode (depreciation_mode);
|
||||
ALTER TABLE llx_asset_depreciation ADD INDEX idx_asset_depreciation_ref (ref);
|
||||
ALTER TABLE llx_asset_depreciation ADD UNIQUE uk_asset_depreciation_fk_asset (fk_asset, depreciation_mode, ref);
|
||||
|
||||
ALTER TABLE llx_asset_depreciation ADD CONSTRAINT fk_asset_depreciation_asset FOREIGN KEY (fk_asset) REFERENCES llx_asset (rowid);
|
||||
ALTER TABLE llx_asset_depreciation ADD CONSTRAINT fk_asset_depreciation_user_modif FOREIGN KEY (fk_user_modif) REFERENCES llx_user (rowid);
|
||||
34
htdocs/install/mysql/tables/llx_asset_depreciation-asset.sql
Normal file
34
htdocs/install/mysql/tables/llx_asset_depreciation-asset.sql
Normal file
@ -0,0 +1,34 @@
|
||||
-- ========================================================================
|
||||
-- Copyright (C) 2022 OpenDSI <support@open-dsi.fr>
|
||||
--
|
||||
-- This program is free software: you can redistribute it and/or modify
|
||||
-- it under the terms of the GNU General Public License as published by
|
||||
-- the Free Software Foundation, either version 3 of the License, or
|
||||
-- (at your option) any later version.
|
||||
--
|
||||
-- This program is distributed in the hope that it will be useful,
|
||||
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
-- GNU General Public License for more details.
|
||||
--
|
||||
-- You should have received a copy of the GNU General Public License
|
||||
-- along with this program. If not, see https://www.gnu.org/licenses/.
|
||||
-- ========================================================================
|
||||
|
||||
CREATE TABLE llx_asset_depreciation(
|
||||
rowid integer AUTO_INCREMENT PRIMARY KEY NOT NULL,
|
||||
|
||||
fk_asset integer NOT NULL,
|
||||
depreciation_mode varchar(255) NOT NULL, -- (economic, fiscal or other)
|
||||
|
||||
ref varchar(255) NOT NULL,
|
||||
depreciation_date datetime NOT NULL,
|
||||
depreciation_ht double(24,8) NOT NULL,
|
||||
cumulative_depreciation_ht double(24,8) NOT NULL,
|
||||
|
||||
accountancy_code_debit varchar(32),
|
||||
accountancy_code_credit varchar(32),
|
||||
|
||||
tms timestamp,
|
||||
fk_user_modif integer
|
||||
) ENGINE=innodb;
|
||||
@ -0,0 +1,24 @@
|
||||
-- ========================================================================
|
||||
-- Copyright (C) 2022 OpenDSI <support@open-dsi.fr>
|
||||
--
|
||||
-- This program is free software: you can redistribute it and/or modify
|
||||
-- it under the terms of the GNU General Public License as published by
|
||||
-- the Free Software Foundation, either version 3 of the License, or
|
||||
-- (at your option) any later version.
|
||||
--
|
||||
-- This program is distributed in the hope that it will be useful,
|
||||
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
-- GNU General Public License for more details.
|
||||
--
|
||||
-- You should have received a copy of the GNU General Public License
|
||||
-- along with this program. If not, see https://www.gnu.org/licenses/.
|
||||
-- ========================================================================
|
||||
|
||||
ALTER TABLE llx_asset_depreciation_options_economic ADD INDEX idx_asset_doe_rowid (rowid);
|
||||
ALTER TABLE llx_asset_depreciation_options_economic ADD UNIQUE uk_asset_doe_fk_asset (fk_asset);
|
||||
ALTER TABLE llx_asset_depreciation_options_economic ADD UNIQUE uk_asset_doe_fk_asset_model (fk_asset_model);
|
||||
|
||||
ALTER TABLE llx_asset_depreciation_options_economic ADD CONSTRAINT fk_asset_doe_asset FOREIGN KEY (fk_asset) REFERENCES llx_asset (rowid);
|
||||
ALTER TABLE llx_asset_depreciation_options_economic ADD CONSTRAINT fk_asset_doe_asset_model FOREIGN KEY (fk_asset_model) REFERENCES llx_asset_model (rowid);
|
||||
ALTER TABLE llx_asset_depreciation_options_economic ADD CONSTRAINT fk_asset_doe_user_modif FOREIGN KEY (fk_user_modif) REFERENCES llx_user (rowid);
|
||||
@ -0,0 +1,35 @@
|
||||
-- ========================================================================
|
||||
-- Copyright (C) 2022 OpenDSI <support@open-dsi.fr>
|
||||
--
|
||||
-- This program is free software: you can redistribute it and/or modify
|
||||
-- it under the terms of the GNU General Public License as published by
|
||||
-- the Free Software Foundation, either version 3 of the License, or
|
||||
-- (at your option) any later version.
|
||||
--
|
||||
-- This program is distributed in the hope that it will be useful,
|
||||
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
-- GNU General Public License for more details.
|
||||
--
|
||||
-- You should have received a copy of the GNU General Public License
|
||||
-- along with this program. If not, see https://www.gnu.org/licenses/.
|
||||
-- ========================================================================
|
||||
|
||||
CREATE TABLE llx_asset_depreciation_options_economic(
|
||||
rowid integer AUTO_INCREMENT PRIMARY KEY NOT NULL,
|
||||
fk_asset integer,
|
||||
fk_asset_model integer,
|
||||
|
||||
depreciation_type smallint DEFAULT 0 NOT NULL, -- 0:linear, 1:degressive, 2:exceptional
|
||||
accelerated_depreciation_option integer(1), -- activate accelerated depreciation mode (fiscal)
|
||||
degressive_coefficient double(24,8),
|
||||
duration smallint NOT NULL,
|
||||
duration_type smallint DEFAULT 0 NOT NULL, -- 0:annual, 1:monthly, 2:daily
|
||||
|
||||
amount_base_depreciation_ht double(24,8),
|
||||
amount_base_deductible_ht double(24,8),
|
||||
total_amount_last_depreciation_ht double(24,8),
|
||||
|
||||
tms timestamp,
|
||||
fk_user_modif integer
|
||||
) ENGINE=innodb;
|
||||
@ -0,0 +1,24 @@
|
||||
-- ========================================================================
|
||||
-- Copyright (C) 2022 OpenDSI <support@open-dsi.fr>
|
||||
--
|
||||
-- This program is free software: you can redistribute it and/or modify
|
||||
-- it under the terms of the GNU General Public License as published by
|
||||
-- the Free Software Foundation, either version 3 of the License, or
|
||||
-- (at your option) any later version.
|
||||
--
|
||||
-- This program is distributed in the hope that it will be useful,
|
||||
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
-- GNU General Public License for more details.
|
||||
--
|
||||
-- You should have received a copy of the GNU General Public License
|
||||
-- along with this program. If not, see https://www.gnu.org/licenses/.
|
||||
-- ========================================================================
|
||||
|
||||
ALTER TABLE llx_asset_depreciation_options_fiscal ADD INDEX idx_asset_dof_rowid (rowid);
|
||||
ALTER TABLE llx_asset_depreciation_options_fiscal ADD UNIQUE uk_asset_dof_fk_asset (fk_asset);
|
||||
ALTER TABLE llx_asset_depreciation_options_fiscal ADD UNIQUE uk_asset_dof_fk_asset_model (fk_asset_model);
|
||||
|
||||
ALTER TABLE llx_asset_depreciation_options_fiscal ADD CONSTRAINT fk_asset_dof_asset FOREIGN KEY (fk_asset) REFERENCES llx_asset (rowid);
|
||||
ALTER TABLE llx_asset_depreciation_options_fiscal ADD CONSTRAINT fk_asset_dof_asset_model FOREIGN KEY (fk_asset_model) REFERENCES llx_asset_model (rowid);
|
||||
ALTER TABLE llx_asset_depreciation_options_fiscal ADD CONSTRAINT fk_asset_dof_user_modif FOREIGN KEY (fk_user_modif) REFERENCES llx_user (rowid);
|
||||
@ -0,0 +1,34 @@
|
||||
-- ========================================================================
|
||||
-- Copyright (C) 2022 OpenDSI <support@open-dsi.fr>
|
||||
--
|
||||
-- This program is free software: you can redistribute it and/or modify
|
||||
-- it under the terms of the GNU General Public License as published by
|
||||
-- the Free Software Foundation, either version 3 of the License, or
|
||||
-- (at your option) any later version.
|
||||
--
|
||||
-- This program is distributed in the hope that it will be useful,
|
||||
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
-- GNU General Public License for more details.
|
||||
--
|
||||
-- You should have received a copy of the GNU General Public License
|
||||
-- along with this program. If not, see https://www.gnu.org/licenses/.
|
||||
-- ========================================================================
|
||||
|
||||
CREATE TABLE llx_asset_depreciation_options_fiscal(
|
||||
rowid integer AUTO_INCREMENT PRIMARY KEY NOT NULL,
|
||||
fk_asset integer,
|
||||
fk_asset_model integer,
|
||||
|
||||
depreciation_type smallint DEFAULT 0 NOT NULL, -- 0:linear, 1:degressive, 2:exceptional
|
||||
degressive_coefficient double(24,8),
|
||||
duration smallint NOT NULL,
|
||||
duration_type smallint DEFAULT 0 NOT NULL, -- 0:annual, 1:monthly, 2:daily
|
||||
|
||||
amount_base_depreciation_ht double(24,8),
|
||||
amount_base_deductible_ht double(24,8),
|
||||
total_amount_last_depreciation_ht double(24,8),
|
||||
|
||||
tms timestamp,
|
||||
fk_user_modif integer
|
||||
) ENGINE=innodb;
|
||||
@ -16,5 +16,4 @@
|
||||
--
|
||||
-- ===================================================================
|
||||
|
||||
|
||||
ALTER TABLE llx_asset_extrafields ADD INDEX idx_asset_extrafields (fk_object);
|
||||
|
||||
@ -1,3 +1,4 @@
|
||||
-- ===================================================================
|
||||
-- Copyright (C) 2018 Alexandre Spangaro <aspangaro@open-dsi.fr>
|
||||
--
|
||||
-- This program is free software; you can redistribute it and/or modify
|
||||
@ -12,6 +13,7 @@
|
||||
--
|
||||
-- You should have received a copy of the GNU General Public License
|
||||
-- along with this program. If not, see https://www.gnu.org/licenses/.
|
||||
-- ===================================================================
|
||||
|
||||
create table llx_asset_extrafields
|
||||
(
|
||||
@ -20,4 +22,3 @@ create table llx_asset_extrafields
|
||||
fk_object integer NOT NULL,
|
||||
import_key varchar(14) -- import key
|
||||
) ENGINE=innodb;
|
||||
|
||||
|
||||
25
htdocs/install/mysql/tables/llx_asset_model-asset.key.sql
Normal file
25
htdocs/install/mysql/tables/llx_asset_model-asset.key.sql
Normal file
@ -0,0 +1,25 @@
|
||||
-- ========================================================================
|
||||
-- Copyright (C) 2022 OpenDSI <support@open-dsi.fr>
|
||||
--
|
||||
-- This program is free software; you can redistribute it and/or modify
|
||||
-- it under the terms of the GNU General Public License as published by
|
||||
-- the Free Software Foundation; either version 3 of the License, or
|
||||
-- (at your option) any later version.
|
||||
--
|
||||
-- This program is distributed in the hope that it will be useful,
|
||||
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
-- GNU General Public License for more details.
|
||||
--
|
||||
-- You should have received a copy of the GNU General Public License
|
||||
-- along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
-- ========================================================================
|
||||
|
||||
ALTER TABLE llx_asset_model ADD INDEX idx_asset_model_rowid (rowid);
|
||||
ALTER TABLE llx_asset_model ADD INDEX idx_asset_model_entity (entity);
|
||||
ALTER TABLE llx_asset_model ADD INDEX idx_asset_model_ref (ref);
|
||||
ALTER TABLE llx_asset_model ADD INDEX idx_asset_model_pays (fk_pays);
|
||||
ALTER TABLE llx_asset_model ADD UNIQUE INDEX uk_asset_model (entity, ref);
|
||||
|
||||
ALTER TABLE llx_asset_model ADD CONSTRAINT fk_asset_model_user_creat FOREIGN KEY (fk_user_creat) REFERENCES llx_user (rowid);
|
||||
ALTER TABLE llx_asset_model ADD CONSTRAINT fk_asset_model_user_modif FOREIGN KEY (fk_user_modif) REFERENCES llx_user (rowid);
|
||||
33
htdocs/install/mysql/tables/llx_asset_model-asset.sql
Normal file
33
htdocs/install/mysql/tables/llx_asset_model-asset.sql
Normal file
@ -0,0 +1,33 @@
|
||||
-- ========================================================================
|
||||
-- Copyright (C) 2022 OpenDSI <support@open-dsi.fr>
|
||||
--
|
||||
-- This program is free software; you can redistribute it and/or modify
|
||||
-- it under the terms of the GNU General Public License as published by
|
||||
-- the Free Software Foundation; either version 3 of the License, or
|
||||
-- (at your option) any later version.
|
||||
--
|
||||
-- This program is distributed in the hope that it will be useful,
|
||||
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
-- GNU General Public License for more details.
|
||||
--
|
||||
-- You should have received a copy of the GNU General Public License
|
||||
-- along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
-- ========================================================================
|
||||
|
||||
CREATE TABLE llx_asset_model(
|
||||
rowid integer AUTO_INCREMENT PRIMARY KEY NOT NULL,
|
||||
entity integer DEFAULT 1 NOT NULL, -- multi company id
|
||||
ref varchar(128) NOT NULL,
|
||||
label varchar(255) NOT NULL,
|
||||
asset_type smallint NOT NULL,
|
||||
fk_pays integer DEFAULT 0,
|
||||
note_public text,
|
||||
note_private text,
|
||||
date_creation datetime NOT NULL,
|
||||
tms timestamp,
|
||||
fk_user_creat integer NOT NULL,
|
||||
fk_user_modif integer,
|
||||
import_key varchar(14),
|
||||
status smallint NOT NULL
|
||||
) ENGINE=innodb;
|
||||
@ -1,4 +1,5 @@
|
||||
-- Copyright (C) 2018 Alexandre Spangaro <aspangaro@open-dsi.fr>
|
||||
-- ========================================================================
|
||||
-- Copyright (C) 2022 OpenDSI <support@open-dsi.fr>
|
||||
--
|
||||
-- This program is free software; you can redistribute it and/or modify
|
||||
-- it under the terms of the GNU General Public License as published by
|
||||
@ -12,5 +13,6 @@
|
||||
--
|
||||
-- You should have received a copy of the GNU General Public License
|
||||
-- along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
-- ========================================================================
|
||||
|
||||
ALTER TABLE llx_asset_type ADD UNIQUE INDEX uk_asset_type_label (label, entity);
|
||||
ALTER TABLE llx_asset_model_extrafields ADD INDEX idx_asset_model_extrafields (fk_object);
|
||||
@ -1,4 +1,5 @@
|
||||
-- Copyright (C) 2018 Alexandre Spangaro <aspangaro@open-dsi.fr>
|
||||
-- ========================================================================
|
||||
-- Copyright (C) 2022 OpenDSI <support@open-dsi.fr>
|
||||
--
|
||||
-- This program is free software; you can redistribute it and/or modify
|
||||
-- it under the terms of the GNU General Public License as published by
|
||||
@ -12,12 +13,12 @@
|
||||
--
|
||||
-- You should have received a copy of the GNU General Public License
|
||||
-- along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
-- ========================================================================
|
||||
|
||||
create table llx_asset_type_extrafields
|
||||
CREATE TABLE llx_asset_model_extrafields
|
||||
(
|
||||
rowid integer AUTO_INCREMENT PRIMARY KEY,
|
||||
tms timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
fk_object integer NOT NULL,
|
||||
import_key varchar(14) -- import key
|
||||
rowid integer AUTO_INCREMENT PRIMARY KEY,
|
||||
tms timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
fk_object integer NOT NULL,
|
||||
import_key varchar(14) -- import key
|
||||
) ENGINE=innodb;
|
||||
|
||||
@ -1,26 +0,0 @@
|
||||
-- Copyright (C) 2018 Alexandre Spangaro <aspangaro@open-dsi.fr>
|
||||
--
|
||||
-- This program is free software; you can redistribute it and/or modify
|
||||
-- it under the terms of the GNU General Public License as published by
|
||||
-- the Free Software Foundation; either version 3 of the License, or
|
||||
-- (at your option) any later version.
|
||||
--
|
||||
-- This program is distributed in the hope that it will be useful,
|
||||
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
-- GNU General Public License for more details.
|
||||
--
|
||||
-- You should have received a copy of the GNU General Public License
|
||||
-- along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
create table llx_asset_type
|
||||
(
|
||||
rowid integer AUTO_INCREMENT PRIMARY KEY,
|
||||
entity integer DEFAULT 1 NOT NULL, -- multi company id
|
||||
tms timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
label varchar(50) NOT NULL,
|
||||
accountancy_code_asset varchar(32),
|
||||
accountancy_code_depreciation_asset varchar(32),
|
||||
accountancy_code_depreciation_expense varchar(32),
|
||||
note text
|
||||
)ENGINE=innodb;
|
||||
@ -1,17 +0,0 @@
|
||||
-- Copyright (C) 2018 Alexandre Spangaro <aspangaro@open-dsi.fr>
|
||||
--
|
||||
-- This program is free software; you can redistribute it and/or modify
|
||||
-- it under the terms of the GNU General Public License as published by
|
||||
-- the Free Software Foundation; either version 3 of the License, or
|
||||
-- (at your option) any later version.
|
||||
--
|
||||
-- This program is distributed in the hope that it will be useful,
|
||||
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
-- GNU General Public License for more details.
|
||||
--
|
||||
-- You should have received a copy of the GNU General Public License
|
||||
-- along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
|
||||
ALTER TABLE llx_asset_type_extrafields ADD INDEX idx_asset_type_extrafields (fk_object);
|
||||
@ -0,0 +1,18 @@
|
||||
-- ========================================================================
|
||||
-- Copyright (C) 2022 OpenDSI <support@open-dsi.fr>
|
||||
--
|
||||
-- This program is free software: you can redistribute it and/or modify
|
||||
-- it under the terms of the GNU General Public License as published by
|
||||
-- the Free Software Foundation, either version 3 of the License, or
|
||||
-- (at your option) any later version.
|
||||
--
|
||||
-- This program is distributed in the hope that it will be useful,
|
||||
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
-- GNU General Public License for more details.
|
||||
--
|
||||
-- You should have received a copy of the GNU General Public License
|
||||
-- along with this program. If not, see https://www.gnu.org/licenses/.
|
||||
-- ========================================================================
|
||||
|
||||
ALTER TABLE llx_c_asset_disposal_type ADD UNIQUE INDEX uk_c_asset_disposal_type(code, entity);
|
||||
@ -0,0 +1,25 @@
|
||||
-- ========================================================================
|
||||
-- Copyright (C) 2022 OpenDSI <support@open-dsi.fr>
|
||||
--
|
||||
-- This program is free software: you can redistribute it and/or modify
|
||||
-- it under the terms of the GNU General Public License as published by
|
||||
-- the Free Software Foundation, either version 3 of the License, or
|
||||
-- (at your option) any later version.
|
||||
--
|
||||
-- This program is distributed in the hope that it will be useful,
|
||||
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
-- GNU General Public License for more details.
|
||||
--
|
||||
-- You should have received a copy of the GNU General Public License
|
||||
-- along with this program. If not, see https://www.gnu.org/licenses/.
|
||||
-- ========================================================================
|
||||
|
||||
CREATE TABLE llx_c_asset_disposal_type
|
||||
(
|
||||
rowid integer AUTO_INCREMENT PRIMARY KEY,
|
||||
entity integer NOT NULL DEFAULT 1,
|
||||
code varchar(16) NOT NULL,
|
||||
label varchar(50) NOT NULL,
|
||||
active integer DEFAULT 1 NOT NULL
|
||||
)ENGINE=innodb;
|
||||
Loading…
Reference in New Issue
Block a user