Subject | Hash | Author | Date (UTC) |
---|---|---|---|
Changed the EAN type from UPC to GTIN_13 which is the correct one. | ea74c1d8c001ae6895f07bbecbcb9a0898400b95 | Sebastian Fricke | 2019-04-15 13:04:54 |
Added usage instructions in english and german language. | e2f291e2a00ac9283ab9d843e652d7b77fa6bbaf | Sebastian Fricke | 2019-04-15 09:59:36 |
Added usage instructions in english and german language. | 30646f203ae8847cfa4971cb62187dca8406b8d7 | Sebastian Fricke | 2019-04-15 09:58:26 |
Fixed small compilation mistakes concerning positional arguments | dc011ec52cf578e2910edde1aeacb893bb2e57f9 | Sebastian Fricke | 2019-04-15 07:16:14 |
Fixed a problem with the Upload folder when the executable is within its Folder outside of the root | 6ca74a5bbbf13036405c654225de2540cddf2ed0 | Sebastian Fricke | 2019-04-15 07:02:13 |
Small improvements with the error handling inside item_upload.py | 8d8361aa6ca7fca69407fb6c2f7450a9fd3ad40d | LagerBadel PC:Magdalena | 2019-04-12 12:31:39 |
Fixed the Windows Version because of corrupted Sym Links from the Windows Version | 21c1d49e6508a27e3ba86741843c4141e09be2ee | Sebastian Fricke | 2019-04-12 11:57:28 |
The push from the windows machine corrupted the Linux Version, it is now re compiled. | 1a642842228b959ad9ca1253b6e0df25d75e3d67 | Sebastian Fricke | 2019-04-12 09:34:27 |
Added a executable File | db4d6f812ada2d497e2ffa255ddf62fd88c98e9f | Sebastian Fricke | 2019-04-12 08:24:14 |
current working version 10-04-19 | f57799f6815c8c76217f64e292d6cf61e0deffb7 | Sebastian Fricke | 2019-04-10 14:40:36 |
Changed the collection_name field to the newer seasons field in the property upload | b13a2282d20e97f6f414e02ace9673246678adc4 | Sebastian Fricke | 2019-03-29 09:59:05 |
Added a feature upload and removed a test print from the barcode upload | b04dc65a93ff10c650cdaf48d1a7922ff4769ecc | Sebastian Fricke | 2019-03-28 14:57:54 |
Added FNSKU code and removed freetext fields to replace them with properties | 4f77496d60be1afbd90a7279b14643267b4430cc | Sebastian Fricke | 2019-03-27 11:09:55 |
Added FNSKU code and removed freetext fields to replace them with properties | 3d76e8769337dd96fa02503eb242fd192f3c148d | Sebastian Fricke | 2019-03-27 11:06:41 |
Update to property Upload because it isn't necessary to have a property for each material | 37c01ce472dc85a9f7a39bd164a2ea53c28b4955 | Sebastian Fricke | 2019-03-18 16:08:14 |
added a filter for items with only 1 size that currently works with single parent child combinations | fd3bf2b659614d5518884eb3da77b564cd0018eb | Sebastian Fricke | 2019-02-28 16:08:57 |
Market connection adjusted to AmazonFBA | 1feb4b2e96c6a55ad0494696fd18fd6fb42babb0 | Sebastian Fricke | 2019-02-25 12:21:05 |
current version Feb 2019 | 00b24836dd378f21942ed323c2b66f928b9fb4c4 | Sebastian Fricke | 2019-02-25 09:00:00 |
Changes to fit to the new flatfile format | 91cd339571f607e88f6e922f1a47630c4c8d62a7 | Sebastian Fricke | 2019-02-08 13:28:02 |
Small removal of redundant code | b271de0b1be1d83be088b00a35b5618af088b58a | Sebastian Fricke | 2019-01-30 18:08:15 |
File | Lines added | Lines deleted |
---|---|---|
packages/variation_upload.py | 1 | 1 |
File packages/variation_upload.py changed (mode: 100644) (index ee4989f..030fb40) | |||
... | ... | def EANUpload(flatfile, export, stocklist, folder): | |
144 | 144 | column_names = ['BarcodeID', 'BarcodeName', 'BarcodeType', | column_names = ['BarcodeID', 'BarcodeName', 'BarcodeType', |
145 | 145 | 'Code', 'VariationID', 'VariationNumber'] | 'Code', 'VariationID', 'VariationNumber'] |
146 | 146 | ||
147 | barcode_types = {'EAN' : {'id' : 3, 'name' : 'UPC', 'type' : 'UPC'}, | ||
147 | barcode_types = {'EAN' : {'id' : 1, 'name' : 'EAN', 'type' : 'GTIN_13'}, | ||
148 | 148 | 'FNSKU' : {'id' : 5, 'name' : 'FNSKU', 'type' : 'EAN_13'}} | 'FNSKU' : {'id' : 5, 'name' : 'FNSKU', 'type' : 'EAN_13'}} |
149 | 149 | Data = {} | Data = {} |
150 | 150 | with open(flatfile, mode='r') as item: | with open(flatfile, mode='r') as item: |