Skocz do zawartości

unkas

Użytkownik
  • Liczba zawartości

    7
  • Rejestracja

  • Ostatnia wizyta

unkas's Achievements

1

Reputacja

  1. Czy jest możliwość by w aukcjach wystawionych-trwających sortowanie listy aukcji było po wadze towaru? Oczywiście pod warunkiem że dany towar ma podaną swoją wagę w subiekcie.
  2. Jedynie problem występuje jeżeli ktoś zamiast komórkowego podał stacjonarny i trzeba ręcznie poprawić, ale mało co kiedy się zdarza. Ja się zastanawiam dlaczego do dzisiaj nie ma automatycznej integracji z api poczty. Ostatnio testuje różne programy innych firm, dla łatwiejszej obsługi zamówień, i mają wiele rzeczy których według mnie w sello brak a były by pomocne, w tym integracje z pocztą, to mają znowu inne minusy jak synchronizacja z magazynem w subiekcie. A zlecenie napisania systemu pod siebie znowu za dużo PLNów kosztuje . Szkoda że insert nie stawia na większy rozwój sello
  3. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:s="http://www.sello.pl/export"> <!--POCZTEX--> <!--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> <!--Rodzaj serwisu przesyłki Pocztex-N: E – Ekspres K – Kurier--> <xsl:variable name="RodzajPrzesylki">E</xsl:variable> <!--Termin-serwis dla przesyłki: A – Miejski do 3h - do 5 km B – Miejski do 3h - do 10 km C – Miejski do 3h - do 15 km D – Miejski do 3h - powyżej 15 km E – Miejski do 4h - do 10 km F – Miejski do 4h - do 15 km G – Miejski do 4h - do 20 km H – Miejski do 4h - do 30 km J – Miejski do 4h - do 40 km M – Krajowy R – Bezpośredni do 30 kg S – Bezpośredni powyżej 30 do 100 kg X – Ekspres 24--> <xsl:variable name="Termin">X</xsl:variable> <!--Forma przekazania kwoty pobrania: P – Na wskazany adres S – Na rachunek bankowy--> <xsl:variable name="SposobPobrania">S</xsl:variable> <!--Sposób powiadomienia adresata przesyłki. Jeśli pole jest puste, to powiadomienie nie jest wysyłane. M – SMS E – E-mail--> <xsl:variable name="FormaPowiadomieniaAdresata">M</xsl:variable> <!--Opis dla danej paczki. Pole z dowolną zawartością nie przekraczającą długości 40 znaków--> <xsl:template name="Opis"> <xsl:value-of select="substring(s:Customer/s:Nick,0,15)"/> </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> <xsl:if test="$FormaPowiadomieniaAdresata!=''"> <xsl:element name="Atrybut"> <xsl:attribute name="Typ"/> <xsl:attribute name="Nazwa">FormaPowiadomieniaAdresata</xsl:attribute> <xsl:value-of select="$FormaPowiadomieniaAdresata"/> </xsl:element> <xsl:element name="Atrybut"> <xsl:attribute name="Typ"/> <xsl:attribute name="Nazwa">KontaktPowiadomieniaAdresata</xsl:attribute> <xsl:choose> <xsl:when test="$FormaPowiadomieniaAdresata='M'"> <xsl:variable name="phone" select="translate(s:DeliveryAddress/s:PhoneNumber,'- ()/','')"/> <xsl:variable name="phone2" select="format-number(substring($phone,string-length($phone)-8,9),'000000000')"/> <xsl:value-of select="$phone2"/> </xsl:when> <xsl:when test="$FormaPowiadomieniaAdresata='E'"> <xsl:value-of select="s:DeliveryAddress/s:Email"/> </xsl:when> </xsl:choose> </xsl:element> </xsl:if> <!--Atrybuty specyficzne dla przesyłki 834--> <xsl:element name="Atrybut"> <xsl:attribute name="Typ"/> <xsl:attribute name="Nazwa">Symbol</xsl:attribute>834</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">Ilosc</xsl:attribute>1</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="round(number(s:Weight)*1000)"/> </xsl:element> </xsl:if> <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:if test="$RodzajPrzesylki!=''"> <xsl:element name="Atrybut"> <xsl:attribute name="Typ"/> <xsl:attribute name="Nazwa">Serwis</xsl:attribute> <xsl:value-of select="$RodzajPrzesylki"/> </xsl:element> </xsl:if> <xsl:if test="$Termin!=''"> <xsl:element name="Atrybut"> <xsl:attribute name="Typ"/> <xsl:attribute name="Nazwa">Termin</xsl:attribute> <xsl:value-of select="$Termin"/> </xsl:element> </xsl:if> <xsl:element name="Atrybut"> <xsl:attribute name="Typ"/> <xsl:attribute name="Nazwa">CzyOplacaOdbiorca</xsl:attribute>N</xsl:element> <xsl:if test="s:DeliveryMethod/s:IsPayOnDelivery=1"> <xsl:element name="Atrybut"> <xsl:attribute name="Typ"/> <xsl:attribute name="Nazwa">Uslugi</xsl:attribute>P</xsl:element> <xsl:element name="Atrybut"> <xsl:attribute name="Typ"/> <xsl:attribute name="Nazwa">SposobPobrania</xsl:attribute> <xsl:value-of select="$SposobPobrania"/> </xsl:element> <xsl:if test="s:Charge"> <xsl:element name="Atrybut"> <xsl:attribute name="Typ"/> <xsl:attribute name="Nazwa">KwotaPobrania</xsl:attribute> <xsl:value-of select="round(number(s:Charge)*100)"/> </xsl:element> </xsl:if> </xsl:if> <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">Uwagi</xsl:attribute> <xsl:value-of select="$description"/> </xsl:element> </xsl:if> </xsl:element> </xsl:template> </xsl:stylesheet>
  4. zarówno pocztex 24 jak i 48. Postaram się wieczorem wrzucić na forum . A jak pamiętam to chyba i z forum go zaczerpnąłem
  5. Ja chyba od ponad roku eksportuje przesyłki do EN, w tym głównie pocztexy, i nie mam tutaj żadnych problemów z wspomnianym numerem telefonu. Normalnie jest eksportowany jak cała reszta danych.
  6. Witam Mam pytanie odnośnie eksportu do EN. Od niedawna korzystam z sello, i chciałbym sobie jak najbardziej zautomatyzować pracę. Dziennie wysyłam ok 100 przesyłek (pocztex48, pocztex24) Czy jest na obecną chwile możliwe skonfigurowanie wszystkie w sposób by po utworzeniu dokumentu końcowego do danej transakcji, klikając "Utwórz paczkę" automatycznie od razu tworzyła i drukowała się etykieta nadawcza na przesyłkę, zwracając do sello numer nadania?
  7. Witam Pozwolę podłączyć się pod temat. Korzystam z subiekta GT 1.29, i przy instalacji sello w żadnym miejscu nie natrafiłem na opcję-możliwość stworzenia bez danych pod sello. Zarówno przy instalacji, jak również jak wcześniej ktoś tu opisał przy odpalaniu programu. Będę wdzięczny za nakierowanie - pomoc.
×
×
  • Dodaj nową pozycję...