Welcome | Get started | Dive | Contribute | Topics | Reference | Changes | More
excerpts
: Database excerpts¶
The lino_xl.lib.excerpts
plugin adds the notion of database excerpts.
We assume that you have read The excerpts plugin and printing : Basic printing functionality.
Side note: Code snippets (lines starting with >>>
) in this document get
tested as part of our development workflow. The following
initialization snippet tells you which demo project is being used in
this document.
>>> from lino import startup
>>> startup('lino_book.projects.min9.settings')
>>> from lino.api.shell import *
>>> from lino.api.doctest import *
Usage¶
add
lino_xl.lib.excerpts
to yourlino.core.Site.get_installed_plugins()
.Add the virtual field printed to your layout
Lino does not automatically add an action per model to make the excerpt history visible from a model. If you want this, add yourself your preferred variant.
This can be either using a ShowSlaveTable
button in the toolbar:
show_excerpts = dd.ShowSlaveTable('excerpts.ExcerptsByOwner')
show_excerpts = dd.ShowSlaveTable('excerpts.ExcerptsByProject')
Or by adding excerpts.ExcerptsByOwner
or
excerpts.ExcerptsByProject
(or both, or
your own subclass of one of them) to the detail_layout
.
Templates¶
In addition to the main template, excerpt types can specify a body template.
- body template¶
When the main template is being rendered, it has a context variable body
,
which is itself rendered from a template.
As a site manager (and when lino.modlib.davlink
is installed) you
can easily modify the main template that has been used to print a given excerpt
using the Edit Template
button in
the detail window of that Excerpt
object.
If you want to configure which document to use as main template, then you must use the Configuration menu:
- class lino_xl.lib.excerpts.Excerpt¶
A printable document that describes some aspect of the current situation.
- excerpt_type¶
The type of this excerpt (ForeignKey to
ExcerptType
).
- owner¶
The object being printed by this excerpt. See
Controllable.owner
.
- contact_person¶
The optional contact person of the
recipient
of this excerpt. SeeContactRelated.contact_person
.
- recipient¶
The recipient of this excerpt. See
ContactRelated.recipient
- language¶
The language used for printing this excerpt.
- date¶
- time¶
- class lino_xl.lib.excerpts.ExcerptDetail¶
- class lino_xl.lib.excerpts.AllExcerpts¶
- class lino_xl.lib.excerpts.MyExcerpts¶
- class lino_xl.lib.excerpts.ExcerptsByType¶
- class lino_xl.lib.excerpts.ExcerptsByProject¶
Only used if
lino.core.site.Site.project_model
is set.
Excerpt types¶
- class lino_xl.lib.excerpts.ExcerptType¶
The type of an excerpt. Every excerpt has a mandatory field
Excerpt.excerpt_type
which points to anExcerptType
instance.- name¶
The designation of this excerpt type. One field for every
language
.
- content_type¶
The database model for which this excerpt type is to be used.
- build_method¶
See
lino.modlib.printing.mixins.PrintableType.build_method
.
- template¶
The main template to be used when printing an excerpt of this type.
- body_template¶
The body template to use when printing an excerpt of this type.
- email_template¶
The template to use when sending this an excerpt of this type by email.
- class lino_xl.lib.excerpts.ExcerptTypes¶
Displays all rows of
ExcerptType
.
Model mixins¶
- class lino_xl.lib.excerpts.Certifiable¶
Any model that inherits from this mixin becomes “certifiable”.
That is:
it has a
printed_by
field and a corresponding virtual fieldprinted
which point to the excerpt that is the “definitive” (“Certifying”) printout of this object.It may define a list of “certifiable” fields by providing a
get_certifiable_fields()
method.
Usage example:
from lino_xl.lib.excerpts.mixins import Certifiable class MyModel(dd.UserAuthored, Certifiable, dd.Duplicable): ...
The
lino_xl.lib.excerpts.fixtures.std
fixture automatically creates a certifyingExcerptType
instance for every model which inherits fromCertifiable
.- printed¶
Displays information about when this database row has been printed.
Clicking on it will display the database excerpt that certifies this database row.
- printed_by¶
Pointer to the database excerpt that certifies this database row.
A
Certifiable
is considered “certified” when this field is not None.Note that this field is a nullable ForeignKey with on_delete set to
SET_NULL
.
- on_duplicate(self, ar, master)¶
After duplicating e.g. a budget that had been printed, we don’t want the duplicate point to the same excerpt.
Extends
lino.mixins.duplicable.Duplicable.on_duplicate()
.
- get_certifiable_fields(cls)¶
A class method. Expected to return a string with a space-separated list of field names. These files will automaticaly become disabled (readonly) when the document is “certified”. The default implementation returns an empty string, which means that no field will become disabled when the row is “certified”.
For example:
@classmethod def get_certifiable_fields(cls): return 'date user title'
- def get_excerpt_title(self)
A string to be used in templates as the title of the certifying document.
- get_excerpt_templates(self, bm)¶
Return either None or a list of template names to be used when printing an excerpt controlled by this object.
- class lino_xl.lib.excerpts.ExcerptTitle¶
Mixin for models like
lino_welfare.modlib.aids.AidType
andlino_xl.lib.courses.Line
.- name¶
The designation of this row as seen by the user e.g. when selecting an instance of this model.
One field for every
language
.
Shortcuts¶
- excerpt shortcut field¶
A virtual display field with actions for quickly managing, for a given database object, its excerpt of a given type.
- class lino_xl.lib.excerpts.Shortcut¶
- class lino_xl.lib.excerpts.Shortcuts¶
A choicelists of excerpt shortcut fields.
These virtual fields are being installed during pre_analyze by
set_excerpts_actions()
.
Templates¶
- excerpts/Default.odt¶
This template is the default value, used by many excerpt types in
their template
field. It is designed
to be locally overridden by local site managers in order to
match their letter paper.
Fields¶
- class lino_xl.lib.excerpts.BodyTemplateContentField¶
Actions¶
- class lino_xl.lib.excerpts.CreateExcerpt¶
Create an excerpt in order to print this data record.
- class lino_xl.lib.excerpts.ClearPrinted¶
Clear any previously generated printable document. Mark this object as not printed. A subsequent call to print will generate a new cache file.
Signal handlers¶
- lino_xl.lib.excerpts.set_excerpts_actions()¶
A receiver for the
lino.core.signals.pre_analyze
signal.Installs (1) print management actions on models for which there is an excerpt type and (2) the excerpt shortcut fields defined in
lino_xl.lib.excerpts.choicelists.Shortcuts
.Note that excerpt types for a model with has MTI children, the action will be installed on children as well. For example a
lino_avanti.lib.avanti.Client
inlino_book.projects.adg
can get printed either as aTermsConditions.odt
or as afinal report.body.html
.When the database does not yet exist (e.g. during
pm prep
), it simply ignores that situation silently and does not define the print actions.
- lino_xl.lib.excerpts.post_init_excerpt()¶
This is called for every new Excerpt object and it sets certain default values.
For the default language, note that the
owner
overrides therecipient
. This rule is important e.g. for printing aid confirmations in Lino Welfare.