File packages/UploadGUI.py changed (mode: 100644) (index 8c5ef97..7fdcb7f) |
... |
... |
class ImportArea(tk.Frame): |
30 |
30 |
|
|
31 |
31 |
for clm, name in enumerate(self.names): |
for clm, name in enumerate(self.names): |
32 |
32 |
self.button.append(tk.Button(self, text=name, |
self.button.append(tk.Button(self, text=name, |
33 |
|
command=lambda path = self.paths[clm]:self.getPath(path))) |
|
|
33 |
|
command=lambda number = clm, path = self.paths:self.getPath(number, path))) |
34 |
34 |
self.button[-1].grid(sticky='WENS', row=0, column=clm, padx=1, pady=1) |
self.button[-1].grid(sticky='WENS', row=0, column=clm, padx=1, pady=1) |
35 |
35 |
|
|
36 |
|
def getPath(self, var): |
|
37 |
|
var = askopenfilename() |
|
|
36 |
|
def getPath(self, num, var): |
|
37 |
|
var[num] = askopenfilename() |
|
38 |
|
for i, s in enumerate(self.paths): |
|
39 |
|
if self.paths[i] and i == 0: |
|
40 |
|
print(self.paths[i]) |
|
41 |
|
app.checkArea.button[0].configure(state="normal") |
|
42 |
|
app.checkArea.button[1].configure(state="normal") |
|
43 |
|
if self.paths[i] and i == 2: |
|
44 |
|
app.checkArea.button[2].configure(state="normal") |
|
45 |
|
app.checkArea.button[3].configure(state="normal") |
|
46 |
|
app.checkArea.button[4].configure(state="normal") |
|
47 |
|
app.checkArea.button[6].configure(state="normal") |
|
48 |
|
app.checkArea.button[7].configure(state="normal") |
|
49 |
|
app.checkArea.button[8].configure(state="normal") |
|
50 |
|
if self.paths[i] and i == 3: |
|
51 |
|
app.checkArea.button[5].configure(state="normal") |
|
52 |
|
|
38 |
53 |
|
|
39 |
54 |
|
|
40 |
55 |
# inherits from the tkinter class Frame |
# inherits from the tkinter class Frame |
|
... |
... |
class UploadGUI(tk.Tk): |
129 |
144 |
self.checkArea = CheckBoxArea(master=self) |
self.checkArea = CheckBoxArea(master=self) |
130 |
145 |
self.checkArea.grid(row=1, column=0) |
self.checkArea.grid(row=1, column=0) |
131 |
146 |
|
|
132 |
|
for num, button in enumerate(self.checkArea.button): |
|
133 |
|
if(self.importArea.paths[0] and num < 2): |
|
134 |
|
button.configure(state="normal") |
|
135 |
|
if(self.importArea.paths[2] and ((num > 1 and num < 5) or num == 8)): |
|
136 |
|
button.configure(state="normal") |
|
137 |
|
if(self.importArea.paths[3] and (num > 3 and num < 8)): |
|
138 |
|
button.configure(state="normal") |
|
139 |
|
|
|
140 |
147 |
self.exeArea = ExecutionArea(master=self, |
self.exeArea = ExecutionArea(master=self, |
141 |
148 |
itemvar=self.checkArea.itembox, |
itemvar=self.checkArea.itembox, |
142 |
149 |
variationvar=self.checkArea.variationbox, |
variationvar=self.checkArea.variationbox, |
File product_import.py changed (mode: 100644) (index d9dd4a4..e7dcd5d) |
... |
... |
def main(): |
64 |
64 |
stocklist = askopenfilename() |
stocklist = askopenfilename() |
65 |
65 |
print("spreadsheet csv containing the current stock : ", stocklist) |
print("spreadsheet csv containing the current stock : ", stocklist) |
66 |
66 |
|
|
67 |
|
stockUpload(sheet, export, stocklist) |
|
|
67 |
|
stockUpload(sheet, stocklist) |
68 |
68 |
|
|
69 |
69 |
print("\nCreate a upload file for the SKU and Parent_SKU\nto connect existing items from amazon to plentyMarkets.\n") |
print("\nCreate a upload file for the SKU and Parent_SKU\nto connect existing items from amazon to plentyMarkets.\n") |
70 |
70 |
|
|