N11'e Ürün Ekleme Botu
Arkadaşlar bu yazımda size alıntı yaptığım bir programın kodlarını paylaşacağım . N11 e ürün ekleme botu ile dizi değişken kullanarak dosya içindeki veriden bile sırayla otomatik olarak ürünlerinizi import edebilirsiniz. Takıldığınız yer olursa yorum bırakın hemen dönüş yaparım.
Program Linki: http://bc.vc/yGJPcIo
Program Kaynak Kodları :
def N11_ENVELOPE = ["xmlns:sch":"************"] // n11 icin gereken namespace gelecetir.
Map N11_CALL_PROPERTIES = [connectTimeout:5000, readTimeout:50000, useCaches:false, followRedirects:false, sslTrustAllCerts:true]
def index() {
def client = new SOAPClient('**********') // n11. icin gereken Product Url gelecektir.
def responseSoap = client.send(N11_CALL_PROPERTIES) {
envelopeAttributes N11_ENVELOPE
body {
"sch:SaveProductRequest" {
auth{
appKey('*******************') // Buraya N11 size vermis oldugu appKey gelecektir.
appSecret('*******************') // Burada ise N11 size vermis oldugu appSecretKey olacaktir.
}
product{
productSellerCode ('123')
title ('Apple')
subtitle('Apple Bilgisayar')
description('Apple Bilgisayar icin gerekli description')
category{ id('******') // categori id gelmesi gerekiyor.
}
price('259.99')
currencyType('TL')
images{
image{ url('http://www.pcdepo.com/images/urunler/gallery1-8178.jpg') }
}
approvalStatus(1)
attributes{ // Burada Elektronik icin gerekli ozellikleri girilmesi gerekiyor.
attribute{
name("Marka")
value("Apple")
}
attribute{
name("Disk Kapasitesi")
value("1 Tb")
}
attribute{
name("İşlemci")
value("Intel Core İ5")
}
attribute{
name("İşletim Sistemi")
value("Mac Os")
}
attribute{
name("Ekran Boyutu")
value("16'' İnç")
}
}
saleStartDate('2016-12-31')
saleEndDate('2017-12-31')
productionDate('2016-12-31')
expirationDate('2018-12-31')
productCondition(1)
preparingDay(10)
discount{
startDate("17-05-2017")
endDate("17-05-2018")
}
shipmentTemplate('mng') //
stockItems{
stockItem {
bundle(0)
mpn("")
gtin('*********') //Gecerli Bir Gtin girilmesi gerekiyor.
quantity('10')
sellerStockCode('123')
}
}
}
}
}
}
return null
}
Yorumlar
Yorum Gönder