mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-03-09 20:57:11 +00:00
72_FB_CALLLIST: reading "count-missed-calls" only counts incoming missed calls (Forum: #124248)
git-svn-id: https://svn.fhem.de/fhem/trunk@25271 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
7704acab0b
commit
d3bf6adb93
@ -1,5 +1,7 @@
|
||||
# Add changes at the top of the list. Keep it in ASCII, and 80-char wide.
|
||||
# Do not insert empty lines here, update check depends on it.
|
||||
- change: 72_FB_CALLLIST: reading "count-missed-calls" only counts incoming
|
||||
missed calls
|
||||
- bugfix: 88_HMCCU: Fixed device detection bug
|
||||
- feature: 73_NUKIBridge 74_NUKIDevice: add support for
|
||||
new SmartLock Generation 3
|
||||
|
@ -1006,7 +1006,7 @@ sub FB_CALLLIST_createReadings($)
|
||||
$counters{"all"}++;
|
||||
$counters{"incoming"}++ if($item->{direction} eq "incoming");
|
||||
$counters{"outgoing"}++ if($item->{direction} eq "outgoing");
|
||||
$counters{"missed-calls"}++ if($item->{"missed_call"});
|
||||
$counters{"missed-calls"}++ if(($item->{direction} eq "incoming") and ($item->{"missed_call"} or (AttrVal($name, "answMachine-is-missed-call", "0") eq "1" and $item->{"internal_connection"} =~ /^Answering_Machine/)));
|
||||
$counters{"active"}++ if($item->{running_call});
|
||||
$counters{"completed"}++ unless($item->{running_call});
|
||||
}
|
||||
@ -1593,9 +1593,9 @@ sub FB_CALLLIST_strftime(@)
|
||||
<br>
|
||||
|
||||
<li><a name="FB_CALLLIST_answMachine-is-missed-call">answMachine-is-missed-call</a> 0,1</li>
|
||||
If activated, a incoming call, which is answered by an answering machine, will be treated as a missed call. This is only relevant if <a href="#FB_CALLLIST_list-type">list-type</a> is set to "missed-call".
|
||||
If activated, a incoming call, which is answered by an answering machine, will be treated as a missed call. This is only relevant if <a href="#FB_CALLLIST_list-type">list-type</a> is set to "missed-call" or <a href="#FB_CALLLIST_create-readings">create-readings</a> is set.
|
||||
<br><br>
|
||||
Possible values: 0 => disabled, 1 => enabled (answering machine calls will be treated as "missed call").<br>
|
||||
Possible values: 0 => disabled, 1 => enabled (successful answering machine calls will be treated as "missed call").<br>
|
||||
Default Value is 0 (disabled)<br><br>
|
||||
|
||||
<li><a name="FB_CALLLIST_connection-mapping">connection-mapping</a> <hash></li>
|
||||
@ -1816,7 +1816,7 @@ sub FB_CALLLIST_strftime(@)
|
||||
<li><b>count-outgoing</b> - The number of all displayed <i>outgoing</i> calls</li>
|
||||
<li><b>count-active</b> - The number of running (not yet completed) calls</li>
|
||||
<li><b>count-completed</b> - The number of already completed calls.</li>
|
||||
<li><b>count-missed-calls</b> - The number of missed calls.</li>
|
||||
<li><b>count-missed-calls</b> - The number of missed calls (incoming).</li>
|
||||
</ul>
|
||||
</ul>
|
||||
</ul>
|
||||
@ -1888,7 +1888,7 @@ sub FB_CALLLIST_strftime(@)
|
||||
<br>
|
||||
|
||||
<li><a name="FB_CALLLIST_answMachine-is-missed-call">answMachine-is-missed-call</a> 0,1</li>
|
||||
Sofern aktiviert, werden Anrufe, welche durch einen internen Anrufbeantworter beantwortet werden, als "verpasster Anruf" gewertet. Diese Funktionalität ist nur relevant, wenn <a href="#FB_CALLLIST_list-type">list-type</a> auf "missed-call" gesetzt ist.
|
||||
Sofern aktiviert, werden Anrufe, welche durch einen internen Anrufbeantworter beantwortet werden, als "verpasster Anruf" gewertet. Diese Funktionalität ist nur relevant, wenn <a href="#FB_CALLLIST_list-type">list-type</a> auf "missed-call" gesetzt oder <a href="#FB_CALLLIST_create-readings">create-readings</a> aktiviert ist.
|
||||
<br><br>
|
||||
Mögliche Werte: 0 => deaktiviert, 1 => aktiviert (Anrufbeantworter gilt als "verpasster Anruf").<br>
|
||||
Standardwert ist 0 (deaktiviert)<br><br>
|
||||
@ -2119,7 +2119,7 @@ sub FB_CALLLIST_strftime(@)
|
||||
<li><b>count-outgoing</b> - Die Anzahl aller angezeigten <i>ausgehenden</i> Anrufe</li>
|
||||
<li><b>count-active</b> - Die Anzahl aller laufenden (noch nicht beendeten) Anrufe</li>
|
||||
<li><b>count-completed</b> - Die Anzahl aller bereits abgeschlossenen Anrufe</li>
|
||||
<li><b>count-missed-calls</b> - Die Anzahl aller verpassten Anrufe</li>
|
||||
<li><b>count-missed-calls</b> - Die Anzahl aller verpassten Anrufe (eingehend)</li>
|
||||
</ul>
|
||||
</ul>
|
||||
</ul>
|
||||
|
Loading…
x
Reference in New Issue
Block a user