Skip to content

Commit

Permalink
teste
Browse files Browse the repository at this point in the history
  • Loading branch information
dhongu committed Jan 3, 2024
1 parent 932e2ee commit d36fd09
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 4 additions & 0 deletions deltatech_select_journal/tests/test_sale.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ class TestSale(TransactionCase):
def setUp(self):
super().setUp()
self.partner_a = self.env["res.partner"].create({"name": "Test"})
currency_eur = self.env.ref("base.EUR")
currency_eur.write({"active": True})
currency_usd = self.env.ref("base.USD")
currency_usd.write({"active": True})

seller_ids = [(0, 0, {"name": self.partner_a.id})]
self.product_a = self.env["product.product"].create(
Expand Down
2 changes: 1 addition & 1 deletion deltatech_stock_valuation/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Product Valuation
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:8eab2c74d7882455da233440e00230d9cb2b775f7dad006976ef0347213375a0
!! source digest: sha256:33959730018c9387a7ec885775c0defca536f43dedde3733f43288f3066e2ffc
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Alpha-red.png
Expand Down
2 changes: 1 addition & 1 deletion deltatech_stock_valuation/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"author": "Terrabit, Dorin Hongu",
"website": "https://www.terrabit.ro",
"category": "Inventory/Inventory",
"depends": ["stock_account", "l10n_ro"],
"depends": ["stock_account"],
"license": "OPL-1",
"data": [
"security/ir.model.access.csv",
Expand Down
2 changes: 1 addition & 1 deletion deltatech_stock_valuation/static/description/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ <h1 class="title">Product Valuation</h1>
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:8eab2c74d7882455da233440e00230d9cb2b775f7dad006976ef0347213375a0
!! source digest: sha256:33959730018c9387a7ec885775c0defca536f43dedde3733f43288f3066e2ffc
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Alpha" src="https://img.shields.io/badge/maturity-Alpha-red.png" /></a> <a class="reference external image-reference" href="https://www.odoo.com/documentation/master/legal/licenses.html"><img alt="License: OPL-1" src="https://img.shields.io/badge/licence-OPL--1-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/dhongu/deltatech/tree/15.0/deltatech_stock_valuation"><img alt="dhongu/deltatech" src="https://img.shields.io/badge/github-dhongu%2Fdeltatech-lightgray.png?logo=github" /></a></p>
<p>Features:</p>
Expand Down
4 changes: 0 additions & 4 deletions deltatech_stock_valuation/tests/test_stock_valuation.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,8 @@
class TestStockValuation(AccountTestInvoicingCommon):
@classmethod
def setUpClass(cls, chart_template_ref=None):
if not chart_template_ref:
chart_template_ref = "l10n_ro.ro_chart_template"
super().setUpClass(chart_template_ref=chart_template_ref)

cls.company = cls.env.company

cls.account = cls.env["account.account"].create(
{
"name": "Account A",
Expand Down

0 comments on commit d36fd09

Please sign in to comment.