combo/combo/apps/lingo
Frédéric Péters 67144e0ad8 Revert "PaymentBackend: skip poll faster if there is no transaction (#66487)"
This reverts commit 0ebe6d8233.
2022-07-12 16:28:55 +02:00
..
management lingo: always log notification content on errors (#61401) 2022-02-18 08:41:09 +01:00
migrations data: add display condition to cells (#66263) 2022-06-24 09:00:47 +02:00
static/js tipi: update refdet's test valeur used for ROLMRE protocol (#66430) 2022-06-21 11:42:31 +02:00
templates/lingo lingo: clarify message on paid invoice (#57952) 2021-10-29 18:36:00 +02:00
README lingo: import README 2015-12-30 17:49:31 +01:00
__init__.py lingo: move eopayment options from backend to regie when scope change (#65141) 2022-05-13 16:15:19 +02:00
admin.py trivial: apply black 2021-02-15 18:02:39 +01:00
forms.py lingo: filter transaction list by regie (#56651) 2021-10-15 08:12:54 +02:00
manager_views.py lingo: use distinct when querying transactions through items (#59103) 2021-11-29 23:04:51 +01:00
models.py Revert "PaymentBackend: skip poll faster if there is no transaction (#66487)" 2022-07-12 16:28:55 +02:00
urls.py general: handle /manage/ access to users with page edit roles (#56188) 2021-09-10 11:19:23 +02:00
utils.py misc: apply pyupgrade (#55868) 2021-07-27 16:45:52 +02:00
views.py trivial: join splitted strings 2022-06-01 19:00:46 +02:00

README

Lingo
=====

Lingo is an extension module for the combo content management system, adding
basket and payment features.

License
-------

This program is free software: you can redistribute it and/or modify it under
the terms of the GNU Affero General Public License as published by the Free
Software Foundation, either version 3 of the License, or (at your option) any
later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
details.

You should have received a copy of the GNU Affero General Public License along
with this program.  If not, see <http://www.gnu.org/licenses/>.

API
---

Items amount can be added to basket through API by posting to
*/api/lingo/add-basket-item* endpoint a json payload containing *amount* and/or
*"extra": {"amount": ...}* attribute or passing *amount* in the query string

For example:

    {"display_name": "<item display name>",
     "url": "http://<item url>",
     "amount": "42.42",
     "extra": {"amount": "10.42", ...},
     ...
     }

or
    /api/lingo/add-basket-item?amount=10

The "amount" attribute should be float or decimal or a list of
floats/decimals. For example:

    {"amount": [14.12], "extra": {"amount": ["10.42", "5", "10"], ... }, ...}