omg this is working

This commit is contained in:
Ben Miller
2024-11-13 23:43:32 -07:00
parent fb86c9c96d
commit a5c0a1176d
22 changed files with 2152 additions and 53 deletions

12
src/match.ts Normal file
View File

@ -0,0 +1,12 @@
import { Shop } from "./shopifyApi"
import { Product } from "./Product"
export function matchProductToShopify(row: number) {
console.log("row: " + row)
let product = new Product()
console.log(product)
product.ImportFromInventory(row)
console.log(product)
product.MatchToShopifyProduct(new Shop())
console.log(product)
}