-
Notifications
You must be signed in to change notification settings - Fork 10
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
feat: add byte order mark to talpa export for better excel support #2455
Conversation
API branch is deployed to platta: https://helsinkilisa-pr2455.api.dev.hel.ninja/healthz πππ |
APPLICANT branch is deployed to platta: https://helsinkilisa-ui-pr2455.dev.hel.ninja πππ |
TestCafe result is success for https://helsinkilisa-ui-pr2455.dev.hel.ninja ππππ |
HANDLER branch is deployed to platta: https://helsinkilisa-ui-handler-pr2455.dev.hel.ninja πππ |
TestCafe result is success for https://helsinkilisa-ui-handler-pr2455.dev.hel.ninja ππππ |
269bcfb
to
36e3f4f
Compare
API branch is deployed to platta: https://helsinkilisa-pr2455.api.dev.hel.ninja/healthz πππ |
APPLICANT branch is deployed to platta: https://helsinkilisa-ui-pr2455.dev.hel.ninja πππ |
TestCafe result is success for https://helsinkilisa-ui-pr2455.dev.hel.ninja ππππ |
HANDLER branch is deployed to platta: https://helsinkilisa-ui-handler-pr2455.dev.hel.ninja πππ |
TestCafe result is success for https://helsinkilisa-ui-handler-pr2455.dev.hel.ninja ππππ |
36e3f4f
to
b909783
Compare
[yjdh] Kudos, SonarCloud Quality Gate passed!Β Β 0 Bugs No Coverage information |
[yjdh] Kudos, SonarCloud Quality Gate passed!Β Β 0 Bugs No Coverage information |
[yjdh] Kudos, SonarCloud Quality Gate passed!Β Β 0 Bugs No Coverage information |
[yjdh] Kudos, SonarCloud Quality Gate passed!Β Β |
API branch is deployed to platta: https://helsinkilisa-pr2455.api.dev.hel.ninja/healthz πππ |
APPLICANT branch is deployed to platta: https://helsinkilisa-ui-pr2455.dev.hel.ninja πππ |
TestCafe result is success for https://helsinkilisa-ui-pr2455.dev.hel.ninja ππππ |
HANDLER branch is deployed to platta: https://helsinkilisa-ui-handler-pr2455.dev.hel.ninja πππ |
TestCafe result is success for https://helsinkilisa-ui-handler-pr2455.dev.hel.ninja ππππ |
@@ -190,7 +190,7 @@ def talpa_export_batch(self, request, *args, **kwargs) -> StreamingHttpResponse: | |||
) | |||
|
|||
response = StreamingHttpResponse( | |||
csv_service.get_csv_string_lines_generator(True), | |||
csv_service.get_csv_string_lines_generator(True, True), |
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.
I usually call functions with named arguments, at least with more than one argument. It makes the code clearer but also bulkier, so I guess it's a matter of preference.
Description β¨
Talpa csv export works better in Windows excel, when a byte order mark (BOM) is appended to the beginning of the file.
Issues π
Testing βοΈ
Screenshots πΈ
Additional notes ποΈ