I had to add the quote_number_format to company, similar to how we do with invoices.
8 lines
128 B
PL/PgSQL
8 lines
128 B
PL/PgSQL
-- Revert numerus:next_quote_number from pg
|
|
|
|
begin;
|
|
|
|
drop function if exists numerus.next_quote_number(integer, date);
|
|
|
|
commit;
|