Skocz do zawartości

blauermax

Użytkownik
  • Liczba zawartości

    8
  • Rejestracja

  • Ostatnia wizyta

blauermax's Achievements

0

Reputacja

  1. Używam tego exportu tylko dla przesyłki poleconej: -polecony list ekonomiczny -polecony list priorytetowy do e-przesyłki odbiór w punkcie używam oddzielnej i tam muszę niestety klikać z palca wybrany urząd pocztowy przez klienta.
  2. to jest cały kod, szczerze mówiąc to nie za bardzo znam się na transformatach itd. dla tego proszę jak ktoś ma o gotową bo sam nie jestem w stanie za wiele w niej zmienić
  3. u mnie też bez zmian dalej wolno pobiera pełne dane i formularze...
  4. Działała ale od dłuższego czasu nie działa do końca.W elektronicznym nadawcy były jakieś zmiany,od tamtej pory pokazuję się błąd Niedopuszczalna wartość dla obszaru oddawczego (miejscowa/zamiejscowa). (EN:33113) pomaga klikniecie w przesyłkę i jej zapisanie, dopiero wtedy zostaje nadany nr przesyłce i przy zbiorowym exporcie trzeba prze klikać każda paczkę- list polecony. Wcześniej robiłem zbiorowy export, wszystko w zbiorze się zgadzało i od razu można było drukować listy.
  5. Nie wiem czy będzie się komuś chciało ale mam taka transformatę do przesyłek poleconych jak poniżej i EN przy każdym liście wymaga zapisania żeby nadać nr przesyłki a przedtem wyrzuca taki błąd: Niedopuszczalna wartość dla obszaru oddawczego (miejscowa/zamiejscowa). (EN:33113) transformata z jakiej korzystam do : <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:s="http://www.sello.pl/export"> <!--Przesyłka polecona--> <!--Informuje o tym, czy jest przesyłką „firmową”: T – tak N – nie--> <xsl:variable name="Firmowa">N</xsl:variable> <!--Informuje o tym, czy jest przesyłką „miejscową”: T – tak N – nie--> <xsl:variable name="Miejscowa">N</xsl:variable> <!--Informuje o tym, czy jest przesyłką „ubezpieczoną”: T – tak N – nie--> <xsl:variable name="Ubezpieczona">N</xsl:variable> <!--Oznaczenie umowy na podstawie, której nadawane są przesyłki pocztowe (idUmowyMRUMC).--> <xsl:variable name="NrUmowy"></xsl:variable> <!--Oznaczenie Karty na podstawie, której nadawane są przesyłki pocztowe (idKartyMRUMR).--> <xsl:variable name="KartaUmowy"></xsl:variable> <!--Dotyczy gabarytu przesyłki: A – gabaryt A B – gabaryt B--> <xsl:variable name="Gabaryt">B</xsl:variable> <!--Opis dla danej paczki. Pole z dowolną zawartością nie przekraczającą długości 40 znaków--> <xsl:template name="Opis">Paczka nr <xsl:value-of select="s:Symbol"/></xsl:template> <xsl:param name="Year"/> <xsl:param name="Month"/> <xsl:param name="Day"/> <xsl:param name="Hour"/> <xsl:param name="Minute"/> <xsl:param name="Second"/> <xsl:template match="s:ExportData"> <xsl:element name="Nadawca"> <xsl:attribute name="Struktura">1.6</xsl:attribute> <xsl:attribute name="Nazwa"> <xsl:value-of select="s:Company/s:Address/s:Company"/> </xsl:attribute> <xsl:attribute name="NazwaSkrocona"> <xsl:variable name="companyName" select="s:Company/s:Address/s:Company"/> <xsl:value-of select="substring($companyName,0,10)"/> </xsl:attribute> <xsl:attribute name="Ulica"> <xsl:value-of select="s:Company/s:Address/s:Street"/> </xsl:attribute> <xsl:attribute name="Dom"> <xsl:value-of select="s:Company/s:Address/s:HouseNumber"/> </xsl:attribute> <xsl:attribute name="Lokal"> <xsl:value-of select="s:Company/s:Address/s:FlatNumber"/> </xsl:attribute> <xsl:attribute name="Miejscowosc"> <xsl:value-of select="s:Company/s:Address/s:City"/> </xsl:attribute> <xsl:attribute name="Kod"> <xsl:value-of select="translate(s:Company/s:Address/s:ZipCode,'- ','')"/> </xsl:attribute> <xsl:attribute name="NIP"> <xsl:value-of select="translate(s:Company/s:Address/s:NIP,'- ','')"/> </xsl:attribute> <xsl:attribute name="Zrodlo">NADAWCA</xsl:attribute> <xsl:attribute name="Guid"> <xsl:value-of select="s:Company/s:GUID"/> </xsl:attribute> <xsl:element name="Zbior"> <xsl:attribute name="Nazwa"> <xsl:value-of select="concat(format-number($Day,'00'),'-',format-number($Month,'00'),'-',$Year,'\1')"/> </xsl:attribute> <xsl:attribute name="DataUtworzenia"> <xsl:value-of select="concat($Year,'-',format-number($Month,'00'),'-',format-number($Day,'00'),'T',format-number($Hour,'00'),':',format-number($Minute,'00'),':',format-number($Second,'00'))"/> </xsl:attribute> <xsl:attribute name="Opis">Jakis dowolny opis</xsl:attribute> <xsl:attribute name="IloscPrzesylek"> <xsl:value-of select="count(s:Package)"/> </xsl:attribute> <xsl:attribute name="Guid"> <xsl:value-of select="s:GUID"/> </xsl:attribute> <xsl:apply-templates select="s:Package"/> </xsl:element> </xsl:element> </xsl:template> <xsl:template match="s:Package"> <xsl:element name="Przesylka"> <xsl:attribute name="Guid"> <xsl:value-of select="s:GUID"/> </xsl:attribute> <xsl:element name="Atrybut"> <xsl:attribute name="Typ">Adresat</xsl:attribute> <xsl:attribute name="Nazwa">Nazwa</xsl:attribute> <xsl:choose> <xsl:when test="s:DeliveryAddress/s:Company!=''"> <xsl:value-of select="s:DeliveryAddress/s:Company"/> </xsl:when> <xsl:otherwise> <xsl:value-of select="s:DeliveryAddress/s:Name"/> </xsl:otherwise> </xsl:choose> </xsl:element> <xsl:if test="s:DeliveryAddress/s:Company!='' and s:DeliveryAddress/s:Name!=''"> <xsl:element name="Atrybut"> <xsl:attribute name="Typ">Adresat</xsl:attribute> <xsl:attribute name="Nazwa">NazwaII</xsl:attribute> <xsl:value-of select="s:DeliveryAddress/s:Name"/> </xsl:element> </xsl:if> <xsl:element name="Atrybut"> <xsl:attribute name="Typ">Adresat</xsl:attribute> <xsl:attribute name="Nazwa">Ulica</xsl:attribute> <xsl:value-of select="s:DeliveryAddress/s:Street"/> </xsl:element> <xsl:element name="Atrybut"> <xsl:attribute name="Typ">Adresat</xsl:attribute> <xsl:attribute name="Nazwa">Dom</xsl:attribute> <xsl:value-of select="s:DeliveryAddress/s:HouseNumber"/> </xsl:element> <xsl:element name="Atrybut"> <xsl:attribute name="Typ">Adresat</xsl:attribute> <xsl:attribute name="Nazwa">Lokal</xsl:attribute> <xsl:value-of select="s:DeliveryAddress/s:FlatNumber"/> </xsl:element> <xsl:element name="Atrybut"> <xsl:attribute name="Typ">Adresat</xsl:attribute> <xsl:attribute name="Nazwa">Miejscowosc</xsl:attribute> <xsl:value-of select="s:DeliveryAddress/s:City"/> </xsl:element> <xsl:element name="Atrybut"> <xsl:attribute name="Typ">Adresat</xsl:attribute> <xsl:attribute name="Nazwa">Kod</xsl:attribute> <xsl:value-of select="translate(s:DeliveryAddress/s:ZipCode,'- ','')"/> </xsl:element> <xsl:element name="Atrybut"> <xsl:attribute name="Typ">Adresat</xsl:attribute> <xsl:attribute name="Nazwa">Kraj</xsl:attribute> <xsl:choose> <xsl:when test="s:DeliveryAddress/s:Country=''">Polska</xsl:when> <xsl:otherwise> <xsl:value-of select="s:DeliveryAddress/s:Country"/> </xsl:otherwise> </xsl:choose> </xsl:element> <!--Atrybuty specyficzne dla przesyłki 845--> <xsl:element name="Atrybut"> <xsl:attribute name="Typ"/> <xsl:attribute name="Nazwa">Symbol</xsl:attribute>845</xsl:element> <xsl:element name="Atrybut"> <xsl:attribute name="Typ"/> <xsl:attribute name="Nazwa">Firmowa</xsl:attribute> <xsl:value-of select="$Firmowa"/> </xsl:element> <xsl:element name="Atrybut"> <xsl:attribute name="Typ"/> <xsl:attribute name="Nazwa">Miejscowa</xsl:attribute> <xsl:value-of select="$Miejscowa"/> </xsl:element> <xsl:element name="Atrybut"> <xsl:attribute name="Typ"/> <xsl:attribute name="Nazwa">Ubezpieczona</xsl:attribute> <xsl:value-of select="$Ubezpieczona"/> </xsl:element> <xsl:element name="Atrybut"> <xsl:attribute name="Typ"/> <xsl:attribute name="Nazwa">Kategoria</xsl:attribute> <xsl:choose> <xsl:when test="s:DeliveryMethod/s:Priority=1">P</xsl:when> <xsl:otherwise>E</xsl:otherwise> </xsl:choose> </xsl:element> <xsl:if test="$NrUmowy!=''"> <xsl:element name="Atrybut"> <xsl:attribute name="Typ"/> <xsl:attribute name="Nazwa">Umowa</xsl:attribute> <xsl:value-of select="$NrUmowy"/> </xsl:element> </xsl:if> <xsl:if test="$KartaUmowy!=''"> <xsl:element name="Atrybut"> <xsl:attribute name="Typ"/> <xsl:attribute name="Nazwa">KartaUmowy</xsl:attribute> <xsl:value-of select="$KartaUmowy"/> </xsl:element> </xsl:if> <xsl:element name="Atrybut"> <xsl:attribute name="Typ"/> <xsl:attribute name="Nazwa">PosteRestante</xsl:attribute> <xsl:choose> <xsl:when test="s:DeliveryMethod/s:PosteRestante=1">T</xsl:when> <xsl:otherwise>N</xsl:otherwise> </xsl:choose> </xsl:element> <xsl:if test="s:Weight"> <xsl:element name="Atrybut"> <xsl:attribute name="Typ"/> <xsl:attribute name="Nazwa">Masa</xsl:attribute> <xsl:value-of select="350"/> </xsl:element> </xsl:if> <xsl:element name="Atrybut"> <xsl:attribute name="Typ"/> <xsl:attribute name="Nazwa">Ilosc</xsl:attribute>1</xsl:element> <xsl:if test="s:SendingNumber!=''"> <xsl:element name="Atrybut"> <xsl:attribute name="Typ"/> <xsl:attribute name="Nazwa">NrNadania</xsl:attribute> <xsl:value-of select="translate(s:SendingNumber,'- ','')"/> </xsl:element> </xsl:if> <xsl:element name="Atrybut"> <xsl:attribute name="Typ"/> <xsl:attribute name="Nazwa">DlaOciemn</xsl:attribute>N</xsl:element> <xsl:element name="Atrybut"> <xsl:attribute name="Typ"/> <xsl:attribute name="Nazwa">EgzBibl</xsl:attribute>N</xsl:element> <xsl:element name="Atrybut"> <xsl:attribute name="Typ"/> <xsl:attribute name="Nazwa">Uslugi</xsl:attribute>R</xsl:element> <xsl:element name="Atrybut"> <xsl:attribute name="Typ"/> <xsl:attribute name="Nazwa">Strefa</xsl:attribute> <xsl:value-of select="$Gabaryt"/> </xsl:element> <xsl:element name="Atrybut"> <xsl:attribute name="Typ"/> <xsl:attribute name="Nazwa">Wersja</xsl:attribute>1</xsl:element> <xsl:variable name="description"> <xsl:call-template name="Opis"/> </xsl:variable> <xsl:if test="$description!=''"> <xsl:element name="Atrybut"> <xsl:attribute name="Typ"/> <xsl:attribute name="Nazwa">Opis</xsl:attribute> <xsl:value-of select="$description"/> </xsl:element> </xsl:if> </xsl:element> </xsl:template> </xsl:stylesheet> Czy ktoś ma może gotową transformatę która działa przy E-Przesyłce odbiór w punkcie- zaciąga wybrany UP?
  6. Sello korzysta z obu, z tej wadliwej akurat do pobierania transakcji i to nie jest takie proste "skorzystać z innej funkcji", przecież to są tysiące linii kodu, sprawdzone, przetestowane, dopasowane do całego algorytmu pobierania i zmiana tego to nie jest podmiana jednej linijki, jak się wydaje komuś w Allegro. Czy z tej wadliwej pobiera tez formularze?
  7. Dziękuje za odpowiedzi , w takim razie odpuszczam sobie kombinowanie z parametrami wysyłania/odbierania danych i cierpliwie czekam. A z czasem może nowa opcja- pobierania formularzy po zakupowych dla niekompletnych transakcji??
  8. Witam, Też mam podobny problem, strasznie wolno pobiera formularze do transakcji i bardzo wiele jest wybrakowanych. 1) pobieranie transakcji 100%(5 do 10min)( zaciąga transakcje i formularze ale w większości są wybrakowane) 2) pobieram pełne dane i to już trwa wieki,formularze bardzo wolno się uzupełniają albo wcale, pomaga restart sello, ale tylko częściowo pojawiają się formularze których brakowało, a cały proces zaczyna się od nowa czyli: Pobieranie transakcji 100%- idzie szybko Pobieranie formularzy 100%- trwa około 1h nawet dłużej, w tym czasie nie pobiera nowych transakcji, a przy zaciągniętych bardzo wolno pojawiają się formularze. Są transakcje bez formularza,a po wiadomościach widać, że klient już dawno zapłacił. W jaki sposób można to przyśpieszyć, żeby zaciągał szybciej formularze, czy sello planuje jakieś zmiany,żeby proces pobierania formularzy pozwalał na realizowanie zamówień na bieżąco, czy jest to wina allegro?
×
×
  • Dodaj nową pozycję...