Bug #1177 It is not possible to change the quick code of a card due to a FK on jrnx (trigger fiche_detail_upd_trg)
7 lines
193 B
SQL
7 lines
193 B
SQL
DROP TRIGGER fiche_detail_upd_trg ON fiche_detail;
|
|
|
|
CREATE TRIGGER fiche_detail_upd_trg
|
|
after UPDATE
|
|
ON fiche_detail
|
|
FOR EACH ROW
|
|
EXECUTE PROCEDURE comptaproc.fiche_detail_qcode_upd();
|