2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-07-02 03:30:54 +00:00

Changed tracking into to datetime field

- Added moment.js for formatting dates
-
This commit is contained in:
Oliver
2018-05-10 21:13:36 +10:00
parent 7b478fed4e
commit dcf74292b6
6 changed files with 14413 additions and 3 deletions

View File

@ -329,7 +329,7 @@ class StockItemTracking(models.Model):
related_name='tracking_info')
# Date this entry was created (cannot be edited)
date = models.DateField(auto_now_add=True, editable=False)
date = models.DateTimeField(auto_now_add=True, editable=False)
# Short-form title for this tracking entry
title = models.CharField(max_length=250)