This commit is contained in:
Cayo Puigdefabregas 2023-04-18 18:15:44 +02:00
parent 6692233a22
commit 0ce12bbfba
2 changed files with 18 additions and 0 deletions

View File

@ -1293,6 +1293,8 @@ class TradeDocumentForm(FlaskForm):
).one()
kwargs['obj'] = self._obj
if self._obj:
self.file_name.args = ()
super().__init__(*args, **kwargs)
if self._obj:
@ -1313,6 +1315,10 @@ class TradeDocumentForm(FlaskForm):
def save(self, commit=True):
file_name = ''
file_hash = ''
if self._obj:
file_name = self._obj.file_name
file_hash = self._obj.file_hash
if self.file_name.data:
file_name = self.file_name.data.filename
file_hash = insert_hash(self.file_name.data.read(), commit=False)
@ -1393,6 +1399,8 @@ class DeviceDocumentForm(FlaskForm):
).one()
kwargs['obj'] = self._obj
if self._obj:
self.file_name.args = ()
super().__init__(*args, **kwargs)
if self._obj:
@ -1410,6 +1418,10 @@ class DeviceDocumentForm(FlaskForm):
def save(self, commit=True):
file_name = ''
file_hash = ''
if self._obj:
file_name = self._obj.file_name
file_hash = self._obj.file_hash
if self.file_name.data:
file_name = self.file_name.data.filename
file_hash = insert_hash(self.file_name.data.read(), commit=False)

View File

@ -529,6 +529,7 @@
<thead>
<tr>
<th scope="col">File</th>
<th scope="col">Description</th>
<th scope="col" data-type="date" data-format="YYYY-MM-DD hh:mm">Uploaded on</th>
<th></th>
</tr>
@ -543,6 +544,11 @@
{{ doc.file_name}}
{% endif %}
</td>
<td>
{% if doc.description %}
{{ doc.description|truncate(30, True) }}
{% endif %}
</td>
<td>
{{ doc.created.strftime('%Y-%m-%d %H:%M')}}
</td>