Changes between Initial Version and Version 1 of Ticket #6344, comment 11


Ignore:
Timestamp:
Jun 8, 2019, 5:26:59 AM (5 years ago)
Author:
Михайло Свєчкін

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #6344, comment 11

    initial v1  
    99`BalanceMinA` DECIMAL(10,0) NULL DEFAULT NULL,
    1010`QtyPeriod` DECIMAL(10,0) NULL DEFAULT NULL,
    11 `AVG` DECIMAL(10,0) NULL DEFAULT NULL,
    12 `STD` DECIMAL(10,0) NULL DEFAULT NULL,
    1311}}}
    1412
     
    2119balancemina = models.DecimalField(...)
    2220qtyperiod = models.DecimalField(...)
    23 avg = models.DecimalField(...)
    24 std = models.DecimalField(...)
    2521}}}
    2622
     
    3329balance_min_a = models.DecimalField(...)
    3430qty_period = models.DecimalField(...)
    35 avg = models.DecimalField(...)
    36 std = models.DecimalField(...)
    3731}}}
    3832
Back to Top