working version checkin
* add config class * add vlookup * add menu * add photo folder creation * add prep for product templates
This commit is contained in:
10
src/config.ts
Normal file
10
src/config.ts
Normal file
@ -0,0 +1,10 @@
|
||||
class Config {
|
||||
productPhotosFolderId: string
|
||||
|
||||
constructor() {
|
||||
let ss = SpreadsheetApp.getActive()
|
||||
let s = ss.getSheetByName("vars")
|
||||
|
||||
this.productPhotosFolderId = vlookupByColumns("vars", "key", "productPhotosFolderId", "value")
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user