working version checkin

*  add config class
*  add vlookup
*  add menu
*  add photo folder creation
*  add prep for product templates
This commit is contained in:
Ben Miller
2024-11-04 20:44:19 -07:00
parent b6b75e426c
commit 20a5e738f7
7 changed files with 142 additions and 0 deletions

7
src/initMenu.ts Normal file
View File

@ -0,0 +1,7 @@
function initMenu() {
let ui = SpreadsheetApp.getUi()
ui.createMenu("BLM")
.addItem("Fill out product from template", "fillProductFromTemplate")
.addItem("Create missing photo folders", "createMissingPhotoFolders")
.addToUi()
}