-
Notifications
You must be signed in to change notification settings - Fork 25
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
primeng: acquisitions #3816
base: next-version
Are you sure you want to change the base?
primeng: acquisitions #3816
Conversation
aef3f77
to
cb518ed
Compare
ebb016f
to
73d6672
Compare
73d6672
to
43a0290
Compare
43a0290
to
70c258e
Compare
70c258e
to
f514f54
Compare
abad94a
to
57df4d8
Compare
57df4d8
to
a8da8b7
Compare
224b749
to
e2c0823
Compare
d4fccb9
to
279ad14
Compare
1727003
to
87e4bc0
Compare
* Fixes poetry shell plugins. * Removes is_canceled, send_now, exange_rate, receipt_date useless acquistions fields. * Moves order_date from order lines to orders. * Removes order type as it is useless. * Uses primeng css class in the JSONSchemas. * Adds the number of children in the acquisition acounts serializer. * Adjusts acquistion permissions. * Removes toggle-switch type in JSONSchemas. * Fixes the multi-select type in JSONSchemas. * Fixes invalid user name regular expression. * Uniformizes placeholders. Co-Authored-by: Johnny Mariéthoz <Johnny.Mariethoz@rero.ch> Co-Authored-by: Pascal Repond <pascal.repond@rero.ch>
87e4bc0
to
71cda4e
Compare
|
||
@classmethod | ||
def get_status_by_pid(cls, pid): | ||
""".""" |
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.
Missing doc
def extended_validation(self, **kwargs): | ||
"""Add additional record validation. | ||
|
||
:return: False if |
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.
if ?
def extended_validation(self, **kwargs): | ||
"""Add additional record validation. | ||
|
||
:return: False if |
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.
if ?
# info_msg "Install poetry shell" | ||
# poetry self add poetry-plugin-shell |
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.
uncomment ?
@@ -20,7 +20,7 @@ FROM python:3.9-slim-bullseye | |||
# require debian packages | |||
RUN apt-get update -y && apt-get upgrade -y | |||
RUN apt-get install --no-install-recommends -y git vim-tiny curl gcc gnupg libc6-dev procps imagemagick && rm -rf /var/lib/apt/lists/* | |||
RUN pip install --upgrade setuptools wheel pip poetry | |||
RUN pip install --upgrade setuptools wheel pip poetry && poetry self add poetry-plugin-shell |
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 second line:
RUN poetry self add poetry-plugin-shell
Co-Authored-by: Johnny Mariéthoz Johnny.Mariethoz@rero.ch
Co-Authored-by: Pascal Repond pascal.repond@rero.ch