initBasti / Amazon2PlentySync (public) (License: GPLv3) (since 2019-01-27) (hash sha1)
Transfer your data from you Amazon Flatfile spreadsheet over to the Plentymarkets system. How to is included in the readme
List of commits:
Subject Hash Author Date (UTC)
Working Checkboxes and file import 25378c68a6220c1c6570642920e6150a50415153 Sebastian Fricke 2019-01-29 21:03:23
Added checkboxes, descriptions, import and runbutton 2021f0960e70c8c229ec08488165dc01b998a6e0 Sebastian Fricke 2019-01-27 22:19:18
Added market connection, cosmetics in product import c9a771d5e7a3a80adc650e773c568e00dd8e2aea Sebastian Fricke 2019-01-23 15:01:47
Amazon Data Upload 33dbd0ed6945c01d8917ceae3cf3964f051a2288 Sebastian Fricke 2019-01-22 14:43:39
Readme started, amazon sku upload, vari upload, images f43a9e83598c3e4623bcb08667e2b4e649b2cdea Sebastian Fricke 2019-01-22 10:44:40
Amazon SKU Upload 8586da2ae91d49c81a0d9b6ff220c8a1b1b011a6 Sebastian Fricke 2019-01-16 18:36:54
Inital Commit with current working version of the CLI Tool and the work in progress of the GUI. 207fef4277f7c169aa79eb39ec1aaaab258b888c Sebastian Fricke 2019-01-16 09:47:43
Initial commit ba965ee75fe09437fb08da5edd25b20e39e17eff Sebastian Fricke 2019-01-16 09:42:30
Commit 25378c68a6220c1c6570642920e6150a50415153 - Working Checkboxes and file import
Checkboxes now work depending on the status of different files in the
programm.
Author: Sebastian Fricke
Author date (UTC): 2019-01-29 21:03
Committer name: Sebastian Fricke
Committer date (UTC): 2019-01-29 21:03
Parent(s): 2021f0960e70c8c229ec08488165dc01b998a6e0
Signer:
Signing key:
Signing status: N
Tree: a639ca5f817c4c3d132725d5b753e1d0a781babc
File Lines added Lines deleted
.gitignore 1 0
packages/UploadGUI.py 18 11
product_import.py 1 1
File .gitignore changed (mode: 100644) (index 19ce6e7..8a64408)
... ... docs/_build/
58 58 target/ target/
59 59
60 60 Upload/ Upload/
61 /AmazonToPlenty.sublime-workspace
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
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/initBasti/Amazon2PlentySync

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/initBasti/Amazon2PlentySync

Clone this repository using git:
git clone git://git.rocketgit.com/user/initBasti/Amazon2PlentySync

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main