Task #0002376: Numéro de pièce, remplissage avec des 0 code : renommage de set_pj par update_receipt

This commit is contained in:
sparkyx 2024-09-03 17:59:50 +02:00
parent 1d3b37db58
commit 28ee90c45d
13 changed files with 109 additions and 21 deletions

View file

@ -0,0 +1,7 @@
begin;
alter table jrn_def add column jrn_def_pj_padding int;
update jrn_def set jrn_def_pj_padding=0;
alter table jrn_def alter jrn_def_pj_padding set default 0;
insert into version (val,v_description) values (201,'receipt with padding ');
commit;