Changes between Initial Version and Version 1 of Ticket #6344, comment 11
- Timestamp:
- Jun 8, 2019, 5:26:59 AM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #6344, comment 11
initial v1 9 9 `BalanceMinA` DECIMAL(10,0) NULL DEFAULT NULL, 10 10 `QtyPeriod` DECIMAL(10,0) NULL DEFAULT NULL, 11 `AVG` DECIMAL(10,0) NULL DEFAULT NULL,12 `STD` DECIMAL(10,0) NULL DEFAULT NULL,13 11 }}} 14 12 … … 21 19 balancemina = models.DecimalField(...) 22 20 qtyperiod = models.DecimalField(...) 23 avg = models.DecimalField(...)24 std = models.DecimalField(...)25 21 }}} 26 22 … … 33 29 balance_min_a = models.DecimalField(...) 34 30 qty_period = models.DecimalField(...) 35 avg = models.DecimalField(...)36 std = models.DecimalField(...)37 31 }}} 38 32