diff --git a/pos_order_load/README.rst b/pos_order_load/README.rst index 54d8bace..4d46e76e 100644 --- a/pos_order_load/README.rst +++ b/pos_order_load/README.rst @@ -1,10 +1,14 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :alt: License: AGPL-3 + POS Order Load and Save ======================= -This module allows to load existing POS order. -In this version, when the loaded order -is validated in the POS, a new one is created. - +This module allows to: +* save a PoS order from PoS front UI to PoS back UI (server); +* recover (load) a draft PoS Order from PoS back UI to PoS front UI; +In this version, when the order is loaded again, the draft order is unlinked +in the server (in database); Bug Tracker =========== diff --git a/pos_order_load/static/src/js/pos_order_load.js b/pos_order_load/static/src/js/pos_order_load.js index 0a0fe604..c42d00be 100644 --- a/pos_order_load/static/src/js/pos_order_load.js +++ b/pos_order_load/static/src/js/pos_order_load.js @@ -58,7 +58,7 @@ openerp.pos_order_load = function(instance, local) { /************************************************************************* New Widget SaveButtonWidget: - * On click, backup the current draft order; + * On click, save the current draft order; */ module.SaveButtonWidget = module.PosBaseWidget.extend({ template: 'SaveButtonWidget',