Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix column is_also_delivery_note belongs to llx_facture table #31779

Merged
merged 2 commits into from
Nov 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions htdocs/install/mysql/tables/llx_expedition.sql
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,6 @@ create table llx_expedition
fk_incoterms integer, -- for incoterms
location_incoterms varchar(255), -- for incoterms

is_also_delivery_note tinyint DEFAULT 0 NOT NULL, -- 0=default, 1=can act also as a delivery note (for countries that accept invoices as delivery notes)

import_key varchar(14), -- import id when line is imported
extraparams varchar(255) -- for other parameters with json format
)ENGINE=innodb;
2 changes: 1 addition & 1 deletion htdocs/install/mysql/tables/llx_facture.sql
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ create table llx_facture

import_key varchar(14),
extraparams varchar(255), -- for other parameters with json format

is_also_delivery_note tinyint DEFAULT 0 NOT NULL, -- 0=default, 1=can act also as a delivery note (for countries that accept invoices as delivery notes)
fk_multicurrency integer,
multicurrency_code varchar(3),
multicurrency_tx double(24,8) DEFAULT 1,
Expand Down
Loading