Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -400,9 +400,10 @@ thanks to the incoming moves with a remaining quantity, go to :menuselection:`Ac
To generate a new accounting entry to review and post, click :guilabel:`Generate Entry`.

To view a list of sales and purchase orders for which accrual entries should be encoded, go to
:menuselection:`Accounting --> Review` and select the relevant menu item (:guilabel:`Invoices not
received`, :guilabel:`Invoices to be issued`, :guilabel:`Prepaid expenses`, or :guilabel:`Deferred
Revenues`).
:menuselection:`Accounting --> Review` and select the relevant menu item (:guilabel:`Bill To
Receive`, :guilabel:`Invoices To Be Issued`, :guilabel:`Billed Not Received` and :guilabel:`Invoiced
Not Delivered`). Select the desired lines and click :guilabel:`Create Accrual
Entries`.

With Anglo-Saxon perpetual accounting, this will also help to distribute recorded inventory
variations to accounts such as Bills to Receive/:abbr:`GRNI (goods received not invoiced)` or
Expand All @@ -413,6 +414,13 @@ and :ref:`Journal Entries Configuration <journal-entries>` sections.

.. image:: cheat_sheet/valuation-accounting.png

.. rst-class:: full-width

.. image:: cheat_sheet/accrual.png
.. image:: cheat_sheet/accrual1.png
.. image:: cheat_sheet/accrual2.png
.. image:: cheat_sheet/accrual3.png


.. _changes-in-19:

Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
112 changes: 56 additions & 56 deletions static/js/valuation-data.js

Large diffs are not rendered by default.

8 changes: 1 addition & 7 deletions static/js/valuation-journal.js
Original file line number Diff line number Diff line change
Expand Up @@ -158,16 +158,10 @@
if (!this.props.items || this.props.items.isEmpty()) {
return React.DOM.div();
}
const items = this.props.items;
const idx = items.indexOf(null);
if (idx !== -1) {
// console.log(items.slice(idx + 1).deref());
items = items.take(idx);
}
return React.DOM.div(
{ className: 'entries-listing' },
React.DOM.h4(null, this.props.heading, ':'),
items.map(function (item, index) {
this.props.items.map(function (item, index) {
return React.DOM.p({ key: index }, item);
})
);
Expand Down