Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion pos_multi_session/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"category": "Point Of Sale",
# "live_test_url": 'http://apps.it-projects.info/shop/product/pos-multi-session?version=11.0',
"images": ["images/pos-multi-session.png"],
"version": "11.0.4.2.10",
"version": "11.0.4.2.11",
"application": False,

"author": "IT-Projects LLC, Ivan Yelizariev",
Expand Down
5 changes: 5 additions & 0 deletions pos_multi_session/doc/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
`4.2.11`
--------

- **Fix:** Access error for poses created for different companies

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

😍

`4.2.10`
--------

Expand Down
23 changes: 23 additions & 0 deletions pos_multi_session/views/pos_multi_session_views.xml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,29 @@
</div>
</div>
</xpath>
<xpath expr="//field[@name='journal_id']/../../../../.." position="after">
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Попроще точно ничего нельзя сделать?)

<h2 attrs="{'invisible': [('is_installed_account_accountant', '=', True)]}">Accounting</h2>
<div class="row mt16 o_settings_container" attrs="{'invisible': [('is_installed_account_accountant', '=', True)]}">
<div class="col-xs-12 col-md-6 o_setting_box">
<div class="o_setting_right_pane">
<label string="Journal Entries"/>
<div class="text-muted">
Configuration for journal entries of PoS orders
</div>
<div class="content-group">
<div class="row mt16" title="Whenever you close a session, one entry is generated in the following accounting journal for all the orders not invoiced. Invoices are recorded in accounting separately.">
<label string="Sales Journal" for="journal_id" class="col-md-3 o_light_label" widget="selection"/>
<field name="journal_id"/>
</div>
<div class="row" groups="account.group_account_user" title="Get one journal item per product rather than one journal item per receipt line. This works for any anonymous order. If the customer is set on the order, one journal item is created for each receipt line. This option is recommended for an easy review of your journal entries when managing lots of orders.">
<label string="Group Journal Items" for="group_by" class="col-md-3 o_light_label"/>
<field name="group_by"/>
</div>
</div>
</div>
</div>
</div>
</xpath>
</field>
</record>

Expand Down