Skip to content

Commit f616e64

Browse files
committed
Merge commit '3efe2c8d769e0ca69a82dd128658cccb27977736' of github.com:senaite/senaite.ast into fix-smaller-decimals
2 parents 56b8f89 + 3efe2c8 commit f616e64

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

docs/changelog.rst

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ Changelog
44
1.2.0 (unreleased)
55
------------------
66

7+
- #39 Compatibility with core#2584 (SampleType to DX)
8+
- #38 Compatibility with core#2595 (Move ARAnalysesField logic to data manager)
79
- #37 Compatibility with core#2567 (AnalysisCategory to DX)
810
- #37 Compatibility with core#2471 (Department to DX)
911
- #36 Fix user can edit ast built-in services after upgrades

src/senaite/ast/datamanagers.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
from senaite.ast.utils import get_ast_siblings
2828
from senaite.ast.utils import is_ast_analysis
2929
from senaite.ast.utils import is_interim_editable
30-
from senaite.core.datamanagers.analysis import RoutineAnalysisDataManager
30+
from senaite.core.datamanagers import RoutineAnalysisDataManager
3131
from zope.component import adapter
3232

3333

src/senaite/ast/tests/doctests/AST.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ We need to create some basic objects for the test:
4242
>>> setRoles(portal, TEST_USER_ID, ['LabManager',])
4343
>>> client = api.create(portal.clients, "Client", Name="Happy Hills", ClientID="HH", MemberDiscountApplies=True)
4444
>>> contact = api.create(client, "Contact", Firstname="Rita", Lastname="Mohale")
45-
>>> sampletype = api.create(setup.bika_sampletypes, "SampleType", title="Blood", Prefix="B")
45+
>>> sampletype = api.create(portal.setup.sampletypes, "SampleType", title="Blood", Prefix="B")
4646
>>> labcontact = api.create(setup.bika_labcontacts, "LabContact", Firstname="Lab", Lastname="Manager")
4747
>>> department = api.create(portal.setup.departments, "Department", title="Microbiology", Manager=labcontact)
4848
>>> category = api.create(portal.setup.analysiscategories, "AnalysisCategory", title="Microbiology", Department=department)

0 commit comments

Comments
 (0)