diff options
| -rw-r--r-- | CHANGES.md | 3 | ||||
| -rw-r--r-- | ishtar_common/forms_common.py | 3 | 
2 files changed, 5 insertions, 1 deletions
diff --git a/CHANGES.md b/CHANGES.md index 458fb087b..13f0f611e 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -6,10 +6,11 @@ v3.0.4 - 2020-XX-XX  ### Features ###  - Quick actions - sheets: add duplicate for site, operation, document and context record  - Quick actions - tables: -  - find: bulk update - appraisal date and treatment emergency fields    - person: bulk update - organization field +  - document: bulk update - creation date field    - operation: bulk update - operator field    - site: add bulk update form (towns field) +  - find: bulk update - appraisal date and treatment emergency fields  v3.0.3 - 2020-02-24  ------------------- diff --git a/ishtar_common/forms_common.py b/ishtar_common/forms_common.py index 2b3227f0a..5d97550ab 100644 --- a/ishtar_common/forms_common.py +++ b/ishtar_common/forms_common.py @@ -1474,6 +1474,7 @@ class QADocumentFormMulti(QAForm):      MULTI = True      REPLACE_FIELDS = [          'qa_source_type', +        'qa_creation_date',      ]      qa_source_type = forms.ChoiceField(          label=_(u"Source type"), required=False @@ -1481,6 +1482,8 @@ class QADocumentFormMulti(QAForm):      qa_authors = widgets.ModelJQueryAutocompleteField(          model=models.Author, label=_(u"Author"), new=True,          required=False) +    qa_creation_date = forms.DateField( +        label=_("Creation date"), widget=DatePicker, required=False)      TYPES = [          FieldType('qa_source_type', models.SourceType),  | 
