Add some more "handler" docs

app handler, batch handlers, native batch types, people handler
This commit is contained in:
Lance Edgar 2021-08-18 12:49:40 -05:00
parent 0726a70192
commit 84477e5e36
30 changed files with 397 additions and 29 deletions

View file

@ -0,0 +1,18 @@
Vendor Catalog Batch
====================
**Batch Type Key:** ``vendor_catalog``
**Purpose:** Allows updating product costs from new catalog data
**Default Handler:** :class:`~rattail:rattail.batch.vendorcatalog.VendorCatalogHandler`
Data for this type of batch usually comes from a spreadsheet or
similar file, as obtained directly from the vendor. You can also
define a "common" format to use, in which case you would convert each
vendor file to that format. (That is to cut down on the number of
file parsers needed.)
In any case executing this batch will just update Rattail by default;
you may want a custom handler to update your POS system instead.