mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-05-24 08:31:41 +02:00
2017-02-16 Fred Gleason <fredg@paravelsystems.com>
* Modified the '<forcedLength>', '<averageLength>', '<lengthDeviation>', '<averageSegueLength>' and '<averageHookLength>' fields in the return of the 'ListCart' and 'ListCarts' web methods to return a two-digit hours field.
This commit is contained in:
parent
ef5dd121b7
commit
d4682f6e1b
@ -15580,3 +15580,8 @@
|
||||
2017-02-10 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Added a '<conductor>' field to the output of the 'ListLog' web
|
||||
API method.
|
||||
2017-02-16 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Modified the '<forcedLength>', '<averageLength>',
|
||||
'<lengthDeviation>', '<averageSegueLength>' and
|
||||
'<averageHookLength>' fields in the return of the 'ListCart'
|
||||
and 'ListCarts' web methods to return a two-digit hours field.
|
||||
|
@ -1056,15 +1056,15 @@ QString RDCart::xml(bool include_cuts,bool absolute,
|
||||
ret+=" "+RDXmlField("userDefined",q->value(11).toString());
|
||||
ret+=" "+RDXmlField("usageCode",q->value(12).toInt());
|
||||
ret+=" "+RDXmlField("forcedLength",
|
||||
RDGetTimeLength(q->value(13).toUInt(),true));
|
||||
"0"+RDGetTimeLength(q->value(13).toUInt(),true));
|
||||
ret+=" "+RDXmlField("averageLength",
|
||||
RDGetTimeLength(q->value(14).toUInt(),true));
|
||||
"0"+RDGetTimeLength(q->value(14).toUInt(),true));
|
||||
ret+=" "+RDXmlField("lengthDeviation",
|
||||
RDGetTimeLength(q->value(15).toUInt(),true));
|
||||
"0"+RDGetTimeLength(q->value(15).toUInt(),true));
|
||||
ret+=" "+RDXmlField("averageSegueLength",
|
||||
RDGetTimeLength(q->value(16).toUInt(),true));
|
||||
"0"+RDGetTimeLength(q->value(16).toUInt(),true));
|
||||
ret+=" "+RDXmlField("averageHookLength",
|
||||
RDGetTimeLength(q->value(17).toUInt(),true));
|
||||
"0"+RDGetTimeLength(q->value(17).toUInt(),true));
|
||||
ret+=" "+RDXmlField("cutQuantity",q->value(18).toUInt());
|
||||
ret+=" "+RDXmlField("lastCutPlayed",q->value(19).toUInt());
|
||||
ret+=" "+RDXmlField("enforceLength",RDBool(q->value(21).toString()));
|
||||
|
Loading…
x
Reference in New Issue
Block a user