myems-api/excelexporters/spaceenergycategory.py 1 location
|
@@ 1208-1218 (lines=11) @@
|
1205 |
|
return number |
1206 |
|
|
1207 |
|
|
1208 |
|
def is_base_period_timestamp_exists(base_period_data): |
1209 |
|
timestamps = base_period_data['timestamps'] |
1210 |
|
|
1211 |
|
if len(timestamps) == 0: |
1212 |
|
return False |
1213 |
|
|
1214 |
|
for timestamp in timestamps: |
1215 |
|
if len(timestamp) > 0: |
1216 |
|
return True |
1217 |
|
|
1218 |
|
return False |
1219 |
|
|
myems-api/excelexporters/combinedequipmentenergycategory.py 1 location
|
@@ 1154-1164 (lines=11) @@
|
1151 |
|
return number |
1152 |
|
|
1153 |
|
|
1154 |
|
def is_base_period_timestamp_exists(base_period_data): |
1155 |
|
timestamps = base_period_data['timestamps'] |
1156 |
|
|
1157 |
|
if len(timestamps) == 0: |
1158 |
|
return False |
1159 |
|
|
1160 |
|
for timestamp in timestamps: |
1161 |
|
if len(timestamp) > 0: |
1162 |
|
return True |
1163 |
|
|
1164 |
|
return False |
1165 |
|
|
myems-api/excelexporters/storeenergycategory.py 1 location
|
@@ 1148-1158 (lines=11) @@
|
1145 |
|
return number |
1146 |
|
|
1147 |
|
|
1148 |
|
def is_base_period_timestamp_exists(base_period_data): |
1149 |
|
timestamps = base_period_data['timestamps'] |
1150 |
|
|
1151 |
|
if len(timestamps) == 0: |
1152 |
|
return False |
1153 |
|
|
1154 |
|
for timestamp in timestamps: |
1155 |
|
if len(timestamp) > 0: |
1156 |
|
return True |
1157 |
|
|
1158 |
|
return False |
1159 |
|
|
myems-api/excelexporters/shopfloorenergycategory.py 1 location
|
@@ 1139-1149 (lines=11) @@
|
1136 |
|
return number |
1137 |
|
|
1138 |
|
|
1139 |
|
def is_base_period_timestamp_exists(base_period_data): |
1140 |
|
timestamps = base_period_data['timestamps'] |
1141 |
|
|
1142 |
|
if len(timestamps) == 0: |
1143 |
|
return False |
1144 |
|
|
1145 |
|
for timestamp in timestamps: |
1146 |
|
if len(timestamp) > 0: |
1147 |
|
return True |
1148 |
|
|
1149 |
|
return False |
1150 |
|
|
myems-api/excelexporters/tenantenergycategory.py 1 location
|
@@ 1109-1119 (lines=11) @@
|
1106 |
|
return number |
1107 |
|
|
1108 |
|
|
1109 |
|
def is_base_period_timestamp_exists(base_period_data): |
1110 |
|
timestamps = base_period_data['timestamps'] |
1111 |
|
|
1112 |
|
if len(timestamps) == 0: |
1113 |
|
return False |
1114 |
|
|
1115 |
|
for timestamp in timestamps: |
1116 |
|
if len(timestamp) > 0: |
1117 |
|
return True |
1118 |
|
|
1119 |
|
return False |
1120 |
|
|
myems-api/excelexporters/spacecarbon.py 1 location
|
@@ 1104-1114 (lines=11) @@
|
1101 |
|
return number |
1102 |
|
|
1103 |
|
|
1104 |
|
def is_base_period_timestamp_exists(base_period_data): |
1105 |
|
timestamps = base_period_data['timestamps'] |
1106 |
|
|
1107 |
|
if len(timestamps) == 0: |
1108 |
|
return False |
1109 |
|
|
1110 |
|
for timestamp in timestamps: |
1111 |
|
if len(timestamp) > 0: |
1112 |
|
return True |
1113 |
|
|
1114 |
|
return False |
1115 |
|
|
myems-api/excelexporters/spacecost.py 1 location
|
@@ 1101-1111 (lines=11) @@
|
1098 |
|
return number |
1099 |
|
|
1100 |
|
|
1101 |
|
def is_base_period_timestamp_exists(base_period_data): |
1102 |
|
timestamps = base_period_data['timestamps'] |
1103 |
|
|
1104 |
|
if len(timestamps) == 0: |
1105 |
|
return False |
1106 |
|
|
1107 |
|
for timestamp in timestamps: |
1108 |
|
if len(timestamp) > 0: |
1109 |
|
return True |
1110 |
|
|
1111 |
|
return False |
1112 |
|
|
myems-api/excelexporters/combinedequipmentcost.py 1 location
|
@@ 1100-1110 (lines=11) @@
|
1097 |
|
return number |
1098 |
|
|
1099 |
|
|
1100 |
|
def is_base_period_timestamp_exists(base_period_data): |
1101 |
|
timestamps = base_period_data['timestamps'] |
1102 |
|
|
1103 |
|
if len(timestamps) == 0: |
1104 |
|
return False |
1105 |
|
|
1106 |
|
for timestamp in timestamps: |
1107 |
|
if len(timestamp) > 0: |
1108 |
|
return True |
1109 |
|
|
1110 |
|
return False |
1111 |
|
|
myems-api/excelexporters/combinedequipmentcarbon.py 1 location
|
@@ 1098-1108 (lines=11) @@
|
1095 |
|
return number |
1096 |
|
|
1097 |
|
|
1098 |
|
def is_base_period_timestamp_exists(base_period_data): |
1099 |
|
timestamps = base_period_data['timestamps'] |
1100 |
|
|
1101 |
|
if len(timestamps) == 0: |
1102 |
|
return False |
1103 |
|
|
1104 |
|
for timestamp in timestamps: |
1105 |
|
if len(timestamp) > 0: |
1106 |
|
return True |
1107 |
|
|
1108 |
|
return False |
1109 |
|
|
myems-api/excelexporters/spaceplan.py 1 location
|
@@ 1049-1059 (lines=11) @@
|
1046 |
|
return number |
1047 |
|
|
1048 |
|
|
1049 |
|
def is_base_period_timestamp_exists(base_period_data): |
1050 |
|
timestamps = base_period_data['timestamps'] |
1051 |
|
|
1052 |
|
if len(timestamps) == 0: |
1053 |
|
return False |
1054 |
|
|
1055 |
|
for timestamp in timestamps: |
1056 |
|
if len(timestamp) > 0: |
1057 |
|
return True |
1058 |
|
|
1059 |
|
return False |
1060 |
|
|
1061 |
|
|
myems-api/excelexporters/spacesaving.py 1 location
|
@@ 1049-1059 (lines=11) @@
|
1046 |
|
return number |
1047 |
|
|
1048 |
|
|
1049 |
|
def is_base_period_timestamp_exists(base_period_data): |
1050 |
|
timestamps = base_period_data['timestamps'] |
1051 |
|
|
1052 |
|
if len(timestamps) == 0: |
1053 |
|
return False |
1054 |
|
|
1055 |
|
for timestamp in timestamps: |
1056 |
|
if len(timestamp) > 0: |
1057 |
|
return True |
1058 |
|
|
1059 |
|
return False |
1060 |
|
|
1061 |
|
|
myems-api/excelexporters/shopfloorcarbon.py 1 location
|
@@ 1045-1055 (lines=11) @@
|
1042 |
|
return number |
1043 |
|
|
1044 |
|
|
1045 |
|
def is_base_period_timestamp_exists(base_period_data): |
1046 |
|
timestamps = base_period_data['timestamps'] |
1047 |
|
|
1048 |
|
if len(timestamps) == 0: |
1049 |
|
return False |
1050 |
|
|
1051 |
|
for timestamp in timestamps: |
1052 |
|
if len(timestamp) > 0: |
1053 |
|
return True |
1054 |
|
|
1055 |
|
return False |
1056 |
|
|
myems-api/excelexporters/shopfloorcost.py 1 location
|
@@ 1043-1053 (lines=11) @@
|
1040 |
|
return number |
1041 |
|
|
1042 |
|
|
1043 |
|
def is_base_period_timestamp_exists(base_period_data): |
1044 |
|
timestamps = base_period_data['timestamps'] |
1045 |
|
|
1046 |
|
if len(timestamps) == 0: |
1047 |
|
return False |
1048 |
|
|
1049 |
|
for timestamp in timestamps: |
1050 |
|
if len(timestamp) > 0: |
1051 |
|
return True |
1052 |
|
|
1053 |
|
return False |
1054 |
|
|
myems-api/excelexporters/spaceincome.py 1 location
|
@@ 1038-1048 (lines=11) @@
|
1035 |
|
return number |
1036 |
|
|
1037 |
|
|
1038 |
|
def is_base_period_timestamp_exists(base_period_data): |
1039 |
|
timestamps = base_period_data['timestamps'] |
1040 |
|
|
1041 |
|
if len(timestamps) == 0: |
1042 |
|
return False |
1043 |
|
|
1044 |
|
for timestamp in timestamps: |
1045 |
|
if len(timestamp) > 0: |
1046 |
|
return True |
1047 |
|
|
1048 |
|
return False |
1049 |
|
|
myems-api/excelexporters/equipmentenergycategory.py 1 location
|
@@ 998-1008 (lines=11) @@
|
995 |
|
return number |
996 |
|
|
997 |
|
|
998 |
|
def is_base_period_timestamp_exists(base_period_data): |
999 |
|
timestamps = base_period_data['timestamps'] |
1000 |
|
|
1001 |
|
if len(timestamps) == 0: |
1002 |
|
return False |
1003 |
|
|
1004 |
|
for timestamp in timestamps: |
1005 |
|
if len(timestamp) > 0: |
1006 |
|
return True |
1007 |
|
|
1008 |
|
return False |
1009 |
|
|
myems-api/excelexporters/equipmentcost.py 1 location
|
@@ 995-1005 (lines=11) @@
|
992 |
|
return number |
993 |
|
|
994 |
|
|
995 |
|
def is_base_period_timestamp_exists(base_period_data): |
996 |
|
timestamps = base_period_data['timestamps'] |
997 |
|
|
998 |
|
if len(timestamps) == 0: |
999 |
|
return False |
1000 |
|
|
1001 |
|
for timestamp in timestamps: |
1002 |
|
if len(timestamp) > 0: |
1003 |
|
return True |
1004 |
|
|
1005 |
|
return False |
1006 |
|
|
myems-api/excelexporters/equipmentcarbon.py 1 location
|
@@ 995-1005 (lines=11) @@
|
992 |
|
return number |
993 |
|
|
994 |
|
|
995 |
|
def is_base_period_timestamp_exists(base_period_data): |
996 |
|
timestamps = base_period_data['timestamps'] |
997 |
|
|
998 |
|
if len(timestamps) == 0: |
999 |
|
return False |
1000 |
|
|
1001 |
|
for timestamp in timestamps: |
1002 |
|
if len(timestamp) > 0: |
1003 |
|
return True |
1004 |
|
|
1005 |
|
return False |
1006 |
|
|
myems-api/excelexporters/tenantcost.py 1 location
|
@@ 990-1000 (lines=11) @@
|
987 |
|
return number |
988 |
|
|
989 |
|
|
990 |
|
def is_base_period_timestamp_exists(base_period_data): |
991 |
|
timestamps = base_period_data['timestamps'] |
992 |
|
|
993 |
|
if len(timestamps) == 0: |
994 |
|
return False |
995 |
|
|
996 |
|
for timestamp in timestamps: |
997 |
|
if len(timestamp) > 0: |
998 |
|
return True |
999 |
|
|
1000 |
|
return False |
1001 |
|
|
myems-api/excelexporters/tenantcarbon.py 1 location
|
@@ 988-998 (lines=11) @@
|
985 |
|
return number |
986 |
|
|
987 |
|
|
988 |
|
def is_base_period_timestamp_exists(base_period_data): |
989 |
|
timestamps = base_period_data['timestamps'] |
990 |
|
|
991 |
|
if len(timestamps) == 0: |
992 |
|
return False |
993 |
|
|
994 |
|
for timestamp in timestamps: |
995 |
|
if len(timestamp) > 0: |
996 |
|
return True |
997 |
|
|
998 |
|
return False |
999 |
|
|
myems-api/excelexporters/combinedequipmentplan.py 1 location
|
@@ 987-997 (lines=11) @@
|
984 |
|
return number |
985 |
|
|
986 |
|
|
987 |
|
def is_base_period_timestamp_exists(base_period_data): |
988 |
|
timestamps = base_period_data['timestamps'] |
989 |
|
|
990 |
|
if len(timestamps) == 0: |
991 |
|
return False |
992 |
|
|
993 |
|
for timestamp in timestamps: |
994 |
|
if len(timestamp) > 0: |
995 |
|
return True |
996 |
|
|
997 |
|
return False |
998 |
|
|
myems-api/excelexporters/combinedequipmentsaving.py 1 location
|
@@ 987-997 (lines=11) @@
|
984 |
|
return number |
985 |
|
|
986 |
|
|
987 |
|
def is_base_period_timestamp_exists(base_period_data): |
988 |
|
timestamps = base_period_data['timestamps'] |
989 |
|
|
990 |
|
if len(timestamps) == 0: |
991 |
|
return False |
992 |
|
|
993 |
|
for timestamp in timestamps: |
994 |
|
if len(timestamp) > 0: |
995 |
|
return True |
996 |
|
|
997 |
|
return False |
998 |
|
|
myems-api/excelexporters/storecost.py 1 location
|
@@ 985-995 (lines=11) @@
|
982 |
|
return number |
983 |
|
|
984 |
|
|
985 |
|
def is_base_period_timestamp_exists(base_period_data): |
986 |
|
timestamps = base_period_data['timestamps'] |
987 |
|
|
988 |
|
if len(timestamps) == 0: |
989 |
|
return False |
990 |
|
|
991 |
|
for timestamp in timestamps: |
992 |
|
if len(timestamp) > 0: |
993 |
|
return True |
994 |
|
|
995 |
|
return False |
996 |
|
|
myems-api/excelexporters/storecarbon.py 1 location
|
@@ 985-995 (lines=11) @@
|
982 |
|
return number |
983 |
|
|
984 |
|
|
985 |
|
def is_base_period_timestamp_exists(base_period_data): |
986 |
|
timestamps = base_period_data['timestamps'] |
987 |
|
|
988 |
|
if len(timestamps) == 0: |
989 |
|
return False |
990 |
|
|
991 |
|
for timestamp in timestamps: |
992 |
|
if len(timestamp) > 0: |
993 |
|
return True |
994 |
|
|
995 |
|
return False |
996 |
|
|
myems-api/excelexporters/combinedequipmentincome.py 1 location
|
@@ 984-994 (lines=11) @@
|
981 |
|
return number |
982 |
|
|
983 |
|
|
984 |
|
def is_base_period_timestamp_exists(base_period_data): |
985 |
|
timestamps = base_period_data['timestamps'] |
986 |
|
|
987 |
|
if len(timestamps) == 0: |
988 |
|
return False |
989 |
|
|
990 |
|
for timestamp in timestamps: |
991 |
|
if len(timestamp) > 0: |
992 |
|
return True |
993 |
|
|
994 |
|
return False |
995 |
|
|
myems-api/excelexporters/tenantsaving.py 1 location
|
@@ 969-979 (lines=11) @@
|
966 |
|
return number |
967 |
|
|
968 |
|
|
969 |
|
def is_base_period_timestamp_exists(base_period_data): |
970 |
|
timestamps = base_period_data['timestamps'] |
971 |
|
|
972 |
|
if len(timestamps) == 0: |
973 |
|
return False |
974 |
|
|
975 |
|
for timestamp in timestamps: |
976 |
|
if len(timestamp) > 0: |
977 |
|
return True |
978 |
|
|
979 |
|
return False |
980 |
|
|
myems-api/excelexporters/tenantplan.py 1 location
|
@@ 969-979 (lines=11) @@
|
966 |
|
return number |
967 |
|
|
968 |
|
|
969 |
|
def is_base_period_timestamp_exists(base_period_data): |
970 |
|
timestamps = base_period_data['timestamps'] |
971 |
|
|
972 |
|
if len(timestamps) == 0: |
973 |
|
return False |
974 |
|
|
975 |
|
for timestamp in timestamps: |
976 |
|
if len(timestamp) > 0: |
977 |
|
return True |
978 |
|
|
979 |
|
return False |
980 |
|
|
myems-api/excelexporters/shopfloorsaving.py 1 location
|
@@ 964-974 (lines=11) @@
|
961 |
|
return number |
962 |
|
|
963 |
|
|
964 |
|
def is_base_period_timestamp_exists(base_period_data): |
965 |
|
timestamps = base_period_data['timestamps'] |
966 |
|
|
967 |
|
if len(timestamps) == 0: |
968 |
|
return False |
969 |
|
|
970 |
|
for timestamp in timestamps: |
971 |
|
if len(timestamp) > 0: |
972 |
|
return True |
973 |
|
|
974 |
|
return False |
975 |
|
|
myems-api/excelexporters/shopfloorplan.py 1 location
|
@@ 964-974 (lines=11) @@
|
961 |
|
return number |
962 |
|
|
963 |
|
|
964 |
|
def is_base_period_timestamp_exists(base_period_data): |
965 |
|
timestamps = base_period_data['timestamps'] |
966 |
|
|
967 |
|
if len(timestamps) == 0: |
968 |
|
return False |
969 |
|
|
970 |
|
for timestamp in timestamps: |
971 |
|
if len(timestamp) > 0: |
972 |
|
return True |
973 |
|
|
974 |
|
return False |
975 |
|
|
myems-api/excelexporters/storeplan.py 1 location
|
@@ 961-971 (lines=11) @@
|
958 |
|
return number |
959 |
|
|
960 |
|
|
961 |
|
def is_base_period_timestamp_exists(base_period_data): |
962 |
|
timestamps = base_period_data['timestamps'] |
963 |
|
|
964 |
|
if len(timestamps) == 0: |
965 |
|
return False |
966 |
|
|
967 |
|
for timestamp in timestamps: |
968 |
|
if len(timestamp) > 0: |
969 |
|
return True |
970 |
|
|
971 |
|
return False |
972 |
|
|
myems-api/excelexporters/storesaving.py 1 location
|
@@ 961-971 (lines=11) @@
|
958 |
|
return number |
959 |
|
|
960 |
|
|
961 |
|
def is_base_period_timestamp_exists(base_period_data): |
962 |
|
timestamps = base_period_data['timestamps'] |
963 |
|
|
964 |
|
if len(timestamps) == 0: |
965 |
|
return False |
966 |
|
|
967 |
|
for timestamp in timestamps: |
968 |
|
if len(timestamp) > 0: |
969 |
|
return True |
970 |
|
|
971 |
|
return False |
972 |
|
|
myems-api/excelexporters/equipmentsaving.py 1 location
|
@@ 935-945 (lines=11) @@
|
932 |
|
return number |
933 |
|
|
934 |
|
|
935 |
|
def is_base_period_timestamp_exists(base_period_data): |
936 |
|
timestamps = base_period_data['timestamps'] |
937 |
|
|
938 |
|
if len(timestamps) == 0: |
939 |
|
return False |
940 |
|
|
941 |
|
for timestamp in timestamps: |
942 |
|
if len(timestamp) > 0: |
943 |
|
return True |
944 |
|
|
945 |
|
return False |
946 |
|
|
myems-api/excelexporters/equipmentplan.py 1 location
|
@@ 935-945 (lines=11) @@
|
932 |
|
return number |
933 |
|
|
934 |
|
|
935 |
|
def is_base_period_timestamp_exists(base_period_data): |
936 |
|
timestamps = base_period_data['timestamps'] |
937 |
|
|
938 |
|
if len(timestamps) == 0: |
939 |
|
return False |
940 |
|
|
941 |
|
for timestamp in timestamps: |
942 |
|
if len(timestamp) > 0: |
943 |
|
return True |
944 |
|
|
945 |
|
return False |
946 |
|
|
myems-api/excelexporters/equipmentincome.py 1 location
|
@@ 912-922 (lines=11) @@
|
909 |
|
return number |
910 |
|
|
911 |
|
|
912 |
|
def is_base_period_timestamp_exists(base_period_data): |
913 |
|
timestamps = base_period_data['timestamps'] |
914 |
|
|
915 |
|
if len(timestamps) == 0: |
916 |
|
return False |
917 |
|
|
918 |
|
for timestamp in timestamps: |
919 |
|
if len(timestamp) > 0: |
920 |
|
return True |
921 |
|
|
922 |
|
return False |
923 |
|
|
myems-api/excelexporters/spaceenergyitem.py 1 location
|
@@ 908-918 (lines=11) @@
|
905 |
|
return number |
906 |
|
|
907 |
|
|
908 |
|
def is_base_period_timestamp_exists(base_period_data): |
909 |
|
timestamps = base_period_data['timestamps'] |
910 |
|
|
911 |
|
if len(timestamps) == 0: |
912 |
|
return False |
913 |
|
|
914 |
|
for timestamp in timestamps: |
915 |
|
if len(timestamp) > 0: |
916 |
|
return True |
917 |
|
|
918 |
|
return False |
919 |
|
|
myems-api/excelexporters/combinedequipmentenergyitem.py 1 location
|
@@ 863-873 (lines=11) @@
|
860 |
|
return number |
861 |
|
|
862 |
|
|
863 |
|
def is_base_period_timestamp_exists(base_period_data): |
864 |
|
timestamps = base_period_data['timestamps'] |
865 |
|
|
866 |
|
if len(timestamps) == 0: |
867 |
|
return False |
868 |
|
|
869 |
|
for timestamp in timestamps: |
870 |
|
if len(timestamp) > 0: |
871 |
|
return True |
872 |
|
|
873 |
|
return False |
874 |
|
|
875 |
|
|
myems-api/excelexporters/spaceoutput.py 1 location
|
@@ 839-849 (lines=11) @@
|
836 |
|
return number |
837 |
|
|
838 |
|
|
839 |
|
def is_base_period_timestamp_exists(base_period_data): |
840 |
|
timestamps = base_period_data['timestamps'] |
841 |
|
|
842 |
|
if len(timestamps) == 0: |
843 |
|
return False |
844 |
|
|
845 |
|
for timestamp in timestamps: |
846 |
|
if len(timestamp) > 0: |
847 |
|
return True |
848 |
|
|
849 |
|
return False |
850 |
|
|
myems-api/excelexporters/shopfloorenergyitem.py 1 location
|
@@ 822-832 (lines=11) @@
|
819 |
|
return number |
820 |
|
|
821 |
|
|
822 |
|
def is_base_period_timestamp_exists(base_period_data): |
823 |
|
timestamps = base_period_data['timestamps'] |
824 |
|
|
825 |
|
if len(timestamps) == 0: |
826 |
|
return False |
827 |
|
|
828 |
|
for timestamp in timestamps: |
829 |
|
if len(timestamp) > 0: |
830 |
|
return True |
831 |
|
|
832 |
|
return False |
833 |
|
|
myems-api/excelexporters/storeenergyitem.py 1 location
|
@@ 822-832 (lines=11) @@
|
819 |
|
return number |
820 |
|
|
821 |
|
|
822 |
|
def is_base_period_timestamp_exists(base_period_data): |
823 |
|
timestamps = base_period_data['timestamps'] |
824 |
|
|
825 |
|
if len(timestamps) == 0: |
826 |
|
return False |
827 |
|
|
828 |
|
for timestamp in timestamps: |
829 |
|
if len(timestamp) > 0: |
830 |
|
return True |
831 |
|
|
832 |
|
return False |
833 |
|
|
myems-api/excelexporters/tenantenergyitem.py 1 location
|
@@ 821-831 (lines=11) @@
|
818 |
|
return number |
819 |
|
|
820 |
|
|
821 |
|
def is_base_period_timestamp_exists(base_period_data): |
822 |
|
timestamps = base_period_data['timestamps'] |
823 |
|
|
824 |
|
if len(timestamps) == 0: |
825 |
|
return False |
826 |
|
|
827 |
|
for timestamp in timestamps: |
828 |
|
if len(timestamp) > 0: |
829 |
|
return True |
830 |
|
|
831 |
|
return False |
832 |
|
|
myems-api/excelexporters/equipmentenergyitem.py 1 location
|
@@ 801-811 (lines=11) @@
|
798 |
|
return number |
799 |
|
|
800 |
|
|
801 |
|
def is_base_period_timestamp_exists(base_period_data): |
802 |
|
timestamps = base_period_data['timestamps'] |
803 |
|
|
804 |
|
if len(timestamps) == 0: |
805 |
|
return False |
806 |
|
|
807 |
|
for timestamp in timestamps: |
808 |
|
if len(timestamp) > 0: |
809 |
|
return True |
810 |
|
|
811 |
|
return False |
812 |
|
|
myems-api/excelexporters/meterenergy.py 1 location
|
@@ 657-667 (lines=11) @@
|
654 |
|
return number |
655 |
|
|
656 |
|
|
657 |
|
def is_base_period_timestamp_exists(base_period_data): |
658 |
|
timestamps = base_period_data['timestamps'] |
659 |
|
|
660 |
|
if len(timestamps) == 0: |
661 |
|
return False |
662 |
|
|
663 |
|
for timestamp in timestamps: |
664 |
|
if len(timestamp) > 0: |
665 |
|
return True |
666 |
|
|
667 |
|
return False |
668 |
|
|
myems-api/excelexporters/combinedequipmentefficiency.py 1 location
|
@@ 1159-1169 (lines=11) @@
|
1156 |
|
return number |
1157 |
|
|
1158 |
|
|
1159 |
|
def is_base_period_timestamp_exists(base_period_data): |
1160 |
|
timestamps = base_period_data['timestamps'] |
1161 |
|
|
1162 |
|
if len(timestamps) == 0: |
1163 |
|
return False |
1164 |
|
|
1165 |
|
for timestamp in timestamps: |
1166 |
|
if len(timestamp) > 0: |
1167 |
|
return True |
1168 |
|
|
1169 |
|
return False |
1170 |
|
|
myems-api/excelexporters/equipmentefficiency.py 1 location
|
@@ 1087-1097 (lines=11) @@
|
1084 |
|
return number |
1085 |
|
|
1086 |
|
|
1087 |
|
def is_base_period_timestamp_exists(base_period_data): |
1088 |
|
timestamps = base_period_data['timestamps'] |
1089 |
|
|
1090 |
|
if len(timestamps) == 0: |
1091 |
|
return False |
1092 |
|
|
1093 |
|
for timestamp in timestamps: |
1094 |
|
if len(timestamp) > 0: |
1095 |
|
return True |
1096 |
|
|
1097 |
|
return False |
1098 |
|
|
myems-api/excelexporters/tenantload.py 1 location
|
@@ 982-992 (lines=11) @@
|
979 |
|
return number |
980 |
|
|
981 |
|
|
982 |
|
def is_base_period_timestamp_exists(base_period_data): |
983 |
|
timestamps = base_period_data['timestamps'] |
984 |
|
|
985 |
|
if len(timestamps) == 0: |
986 |
|
return False |
987 |
|
|
988 |
|
for timestamp in timestamps: |
989 |
|
if len(timestamp) > 0: |
990 |
|
return True |
991 |
|
|
992 |
|
return False |
993 |
|
|
myems-api/excelexporters/combinedequipmentload.py 1 location
|
@@ 980-990 (lines=11) @@
|
977 |
|
return number |
978 |
|
|
979 |
|
|
980 |
|
def is_base_period_timestamp_exists(base_period_data): |
981 |
|
timestamps = base_period_data['timestamps'] |
982 |
|
|
983 |
|
if len(timestamps) == 0: |
984 |
|
return False |
985 |
|
|
986 |
|
for timestamp in timestamps: |
987 |
|
if len(timestamp) > 0: |
988 |
|
return True |
989 |
|
|
990 |
|
return False |
991 |
|
|
myems-api/excelexporters/spaceload.py 1 location
|
@@ 979-989 (lines=11) @@
|
976 |
|
return number |
977 |
|
|
978 |
|
|
979 |
|
def is_base_period_timestamp_exists(base_period_data): |
980 |
|
timestamps = base_period_data['timestamps'] |
981 |
|
|
982 |
|
if len(timestamps) == 0: |
983 |
|
return False |
984 |
|
|
985 |
|
for timestamp in timestamps: |
986 |
|
if len(timestamp) > 0: |
987 |
|
return True |
988 |
|
|
989 |
|
return False |
990 |
|
|
myems-api/excelexporters/storeload.py 1 location
|
@@ 955-965 (lines=11) @@
|
952 |
|
return number |
953 |
|
|
954 |
|
|
955 |
|
def is_base_period_timestamp_exists(base_period_data): |
956 |
|
timestamps = base_period_data['timestamps'] |
957 |
|
|
958 |
|
if len(timestamps) == 0: |
959 |
|
return False |
960 |
|
|
961 |
|
for timestamp in timestamps: |
962 |
|
if len(timestamp) > 0: |
963 |
|
return True |
964 |
|
|
965 |
|
return False |
966 |
|
|
myems-api/excelexporters/shopfloorload.py 1 location
|
@@ 952-962 (lines=11) @@
|
949 |
|
return number |
950 |
|
|
951 |
|
|
952 |
|
def is_base_period_timestamp_exists(base_period_data): |
953 |
|
timestamps = base_period_data['timestamps'] |
954 |
|
|
955 |
|
if len(timestamps) == 0: |
956 |
|
return False |
957 |
|
|
958 |
|
for timestamp in timestamps: |
959 |
|
if len(timestamp) > 0: |
960 |
|
return True |
961 |
|
|
962 |
|
return False |
963 |
|
|
myems-api/excelexporters/tenantstatistics.py 1 location
|
@@ 943-953 (lines=11) @@
|
940 |
|
return number |
941 |
|
|
942 |
|
|
943 |
|
def is_base_period_timestamp_exists(base_period_data): |
944 |
|
timestamps = base_period_data['timestamps'] |
945 |
|
|
946 |
|
if len(timestamps) == 0: |
947 |
|
return False |
948 |
|
|
949 |
|
for timestamp in timestamps: |
950 |
|
if len(timestamp) > 0: |
951 |
|
return True |
952 |
|
|
953 |
|
return False |
954 |
|
|
myems-api/excelexporters/spacestatistics.py 1 location
|
@@ 937-947 (lines=11) @@
|
934 |
|
return number |
935 |
|
|
936 |
|
|
937 |
|
def is_base_period_timestamp_exists(base_period_data): |
938 |
|
timestamps = base_period_data['timestamps'] |
939 |
|
|
940 |
|
if len(timestamps) == 0: |
941 |
|
return False |
942 |
|
|
943 |
|
for timestamp in timestamps: |
944 |
|
if len(timestamp) > 0: |
945 |
|
return True |
946 |
|
|
947 |
|
return False |
948 |
|
|
myems-api/excelexporters/shopfloorstatistics.py 1 location
|
@@ 936-946 (lines=11) @@
|
933 |
|
return number |
934 |
|
|
935 |
|
|
936 |
|
def is_base_period_timestamp_exists(base_period_data): |
937 |
|
timestamps = base_period_data['timestamps'] |
938 |
|
|
939 |
|
if len(timestamps) == 0: |
940 |
|
return False |
941 |
|
|
942 |
|
for timestamp in timestamps: |
943 |
|
if len(timestamp) > 0: |
944 |
|
return True |
945 |
|
|
946 |
|
return False |
947 |
|
|
myems-api/excelexporters/storestatistics.py 1 location
|
@@ 931-941 (lines=11) @@
|
928 |
|
return number |
929 |
|
|
930 |
|
|
931 |
|
def is_base_period_timestamp_exists(base_period_data): |
932 |
|
timestamps = base_period_data['timestamps'] |
933 |
|
|
934 |
|
if len(timestamps) == 0: |
935 |
|
return False |
936 |
|
|
937 |
|
for timestamp in timestamps: |
938 |
|
if len(timestamp) > 0: |
939 |
|
return True |
940 |
|
|
941 |
|
return False |
942 |
|
|
myems-api/excelexporters/equipmentload.py 1 location
|
@@ 894-904 (lines=11) @@
|
891 |
|
return number |
892 |
|
|
893 |
|
|
894 |
|
def is_base_period_timestamp_exists(base_period_data): |
895 |
|
timestamps = base_period_data['timestamps'] |
896 |
|
|
897 |
|
if len(timestamps) == 0: |
898 |
|
return False |
899 |
|
|
900 |
|
for timestamp in timestamps: |
901 |
|
if len(timestamp) > 0: |
902 |
|
return True |
903 |
|
|
904 |
|
return False |
905 |
|
|
myems-api/excelexporters/combinedequipmentstatistics.py 1 location
|
@@ 867-877 (lines=11) @@
|
864 |
|
return number |
865 |
|
|
866 |
|
|
867 |
|
def is_base_period_timestamp_exists(base_period_data): |
868 |
|
timestamps = base_period_data['timestamps'] |
869 |
|
|
870 |
|
if len(timestamps) == 0: |
871 |
|
return False |
872 |
|
|
873 |
|
for timestamp in timestamps: |
874 |
|
if len(timestamp) > 0: |
875 |
|
return True |
876 |
|
|
877 |
|
return False |
878 |
|
|
myems-api/excelexporters/equipmentstatistics.py 1 location
|
@@ 824-834 (lines=11) @@
|
821 |
|
return number |
822 |
|
|
823 |
|
|
824 |
|
def is_base_period_timestamp_exists(base_period_data): |
825 |
|
timestamps = base_period_data['timestamps'] |
826 |
|
|
827 |
|
if len(timestamps) == 0: |
828 |
|
return False |
829 |
|
|
830 |
|
for timestamp in timestamps: |
831 |
|
if len(timestamp) > 0: |
832 |
|
return True |
833 |
|
|
834 |
|
return False |
835 |
|
|
myems-api/excelexporters/combinedequipmentoutput.py 1 location
|
@@ 793-803 (lines=11) @@
|
790 |
|
return number |
791 |
|
|
792 |
|
|
793 |
|
def is_base_period_timestamp_exists(base_period_data): |
794 |
|
timestamps = base_period_data['timestamps'] |
795 |
|
|
796 |
|
if len(timestamps) == 0: |
797 |
|
return False |
798 |
|
|
799 |
|
for timestamp in timestamps: |
800 |
|
if len(timestamp) > 0: |
801 |
|
return True |
802 |
|
|
803 |
|
return False |
804 |
|
|
myems-api/excelexporters/spaceefficiency.py 1 location
|
@@ 767-777 (lines=11) @@
|
764 |
|
return number |
765 |
|
|
766 |
|
|
767 |
|
def is_base_period_timestamp_exists(base_period_data): |
768 |
|
timestamps = base_period_data['timestamps'] |
769 |
|
|
770 |
|
if len(timestamps) == 0: |
771 |
|
return False |
772 |
|
|
773 |
|
for timestamp in timestamps: |
774 |
|
if len(timestamp) > 0: |
775 |
|
return True |
776 |
|
|
777 |
|
return False |
778 |
|
|
myems-api/excelexporters/meterplan.py 1 location
|
@@ 762-772 (lines=11) @@
|
759 |
|
return number |
760 |
|
|
761 |
|
|
762 |
|
def is_base_period_timestamp_exists(base_period_data): |
763 |
|
timestamps = base_period_data['timestamps'] |
764 |
|
|
765 |
|
if len(timestamps) == 0: |
766 |
|
return False |
767 |
|
|
768 |
|
for timestamp in timestamps: |
769 |
|
if len(timestamp) > 0: |
770 |
|
return True |
771 |
|
|
772 |
|
return False |
773 |
|
|
myems-api/excelexporters/metersaving.py 1 location
|
@@ 762-772 (lines=11) @@
|
759 |
|
return number |
760 |
|
|
761 |
|
|
762 |
|
def is_base_period_timestamp_exists(base_period_data): |
763 |
|
timestamps = base_period_data['timestamps'] |
764 |
|
|
765 |
|
if len(timestamps) == 0: |
766 |
|
return False |
767 |
|
|
768 |
|
for timestamp in timestamps: |
769 |
|
if len(timestamp) > 0: |
770 |
|
return True |
771 |
|
|
772 |
|
return False |
773 |
|
|
myems-api/excelexporters/offlinemetercarbon.py 1 location
|
@@ 740-750 (lines=11) @@
|
737 |
|
return number |
738 |
|
|
739 |
|
|
740 |
|
def is_base_period_timestamp_exists(base_period_data): |
741 |
|
timestamps = base_period_data['timestamps'] |
742 |
|
|
743 |
|
if len(timestamps) == 0: |
744 |
|
return False |
745 |
|
|
746 |
|
for timestamp in timestamps: |
747 |
|
if len(timestamp) > 0: |
748 |
|
return True |
749 |
|
|
750 |
|
return False |
751 |
|
|
myems-api/excelexporters/virtualmetercarbon.py 1 location
|
@@ 740-750 (lines=11) @@
|
737 |
|
return number |
738 |
|
|
739 |
|
|
740 |
|
def is_base_period_timestamp_exists(base_period_data): |
741 |
|
timestamps = base_period_data['timestamps'] |
742 |
|
|
743 |
|
if len(timestamps) == 0: |
744 |
|
return False |
745 |
|
|
746 |
|
for timestamp in timestamps: |
747 |
|
if len(timestamp) > 0: |
748 |
|
return True |
749 |
|
|
750 |
|
return False |
751 |
|
|
myems-api/excelexporters/virtualmetercost.py 1 location
|
@@ 740-750 (lines=11) @@
|
737 |
|
return number |
738 |
|
|
739 |
|
|
740 |
|
def is_base_period_timestamp_exists(base_period_data): |
741 |
|
timestamps = base_period_data['timestamps'] |
742 |
|
|
743 |
|
if len(timestamps) == 0: |
744 |
|
return False |
745 |
|
|
746 |
|
for timestamp in timestamps: |
747 |
|
if len(timestamp) > 0: |
748 |
|
return True |
749 |
|
|
750 |
|
return False |
751 |
|
|
myems-api/excelexporters/offlinemetercost.py 1 location
|
@@ 740-750 (lines=11) @@
|
737 |
|
return number |
738 |
|
|
739 |
|
|
740 |
|
def is_base_period_timestamp_exists(base_period_data): |
741 |
|
timestamps = base_period_data['timestamps'] |
742 |
|
|
743 |
|
if len(timestamps) == 0: |
744 |
|
return False |
745 |
|
|
746 |
|
for timestamp in timestamps: |
747 |
|
if len(timestamp) > 0: |
748 |
|
return True |
749 |
|
|
750 |
|
return False |
751 |
|
|
myems-api/excelexporters/metercost.py 1 location
|
@@ 738-748 (lines=11) @@
|
735 |
|
return number |
736 |
|
|
737 |
|
|
738 |
|
def is_base_period_timestamp_exists(base_period_data): |
739 |
|
timestamps = base_period_data['timestamps'] |
740 |
|
|
741 |
|
if len(timestamps) == 0: |
742 |
|
return False |
743 |
|
|
744 |
|
for timestamp in timestamps: |
745 |
|
if len(timestamp) > 0: |
746 |
|
return True |
747 |
|
|
748 |
|
return False |
749 |
|
|
myems-api/excelexporters/offlinemeterplan.py 1 location
|
@@ 738-748 (lines=11) @@
|
735 |
|
return number |
736 |
|
|
737 |
|
|
738 |
|
def is_base_period_timestamp_exists(base_period_data): |
739 |
|
timestamps = base_period_data['timestamps'] |
740 |
|
|
741 |
|
if len(timestamps) == 0: |
742 |
|
return False |
743 |
|
|
744 |
|
for timestamp in timestamps: |
745 |
|
if len(timestamp) > 0: |
746 |
|
return True |
747 |
|
|
748 |
|
return False |
749 |
|
|
myems-api/excelexporters/virtualmeterplan.py 1 location
|
@@ 738-748 (lines=11) @@
|
735 |
|
return number |
736 |
|
|
737 |
|
|
738 |
|
def is_base_period_timestamp_exists(base_period_data): |
739 |
|
timestamps = base_period_data['timestamps'] |
740 |
|
|
741 |
|
if len(timestamps) == 0: |
742 |
|
return False |
743 |
|
|
744 |
|
for timestamp in timestamps: |
745 |
|
if len(timestamp) > 0: |
746 |
|
return True |
747 |
|
|
748 |
|
return False |
749 |
|
|
myems-api/excelexporters/offlinemeterenergy.py 1 location
|
@@ 738-748 (lines=11) @@
|
735 |
|
return number |
736 |
|
|
737 |
|
|
738 |
|
def is_base_period_timestamp_exists(base_period_data): |
739 |
|
timestamps = base_period_data['timestamps'] |
740 |
|
|
741 |
|
if len(timestamps) == 0: |
742 |
|
return False |
743 |
|
|
744 |
|
for timestamp in timestamps: |
745 |
|
if len(timestamp) > 0: |
746 |
|
return True |
747 |
|
|
748 |
|
return False |
749 |
|
|
myems-api/excelexporters/virtualmetersaving.py 1 location
|
@@ 738-748 (lines=11) @@
|
735 |
|
return number |
736 |
|
|
737 |
|
|
738 |
|
def is_base_period_timestamp_exists(base_period_data): |
739 |
|
timestamps = base_period_data['timestamps'] |
740 |
|
|
741 |
|
if len(timestamps) == 0: |
742 |
|
return False |
743 |
|
|
744 |
|
for timestamp in timestamps: |
745 |
|
if len(timestamp) > 0: |
746 |
|
return True |
747 |
|
|
748 |
|
return False |
749 |
|
|
myems-api/excelexporters/offlinemetersaving.py 1 location
|
@@ 738-748 (lines=11) @@
|
735 |
|
return number |
736 |
|
|
737 |
|
|
738 |
|
def is_base_period_timestamp_exists(base_period_data): |
739 |
|
timestamps = base_period_data['timestamps'] |
740 |
|
|
741 |
|
if len(timestamps) == 0: |
742 |
|
return False |
743 |
|
|
744 |
|
for timestamp in timestamps: |
745 |
|
if len(timestamp) > 0: |
746 |
|
return True |
747 |
|
|
748 |
|
return False |
749 |
|
|
myems-api/excelexporters/metercarbon.py 1 location
|
@@ 738-748 (lines=11) @@
|
735 |
|
return number |
736 |
|
|
737 |
|
|
738 |
|
def is_base_period_timestamp_exists(base_period_data): |
739 |
|
timestamps = base_period_data['timestamps'] |
740 |
|
|
741 |
|
if len(timestamps) == 0: |
742 |
|
return False |
743 |
|
|
744 |
|
for timestamp in timestamps: |
745 |
|
if len(timestamp) > 0: |
746 |
|
return True |
747 |
|
|
748 |
|
return False |
749 |
|
|
myems-api/excelexporters/virtualmeterenergy.py 1 location
|
@@ 737-747 (lines=11) @@
|
734 |
|
return number |
735 |
|
|
736 |
|
|
737 |
|
def is_base_period_timestamp_exists(base_period_data): |
738 |
|
timestamps = base_period_data['timestamps'] |
739 |
|
|
740 |
|
if len(timestamps) == 0: |
741 |
|
return False |
742 |
|
|
743 |
|
for timestamp in timestamps: |
744 |
|
if len(timestamp) > 0: |
745 |
|
return True |
746 |
|
|
747 |
|
return False |
748 |
|
|
myems-api/excelexporters/equipmentoutput.py 1 location
|
@@ 737-747 (lines=11) @@
|
734 |
|
return number |
735 |
|
|
736 |
|
|
737 |
|
def is_base_period_timestamp_exists(base_period_data): |
738 |
|
timestamps = base_period_data['timestamps'] |
739 |
|
|
740 |
|
if len(timestamps) == 0: |
741 |
|
return False |
742 |
|
|
743 |
|
for timestamp in timestamps: |
744 |
|
if len(timestamp) > 0: |
745 |
|
return True |
746 |
|
|
747 |
|
return False |
748 |
|
|