Skip to content

Commit

Permalink
Merge pull request #1007 from adfinis/main
Browse files Browse the repository at this point in the history
Next staging
  • Loading branch information
open-dynaMIX authored Feb 8, 2024
2 parents 0d9dde0 + f46a44d commit 7d7582f
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,15 +85,15 @@ docker compose up -d
# Wait for the database migrations to complete for the API and Caluma.
make caluma-loadconfig
# upload the templates to DMS
docker compose run --rm api python manage.py upload_template -t mysagw/identity/templates/identity-labels.docx
docker compose run --rm api python manage.py upload_template -t mysagw/accounting/templates/accounting-cover.docx
docker compose run --rm api python manage.py upload_template -t mysagw/case/templates/acknowledgement-de.docx
docker compose run --rm api python manage.py upload_template -t mysagw/case/templates/acknowledgement-fr.docx
docker compose run --rm api python manage.py upload_template -t mysagw/case/templates/acknowledgement-en.docx
docker compose run --rm api python manage.py upload_template -t mysagw/case/templates/credit-approval-de.docx
docker compose run --rm api python manage.py upload_template -t mysagw/case/templates/credit-approval-fr.docx
docker compose run --rm api python manage.py upload_template -t mysagw/case/templates/credit-approval-en.docx
docker compose run --rm api python manage.py upload_template -t mysagw/case/templates/application.docx
docker compose run --rm api poetry run ./manage.py upload_template -t mysagw/identity/templates/identity-labels.docx
docker compose run --rm api poetry run ./manage.py upload_template -t mysagw/accounting/templates/accounting-cover.docx
docker compose run --rm api poetry run ./manage.py upload_template -t mysagw/case/templates/acknowledgement-de.docx
docker compose run --rm api poetry run ./manage.py upload_template -t mysagw/case/templates/acknowledgement-fr.docx
docker compose run --rm api poetry run ./manage.py upload_template -t mysagw/case/templates/acknowledgement-en.docx
docker compose run --rm api poetry run ./manage.py upload_template -t mysagw/case/templates/credit-approval-de.docx
docker compose run --rm api poetry run ./manage.py upload_template -t mysagw/case/templates/credit-approval-fr.docx
docker compose run --rm api poetry run ./manage.py upload_template -t mysagw/case/templates/credit-approval-en.docx
docker compose run --rm api poetry run ./manage.py upload_template -t mysagw/case/templates/application.docx
```

## Contributing
Expand Down
Binary file modified api/mysagw/case/templates/application.docx
Binary file not shown.
2 changes: 1 addition & 1 deletion caluma/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/projectcaluma/caluma:9.3.2
FROM ghcr.io/projectcaluma/caluma:10.1.0

ENV PATH="${HOME}/.local/bin:${PATH}"

Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ services:
- db

caluma:
image: ghcr.io/projectcaluma/caluma:9.3.2
image: ghcr.io/projectcaluma/caluma:10.1.0
build:
context: caluma
environment:
Expand Down
2 changes: 1 addition & 1 deletion ember/app/services/case-data.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default class CaseDataService extends Service {
const caseEdges = yield this.apollo.query(
{
query: getCaseQuery,
variables: { filter: [{ id: caseId }] },
variables: { filter: [{ ids: [caseId] }] },
fetchPolicy: "network-only",
},
"allCases.edges"
Expand Down
2 changes: 1 addition & 1 deletion ember/app/ui/cases/detail/index/controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ export default class CasesDetailIndexController extends Controller {
const caseEdges = yield this.apollo.query(
{
query: getCaseQuery,
variables: { filter: [{ id: this.model.id }] },
variables: { filter: [{ ids: [this.model.id] }] },
},
"allCases.edges"
);
Expand Down

0 comments on commit 7d7582f

Please sign in to comment.