[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Koha-cvs] CVS: koha/updater updatedatabase,1.113,1.114
From: |
Paul POULAIN |
Subject: |
[Koha-cvs] CVS: koha/updater updatedatabase,1.113,1.114 |
Date: |
Thu, 28 Jul 2005 08:10:15 -0700 |
Update of /cvsroot/koha/koha/updater
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9468/updater
Modified Files:
updatedatabase
Log Message:
Introducing new "Letters" system : Letters will be used everytime you want to
sent something to someone (through mail or paper). For example, sending a mail
for overdues use letter that you can put as parameters. Sending a mail to a
borrower when a suggestion is validated uses a letter too.
the letter table contains 3 fields :
* code => the code of the letter
* name => the complete name of the letter
* content => the complete text. It's a TEXT field type, so has no limits.
My next goal now is to work on point 2-I "serial issue alert"
With this feature, in serials, a user can subscribe the "issue alert". For
every issue arrived/missing, a mail is sent to all subscribers of this list.
The mail warns the user that the issue is arrive or missing. Will be in head.
(see mail on koha-devel, 2005/04/07)
The "serial issue alert" will be the 1st to use this letter system that
probably needs some tweaking ;-)
Once it will be stabilised default letters (in any languages) could be added
during installer to help the library begin with this new feature.
Index: updatedatabase
===================================================================
RCS file: /cvsroot/koha/koha/updater/updatedatabase,v
retrieving revision 1.113
retrieving revision 1.114
diff -C2 -r1.113 -r1.114
*** updatedatabase 28 Jul 2005 08:38:41 -0000 1.113
--- updatedatabase 28 Jul 2005 15:10:13 -0000 1.114
***************
*** 73,76 ****
--- 73,82 ----
PRIMARY KEY ( `timestamp` , `user` )
)",
+ letter => "(
+ code varchar(20) NOT NULL,
+ name varchar(100) NOT NULL,
+ content TEXT,
+ PRIMARY KEY (code)
+ )",
);
***************
*** 351,354 ****
--- 357,375 ----
# $Log$
+ # Revision 1.114 2005/07/28 15:10:13 tipaul
+ # Introducing new "Letters" system : Letters will be used everytime you want
to sent something to someone (through mail or paper). For example, sending a
mail for overdues use letter that you can put as parameters. Sending a mail to
a borrower when a suggestion is validated uses a letter too.
+ # the letter table contains 3 fields :
+ # * code => the code of the letter
+ # * name => the complete name of the letter
+ # * content => the complete text. It's a TEXT field type, so has no limits.
+ #
+ # My next goal now is to work on point 2-I "serial issue alert"
+ # With this feature, in serials, a user can subscribe the "issue alert". For
every issue arrived/missing, a mail is sent to all subscribers of this list.
The mail warns the user that the issue is arrive or missing. Will be in head.
+ # (see mail on koha-devel, 2005/04/07)
+ #
+ # The "serial issue alert" will be the 1st to use this letter system that
probably needs some tweaking ;-)
+ #
+ # Once it will be stabilised default letters (in any languages) could be
added during installer to help the library begin with this new feature.
+ #
# Revision 1.113 2005/07/28 08:38:41 tipaul
# For instance, the return date does not rely on the borrower expiration
date. A systempref will be added in Koha, to modify return date calculation
schema :
***************
*** 717,720 ****
--- 738,756 ----
# $Log$
+ # Revision 1.114 2005/07/28 15:10:13 tipaul
+ # Introducing new "Letters" system : Letters will be used everytime you want
to sent something to someone (through mail or paper). For example, sending a
mail for overdues use letter that you can put as parameters. Sending a mail to
a borrower when a suggestion is validated uses a letter too.
+ # the letter table contains 3 fields :
+ # * code => the code of the letter
+ # * name => the complete name of the letter
+ # * content => the complete text. It's a TEXT field type, so has no limits.
+ #
+ # My next goal now is to work on point 2-I "serial issue alert"
+ # With this feature, in serials, a user can subscribe the "issue alert". For
every issue arrived/missing, a mail is sent to all subscribers of this list.
The mail warns the user that the issue is arrive or missing. Will be in head.
+ # (see mail on koha-devel, 2005/04/07)
+ #
+ # The "serial issue alert" will be the 1st to use this letter system that
probably needs some tweaking ;-)
+ #
+ # Once it will be stabilised default letters (in any languages) could be
added during installer to help the library begin with this new feature.
+ #
# Revision 1.113 2005/07/28 08:38:41 tipaul
# For instance, the return date does not rely on the borrower expiration
date. A systempref will be added in Koha, to modify return date calculation
schema :
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Koha-cvs] CVS: koha/updater updatedatabase,1.113,1.114,
Paul POULAIN <=
- Prev by Date:
[Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/parameters letter.tmpl,NONE,1.1
- Next by Date:
[Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/includes menus.inc,NONE,1.1.2.1 about-top.inc,1.20,1.20.2.1 acquisitions-top.inc,1.24.2.2,1.24.2.3 auth-top.inc,1.7,1.7.2.1 bull-top.inc,1.5,1.5.2.1 cat-top.inc,1.35,1.35.2.1 circulation-top.inc,1.30,1.30.2.1 common-style.css,1.34.2.3,1.34.2.4 marc-editor.css,1.5,1.5.2.1 marc-top.inc,1.12.2.3,1.12.2.4 parameters-top.inc,1.31,1.31.2.1 reports-top.inc,1.25,1.25.2.1
- Previous by thread:
[Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/parameters letter.tmpl,NONE,1.1
- Next by thread:
[Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/includes menus.inc,NONE,1.1.2.1 about-top.inc,1.20,1.20.2.1 acquisitions-top.inc,1.24.2.2,1.24.2.3 auth-top.inc,1.7,1.7.2.1 bull-top.inc,1.5,1.5.2.1 cat-top.inc,1.35,1.35.2.1 circulation-top.inc,1.30,1.30.2.1 common-style.css,1.34.2.3,1.34.2.4 marc-editor.css,1.5,1.5.2.1 marc-top.inc,1.12.2.3,1.12.2.4 parameters-top.inc,1.31,1.31.2.1 reports-top.inc,1.25,1.25.2.1
- Index(es):