-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Select process variables from defined components #1115
Select process variables from defined components #1115
Conversation
Codecov Report
@@ Coverage Diff @@
## master #1115 +/- ##
==========================================
+ Coverage 89.03% 89.07% +0.04%
==========================================
Files 422 424 +2
Lines 11761 11815 +54
Branches 1084 1098 +14
==========================================
+ Hits 10471 10524 +53
Misses 1066 1066
- Partials 224 225 +1
Continue to review full report at Codecov.
|
ec6ded8
to
160ccc3
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good! Just some small comments/questions
src/openforms/js/components/admin/form_design/registrations/camunda/FormFields.js
Outdated
Show resolved
Hide resolved
src/openforms/js/components/admin/form_design/registrations/camunda/FormFields.js
Show resolved
Hide resolved
8da0088
to
4a39955
Compare
@joeribekker backend is ready for review |
This is the simple variant.
Split up in more re-usable components to keep consistent styling in other places.
By now half of the tabs need access to all the defined components, so it makes more sense to provide that as context to the entire tab list.
4a39955
to
67df43a
Compare
|
||
class CamundaApp(AppConfig): | ||
name = "openforms.registrations.contrib.camunda" | ||
label = "registrations_camunda" | ||
verbose_name = _("Camunda registration plugin") | ||
|
||
def ready(self): | ||
patch_django_camunda() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why not update django_camunda? This doesn't seem OF specific?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
as discussed during standup - mapping a Python Decimal
with fixed precision to a Java Double (with floating point precision errors) is probably not guaranteed to be correct, but a best effort we can do.
At some point we'll probably include it in django-camunda with a disclaimer or a setting to enable/override it.
Relates to #326
First phase - simple process variable mapping.
Changes