llx_c_stcommcontact.sql 1.4 KB

1234567891011121314151617181920212223242526272829303132
  1. -- Copyright (C) 2020 Open-Dsi <support@open-dsi.fr>
  2. --
  3. -- This program is free software; you can redistribute it and/or modify
  4. -- it under the terms of the GNU General Public License as published by
  5. -- the Free Software Foundation; either version 3 of the License, or
  6. -- (at your option) any later version.
  7. --
  8. -- This program is distributed in the hope that it will be useful,
  9. -- but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. -- GNU General Public License for more details.
  12. --
  13. -- You should have received a copy of the GNU General Public License
  14. -- along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. --
  16. --
  17. --
  18. -- Ne pas placer de commentaire en fin de ligne, ce fichier est parsé lors
  19. -- de l'install et tous les sigles '--' sont supprimés.
  20. --
  21. --
  22. -- Types action st for contacts
  23. --
  24. delete from llx_c_stcommcontact;
  25. insert into llx_c_stcommcontact (id,code,libelle) values (-1, 'ST_NO', 'Do not contact');
  26. insert into llx_c_stcommcontact (id,code,libelle) values ( 0, 'ST_NEVER', 'Never contacted');
  27. insert into llx_c_stcommcontact (id,code,libelle) values ( 1, 'ST_TODO', 'To contact');
  28. insert into llx_c_stcommcontact (id,code,libelle) values ( 2, 'ST_PEND', 'Contact in progress');
  29. insert into llx_c_stcommcontact (id,code,libelle) values ( 3, 'ST_DONE', 'Contacted');