-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathMedlemslistor.gs
39 lines (31 loc) · 955 Bytes
/
Medlemslistor.gs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/**
* @author Emil Öhman <[email protected]>
* @website https://github.com/Scouterna
* @version 2022-12-30
*/
/**
* Funktion att använda för att enbart uppdatera en specifik
* medlemslista på en specifik rad
*/
function medlemslistorVissaRaderUppdateraEnbartTmp() {
ScoutnetSynkLib.uppdateraMedlemslistor(KONFIG_OBJECT, 5, 5);
}
/**
* Funktion att använda för att enbart skicka ut e-brev till
* en specifik medlemslista på en specifik rad
*/
function medlemslistorVissaRaderSkickaEnbartTmp() {
ScoutnetSynkLib.skickaUtTillMedlemslistor(KONFIG_OBJECT, 1, 1);
}
/**
* Funktion att använda för att uppdatera medlemslistor
*/
function medlemslistorUppdateraEnbart() {
ScoutnetSynkLib.uppdateraMedlemslistor(KONFIG_OBJECT, 1, 100);
}
/**
* Skapa kolumnrubriker i kalkylarket för konfiguration av Medlemslistor
*/
function skapaRubrikerMedlemslistor() {
ScoutnetSynkLib.skapaRubrikerMedlemslistor(KONFIG_OBJECT);
}