| 94 |
ashish |
1 |
'''
|
|
|
2 |
Created on 23-Mar-2010
|
|
|
3 |
|
|
|
4 |
@author: ashish
|
|
|
5 |
'''
|
| 8754 |
vikram.rag |
6 |
from shop2020.model.v1.catalog.impl.DataService import Insurer, SnapdealItem, Item
|
| 6511 |
kshitij.so |
7 |
from shop2020.thriftpy.model.v1.catalog.ttypes import Item, Category, \
|
|
|
8 |
SourceItemPricing, Source, ItemType, \
|
| 5110 |
mandeep.dh |
9 |
ProductNotificationRequest as TProductNotificationRequest, \
|
|
|
10 |
ProductNotificationRequestCount as TProductNotificationRequestCount, \
|
| 7281 |
kshitij.so |
11 |
VoucherItemMapping, EntityTag as TEntityTag, Banner as TBanner, BannerMap as TBannerMap, \
|
| 8182 |
amar.kumar |
12 |
Insurer as TInsurer, BrandInfo as TBrandInfo, Amazonlisted as TAmazonlisted, \
|
| 8739 |
vikram.rag |
13 |
EbayItem as TEbayItem, BannerUriMapping as TBannerUriMapping, Campaign as TCampaign, \
|
| 9724 |
kshitij.so |
14 |
SnapdealItem as TSnapdealItem, SnapdealItemDetails as TSnapdealItemDetails,ProductFeedSubmit as TProductFeedSubmit, \
|
| 9776 |
vikram.rag |
15 |
MarketplaceItems as TMarketplaceItems, MarketPlaceItemPrice as TMarketPlaceItemPrice
|
| 5110 |
mandeep.dh |
16 |
from shop2020.utils.Utils import to_java_date
|
| 94 |
ashish |
17 |
|
|
|
18 |
def to_t_item(item):
|
|
|
19 |
t_item = Item()
|
| 576 |
chandransh |
20 |
if item is None:
|
|
|
21 |
return t_item
|
| 94 |
ashish |
22 |
t_item.id = item.id
|
| 963 |
chandransh |
23 |
t_item.productGroup = item.product_group
|
|
|
24 |
t_item.brand = item.brand
|
| 591 |
chandransh |
25 |
t_item.modelNumber = item.model_number
|
|
|
26 |
t_item.modelName = item.model_name
|
| 609 |
chandransh |
27 |
t_item.color = item.color
|
| 591 |
chandransh |
28 |
t_item.category = item.category
|
| 122 |
ashish |
29 |
t_item.catalogItemId = item.catalog_item_id
|
|
|
30 |
t_item.weight = item.weight
|
|
|
31 |
t_item.featureId = item.feature_id
|
|
|
32 |
t_item.featureDescription = item.feature_description
|
|
|
33 |
if item.startDate:
|
|
|
34 |
t_item.startDate = to_java_date(item.startDate)
|
| 5217 |
amit.gupta |
35 |
if item.comingSoonStartDate:
|
|
|
36 |
t_item.comingSoonStartDate = to_java_date(item.comingSoonStartDate)
|
|
|
37 |
if item.expectedArrivalDate:
|
|
|
38 |
t_item.expectedArrivalDate = to_java_date(item.expectedArrivalDate)
|
| 122 |
ashish |
39 |
if item.addedOn:
|
|
|
40 |
t_item.addedOn = to_java_date(item.addedOn)
|
| 609 |
chandransh |
41 |
if item.updatedOn:
|
|
|
42 |
t_item.updatedOn = to_java_date(item.updatedOn)
|
| 122 |
ashish |
43 |
t_item.itemStatus = item.status
|
| 2035 |
rajveer |
44 |
t_item.status_description = item.status_description
|
| 501 |
rajveer |
45 |
if item.sellingPrice:
|
| 609 |
chandransh |
46 |
t_item.sellingPrice = item.sellingPrice
|
| 630 |
chandransh |
47 |
if item.mrp:
|
| 501 |
rajveer |
48 |
t_item.mrp = item.mrp
|
| 122 |
ashish |
49 |
|
| 2028 |
ankur.sing |
50 |
if item.comments:
|
|
|
51 |
t_item.comments = item.comments
|
| 609 |
chandransh |
52 |
if item.bestDealText:
|
|
|
53 |
t_item.bestDealText = item.bestDealText
|
| 6777 |
vikram.rag |
54 |
if item.bestDealsDetailsText:
|
|
|
55 |
t_item.bestDealsDetailsText = item.bestDealsDetailsText
|
|
|
56 |
if item.bestDealsDetailsLink:
|
|
|
57 |
t_item.bestDealsDetailsLink = item.bestDealsDetailsLink
|
| 609 |
chandransh |
58 |
if item.bestDealValue:
|
|
|
59 |
t_item.bestDealValue = item.bestDealValue
|
| 7291 |
vikram.rag |
60 |
if item.asin:
|
|
|
61 |
t_item.asin = item.asin
|
| 1910 |
varun.gupt |
62 |
t_item.defaultForEntity = item.defaultForEntity
|
| 2065 |
ankur.sing |
63 |
t_item.bestSellingRank = item.bestSellingRank
|
| 2251 |
ankur.sing |
64 |
t_item.risky = item.risky
|
| 3355 |
chandransh |
65 |
t_item.expectedDelay = item.expectedDelay
|
| 4406 |
anupam.sin |
66 |
t_item.isWarehousePreferenceSticky = item.isWarehousePreferenceSticky
|
| 4295 |
varun.gupt |
67 |
t_item.warrantyPeriod = item.warranty_period
|
| 4506 |
phani.kuma |
68 |
t_item.preferredVendor = item.preferredVendor
|
| 5110 |
mandeep.dh |
69 |
t_item.type = ItemType._NAMES_TO_VALUES[item.type]
|
| 5385 |
phani.kuma |
70 |
t_item.hasItemNo = item.hasItemNo
|
| 7256 |
rajveer |
71 |
t_item.activeOnStore = item.activeOnStore
|
| 6241 |
amit.gupta |
72 |
t_item.showSellingPrice = item.showSellingPrice
|
| 6805 |
anupam.sin |
73 |
t_item.preferredInsurer = item.preferredInsurer
|
| 7291 |
vikram.rag |
74 |
t_item.holdInventory = item.holdInventory
|
|
|
75 |
t_item.defaultInventory = item.defaultInventory
|
| 94 |
ashish |
76 |
return t_item
|
| 122 |
ashish |
77 |
|
| 6805 |
anupam.sin |
78 |
def to_t_insurer(insurer):
|
|
|
79 |
t_insurer = TInsurer()
|
|
|
80 |
t_insurer.id = insurer.id
|
|
|
81 |
t_insurer.name = insurer.name
|
|
|
82 |
t_insurer.address = insurer.address
|
| 6903 |
anupam.sin |
83 |
t_insurer.declaredAmount = insurer.declaredAmount
|
|
|
84 |
t_insurer.creditedAmount = insurer.creditedAmount
|
| 6805 |
anupam.sin |
85 |
return t_insurer
|
|
|
86 |
|
| 5504 |
phani.kuma |
87 |
def to_t_voucher_item_mapping(voucher):
|
|
|
88 |
t_voucher = VoucherItemMapping()
|
|
|
89 |
t_voucher.voucherType = voucher.voucherType
|
|
|
90 |
t_voucher.itemId = voucher.item.id
|
|
|
91 |
t_voucher.amount = voucher.amount
|
|
|
92 |
return t_voucher
|
|
|
93 |
|
| 1970 |
rajveer |
94 |
def to_t_category(category):
|
|
|
95 |
t_category = Category()
|
|
|
96 |
t_category.id = category.id
|
|
|
97 |
t_category.label = category.label
|
|
|
98 |
t_category.description = category.description
|
|
|
99 |
t_category.parent_category_id = category.parent_category_id
|
| 4762 |
phani.kuma |
100 |
t_category.display_name = category.display_name
|
| 3557 |
rajveer |
101 |
return t_category
|
|
|
102 |
|
|
|
103 |
def to_t_source_item_pricing(source_item_pricing):
|
|
|
104 |
t_source_item_pricing = SourceItemPricing()
|
|
|
105 |
t_source_item_pricing.sourceId = source_item_pricing.source.id
|
|
|
106 |
t_source_item_pricing.itemId = source_item_pricing.item.id
|
|
|
107 |
t_source_item_pricing.mrp = source_item_pricing.mrp
|
|
|
108 |
t_source_item_pricing.sellingPrice = source_item_pricing.sellingPrice
|
|
|
109 |
return t_source_item_pricing
|
|
|
110 |
|
|
|
111 |
def to_t_source(source):
|
|
|
112 |
t_source = Source()
|
|
|
113 |
t_source.id = source.id
|
|
|
114 |
t_source.name = source.name
|
|
|
115 |
t_source.identifier = source.identifier
|
|
|
116 |
return t_source
|
| 4295 |
varun.gupt |
117 |
|
|
|
118 |
def to_t_product_notification_request(product_notification_request):
|
|
|
119 |
t_product_notification_request = TProductNotificationRequest()
|
|
|
120 |
|
|
|
121 |
if product_notification_request:
|
|
|
122 |
t_product_notification_request.item = to_t_item(product_notification_request.item)
|
|
|
123 |
t_product_notification_request.email = product_notification_request.email
|
|
|
124 |
t_product_notification_request.addedOn = to_java_date(product_notification_request.addedOn)
|
|
|
125 |
|
|
|
126 |
return t_product_notification_request
|
|
|
127 |
|
|
|
128 |
def to_t_product_notification_request_count(product_notification_request_count):
|
|
|
129 |
|
|
|
130 |
t_product_notification_request_count = TProductNotificationRequestCount()
|
|
|
131 |
|
|
|
132 |
if product_notification_request_count:
|
|
|
133 |
item, count = product_notification_request_count
|
|
|
134 |
t_product_notification_request_count.item = to_t_item(item)
|
|
|
135 |
t_product_notification_request_count.count = count
|
|
|
136 |
|
| 6511 |
kshitij.so |
137 |
return t_product_notification_request_count
|
|
|
138 |
|
|
|
139 |
def to_t_entity_tag(entity_tag):
|
|
|
140 |
t_entity_tag = TEntityTag()
|
|
|
141 |
t_entity_tag.entityId = entity_tag.entityId
|
| 6848 |
kshitij.so |
142 |
t_entity_tag.tag = entity_tag.tag
|
|
|
143 |
|
|
|
144 |
def to_t_banner(banner):
|
|
|
145 |
t_banner = TBanner()
|
|
|
146 |
t_banner.bannerName = banner.bannerName
|
|
|
147 |
t_banner.imageName = banner.imageName
|
|
|
148 |
t_banner.link = banner.link
|
|
|
149 |
t_banner.priority = banner.priority
|
|
|
150 |
t_banner.hasMap = banner.hasMap
|
| 9155 |
kshitij.so |
151 |
t_banner.bannerType = banner.bannerType
|
| 6848 |
kshitij.so |
152 |
return t_banner
|
|
|
153 |
|
| 8579 |
kshitij.so |
154 |
def to_t_banner_list(bannerList):
|
|
|
155 |
t_banner_list = []
|
|
|
156 |
for banner in bannerList:
|
|
|
157 |
t_banner = TBanner()
|
|
|
158 |
t_banner.bannerName = banner.bannerName
|
|
|
159 |
t_banner.imageName = banner.imageName
|
|
|
160 |
t_banner.link = banner.link
|
|
|
161 |
t_banner.priority = banner.priority
|
|
|
162 |
t_banner.hasMap = banner.hasMap
|
| 9155 |
kshitij.so |
163 |
t_banner.bannerType = banner.bannerType
|
| 8579 |
kshitij.so |
164 |
t_banner_list.append(t_banner)
|
|
|
165 |
return t_banner_list
|
|
|
166 |
|
|
|
167 |
|
| 6848 |
kshitij.so |
168 |
def to_t_banner_map(banner_map):
|
|
|
169 |
t_banner_map = TBannerMap()
|
|
|
170 |
t_banner_map.bannerName = banner_map.bannerName
|
|
|
171 |
t_banner_map.mapLink = banner_map.mapLink
|
|
|
172 |
t_banner_map.coordinates = banner_map.coordinates
|
|
|
173 |
return t_banner_map
|
| 7272 |
amit.gupta |
174 |
|
| 8579 |
kshitij.so |
175 |
def to_t_uri_mapping(uriMapping):
|
|
|
176 |
t_uri_mapping =TBannerUriMapping()
|
|
|
177 |
t_uri_mapping.bannerName = uriMapping.bannerName
|
|
|
178 |
t_uri_mapping.uri = uriMapping.uri
|
|
|
179 |
t_uri_mapping.isActive = uriMapping.isActive
|
|
|
180 |
return t_uri_mapping
|
|
|
181 |
|
|
|
182 |
def to_t_campaign(campaign):
|
|
|
183 |
t_campaign = TCampaign()
|
|
|
184 |
t_campaign.id = campaign.id
|
|
|
185 |
t_campaign.campaignName = campaign.campaignName
|
|
|
186 |
t_campaign.imageName = campaign.imageName
|
|
|
187 |
return t_campaign
|
|
|
188 |
|
| 7281 |
kshitij.so |
189 |
def to_t_Amazonlisted(Amazonlisted):
|
|
|
190 |
t_amazonlisted = TAmazonlisted()
|
| 8362 |
kshitij.so |
191 |
if Amazonlisted is None:
|
|
|
192 |
return t_amazonlisted
|
| 7281 |
kshitij.so |
193 |
t_amazonlisted.asin = Amazonlisted.asin
|
|
|
194 |
t_amazonlisted.brand = Amazonlisted.brand
|
|
|
195 |
t_amazonlisted.itemid = Amazonlisted.itemId
|
|
|
196 |
t_amazonlisted.model = Amazonlisted.model
|
|
|
197 |
t_amazonlisted.manufacturer_name = Amazonlisted.manufacturer_name
|
|
|
198 |
t_amazonlisted.upc = Amazonlisted.upc
|
|
|
199 |
t_amazonlisted.part_number = Amazonlisted.part_number
|
|
|
200 |
t_amazonlisted.name = Amazonlisted.name
|
|
|
201 |
t_amazonlisted.ean = Amazonlisted.ean
|
|
|
202 |
t_amazonlisted.fbaPrice = Amazonlisted.fbaPrice
|
|
|
203 |
t_amazonlisted.sellingPrice = Amazonlisted.sellingPrice
|
|
|
204 |
t_amazonlisted.isFba = Amazonlisted.isFba
|
|
|
205 |
t_amazonlisted.isNonFba = Amazonlisted.isNonFba
|
|
|
206 |
t_amazonlisted.isInventoryOverride = Amazonlisted.isInventoryOverride
|
|
|
207 |
t_amazonlisted.color = Amazonlisted.color
|
|
|
208 |
t_amazonlisted.category = Amazonlisted.category
|
| 7367 |
kshitij.so |
209 |
t_amazonlisted.handlingTime = Amazonlisted.handlingTime
|
|
|
210 |
t_amazonlisted.isCustomTime = Amazonlisted.isCustomTime
|
| 7516 |
vikram.rag |
211 |
t_amazonlisted.category_code = Amazonlisted.category_code
|
| 7770 |
kshitij.so |
212 |
t_amazonlisted.mfnPriceLastUpdatedOn = to_java_date(Amazonlisted.mfnPriceLastUpdatedOn)
|
|
|
213 |
t_amazonlisted.fbaPriceLastUpdatedOn = to_java_date(Amazonlisted.fbaPriceLastUpdatedOn)
|
|
|
214 |
t_amazonlisted.mfnPriceLastUpdatedOnSc = to_java_date(Amazonlisted.mfnPriceLastUpdatedOnSc)
|
|
|
215 |
t_amazonlisted.fbaPriceLastUpdatedOnSc = to_java_date(Amazonlisted.fbaPriceLastUpdatedOnSc)
|
| 8139 |
kshitij.so |
216 |
t_amazonlisted.suppressMfnPriceUpdate = Amazonlisted.suppressMfnPriceUpdate
|
| 8140 |
kshitij.so |
217 |
t_amazonlisted.suppressFbaPriceUpdate = Amazonlisted.suppressFbaPriceUpdate
|
| 8619 |
kshitij.so |
218 |
t_amazonlisted.taxCode = Amazonlisted.taxCode
|
| 7291 |
vikram.rag |
219 |
return t_amazonlisted
|
|
|
220 |
|
| 8182 |
amar.kumar |
221 |
def to_t_ebay_item(ebay_item):
|
|
|
222 |
t_ebay_item = TEbayItem()
|
|
|
223 |
t_ebay_item.ebayListingId = ebay_item.ebayListingId
|
|
|
224 |
t_ebay_item.itemId = ebay_item.itemId
|
|
|
225 |
t_ebay_item.listingName = ebay_item.listingName
|
|
|
226 |
t_ebay_item.listingPrice = ebay_item.listingPrice
|
|
|
227 |
t_ebay_item.listingExpiryDate = to_java_date(ebay_item.listingExpiryDate)
|
|
|
228 |
t_ebay_item.subsidy = ebay_item.subsidy
|
| 8274 |
amit.gupta |
229 |
return t_ebay_item
|
|
|
230 |
|
|
|
231 |
def to_t_brand_info(brand_info):
|
|
|
232 |
t_brand_info = TBrandInfo()
|
|
|
233 |
t_brand_info.name = brand_info.name
|
|
|
234 |
t_brand_info.serviceCenterLocatorUrl = brand_info.serviceCenterLocatorUrl
|
| 8739 |
vikram.rag |
235 |
return t_brand_info
|
|
|
236 |
|
|
|
237 |
def to_t_snapdeal_item(snapdealitem):
|
| 8754 |
vikram.rag |
238 |
if snapdealitem is None:
|
| 8746 |
vikram.rag |
239 |
t_snapdeal_item = TSnapdealItem()
|
|
|
240 |
return t_snapdeal_item
|
| 8739 |
vikram.rag |
241 |
t_snapdeal_item = TSnapdealItem()
|
| 8754 |
vikram.rag |
242 |
t_snapdeal_item.item_id = snapdealitem[0].item_id
|
| 8739 |
vikram.rag |
243 |
t_snapdeal_item.warehouseId = snapdealitem[0].warehouseId
|
|
|
244 |
t_snapdeal_item.exceptionPrice = snapdealitem[0].exceptionPrice
|
| 9242 |
kshitij.so |
245 |
t_snapdeal_item.transferPrice = snapdealitem[0].transferPrice
|
|
|
246 |
t_snapdeal_item.sellingPrice = snapdealitem[0].sellingPrice
|
|
|
247 |
t_snapdeal_item.courierCost = snapdealitem[0].courierCost
|
|
|
248 |
t_snapdeal_item.commission = snapdealitem[0].commission
|
|
|
249 |
t_snapdeal_item.serviceTax = snapdealitem[0].serviceTax
|
|
|
250 |
t_snapdeal_item.isListedOnSnapdeal = snapdealitem[0].isListedOnSnapdeal
|
|
|
251 |
t_snapdeal_item.suppressPriceFeed = snapdealitem[0].suppressPriceFeed
|
|
|
252 |
t_snapdeal_item.suppressInventoryFeed = snapdealitem[0].suppressInventoryFeed
|
| 9404 |
vikram.rag |
253 |
t_snapdeal_item.maxNlc = snapdealitem[0].maxNlc
|
| 9456 |
vikram.rag |
254 |
t_snapdeal_item.skuAtSnapdeal = snapdealitem[0].skuAtSnapdeal
|
| 9568 |
kshitij.so |
255 |
t_snapdeal_item.supc = snapdealitem[0].supc
|
| 9724 |
kshitij.so |
256 |
t_snapdeal_item.shippingTime = snapdealitem[0].shippingTime
|
| 9242 |
kshitij.so |
257 |
return t_snapdeal_item
|
|
|
258 |
|
| 9724 |
kshitij.so |
259 |
def to_t_snapdeal_item_details(snapdealitem,snapdealItemInventory):
|
| 9242 |
kshitij.so |
260 |
if snapdealitem is None:
|
|
|
261 |
t_snapdeal_item_details = TSnapdealItemDetails()
|
|
|
262 |
return t_snapdeal_item_details
|
|
|
263 |
t_snapdeal_item_details = TSnapdealItemDetails()
|
|
|
264 |
t_snapdeal_item_details.item_id = snapdealitem[0].item_id
|
|
|
265 |
t_snapdeal_item_details.warehouseId = snapdealitem[0].warehouseId
|
|
|
266 |
t_snapdeal_item_details.exceptionPrice = snapdealitem[0].exceptionPrice
|
|
|
267 |
t_snapdeal_item_details.transferPrice = snapdealitem[0].transferPrice
|
|
|
268 |
t_snapdeal_item_details.sellingPrice = snapdealitem[0].sellingPrice
|
|
|
269 |
t_snapdeal_item_details.courierCost = snapdealitem[0].courierCost
|
|
|
270 |
t_snapdeal_item_details.commission = snapdealitem[0].commission
|
|
|
271 |
t_snapdeal_item_details.serviceTax = snapdealitem[0].serviceTax
|
|
|
272 |
t_snapdeal_item_details.brand = snapdealitem[1].brand
|
|
|
273 |
t_snapdeal_item_details.model_name = snapdealitem[1].model_name
|
|
|
274 |
t_snapdeal_item_details.model_number = snapdealitem[1].model_number
|
|
|
275 |
t_snapdeal_item_details.color = snapdealitem[1].color
|
|
|
276 |
t_snapdeal_item_details.risky = snapdealitem[1].risky
|
|
|
277 |
t_snapdeal_item_details.itemStatus = snapdealitem[1].status
|
|
|
278 |
t_snapdeal_item_details.isListedOnSnapdeal = snapdealitem[0].isListedOnSnapdeal
|
|
|
279 |
t_snapdeal_item_details.weight = snapdealitem[1].weight
|
|
|
280 |
t_snapdeal_item_details.mrp = snapdealitem[1].mrp
|
|
|
281 |
t_snapdeal_item_details.websiteSellingPrice = snapdealitem[1].sellingPrice
|
|
|
282 |
t_snapdeal_item_details.suppressPriceFeed = snapdealitem[0].suppressPriceFeed
|
|
|
283 |
t_snapdeal_item_details.suppressInventoryFeed = snapdealitem[0].suppressInventoryFeed
|
| 9478 |
kshitij.so |
284 |
t_snapdeal_item_details.maxNlc = snapdealitem[0].maxNlc
|
| 9456 |
vikram.rag |
285 |
t_snapdeal_item_details.skuAtSnapdeal = snapdealitem[0].skuAtSnapdeal
|
| 9568 |
kshitij.so |
286 |
t_snapdeal_item_details.supc = snapdealitem[0].supc
|
| 9724 |
kshitij.so |
287 |
t_snapdeal_item_details.shippingTime = snapdealitem[0].shippingTime
|
|
|
288 |
if snapdealItemInventory is not None:
|
|
|
289 |
t_snapdeal_item_details.lastUpdatedInventory = snapdealItemInventory.availability
|
|
|
290 |
t_snapdeal_item_details.lastUpdatedInventoryTimestamp = snapdealItemInventory.lastUpdatedOnSnapdeal
|
| 9242 |
kshitij.so |
291 |
return t_snapdeal_item_details
|
| 9621 |
manish.sha |
292 |
|
|
|
293 |
def to_t_product_feed_submit(productfeedsubmit):
|
|
|
294 |
if productfeedsubmit is None:
|
|
|
295 |
t_product_feed_submit = TProductFeedSubmit()
|
|
|
296 |
return t_product_feed_submit
|
|
|
297 |
t_product_feed_submit = TProductFeedSubmit()
|
|
|
298 |
t_product_feed_submit.catalogItemId = productfeedsubmit.catalogItemId
|
|
|
299 |
t_product_feed_submit.stockLinkedFeed = productfeedsubmit.stockLinkedFeed
|
| 9724 |
kshitij.so |
300 |
return t_product_feed_submit
|
|
|
301 |
|
|
|
302 |
def to_t_marketplace_items(marketplaceItem):
|
|
|
303 |
t_marketplace_item = TMarketplaceItems()
|
|
|
304 |
if marketplaceItem is None:
|
|
|
305 |
return t_marketplace_item
|
|
|
306 |
t_marketplace_item.itemId = marketplaceItem.itemId
|
|
|
307 |
t_marketplace_item.source = marketplaceItem.source
|
|
|
308 |
t_marketplace_item.emiFee = marketplaceItem.emiFee
|
|
|
309 |
t_marketplace_item.courierCost = marketplaceItem.courierCost
|
|
|
310 |
t_marketplace_item.closingFee = marketplaceItem.closingFee
|
|
|
311 |
t_marketplace_item.commission = marketplaceItem.commission
|
|
|
312 |
t_marketplace_item.returnProvision = marketplaceItem.returnProvision
|
|
|
313 |
t_marketplace_item.vat = marketplaceItem.vat
|
|
|
314 |
t_marketplace_item.packagingCost = marketplaceItem.packagingCost
|
|
|
315 |
t_marketplace_item.otherCost = marketplaceItem.otherCost
|
|
|
316 |
t_marketplace_item.serviceTax = marketplaceItem.serviceTax
|
|
|
317 |
t_marketplace_item.autoIncrement = marketplaceItem.autoIncrement
|
|
|
318 |
t_marketplace_item.autoDecrement = marketplaceItem.autoDecrement
|
|
|
319 |
t_marketplace_item.autoFavourite = marketplaceItem.autoFavourite
|
|
|
320 |
t_marketplace_item.manualFavourite = marketplaceItem.manualFavourite
|
|
|
321 |
t_marketplace_item.currentSp = marketplaceItem.currentSp
|
|
|
322 |
t_marketplace_item.currentTp = marketplaceItem.currentTp
|
|
|
323 |
t_marketplace_item.minimumPossibleSp = marketplaceItem.minimumPossibleSp
|
|
|
324 |
t_marketplace_item.minimumPossibleTp = marketplaceItem.minimumPossibleTp
|
|
|
325 |
t_marketplace_item.lastCheckedTimestamp = to_java_date(marketplaceItem.lastCheckedTimestamp)
|
|
|
326 |
return t_marketplace_item
|
| 9776 |
vikram.rag |
327 |
|
|
|
328 |
def to_t_marketplace_itemprice(marketplaceitemprice):
|
|
|
329 |
t_marketplace_priceitem = TMarketPlaceItemPrice()
|
|
|
330 |
t_marketplace_priceitem.item_id = marketplaceitemprice.item_id
|
|
|
331 |
t_marketplace_priceitem.source = marketplaceitemprice.source
|
|
|
332 |
t_marketplace_priceitem.sellingPrice = marketplaceitemprice.sellingPrice
|
|
|
333 |
t_marketplace_priceitem.lastUpdatedOn = to_java_date(marketplaceitemprice.lastUpdatedOn)
|
|
|
334 |
t_marketplace_priceitem.lastUpdatedOnMarketplace = to_java_date(marketplaceitemprice.lastUpdatedOnMarketplace)
|
|
|
335 |
t_marketplace_priceitem.isPriceOverride = marketplaceitemprice.suppressPriceFeed
|
|
|
336 |
t_marketplace_priceitem.isListedOnSource = marketplaceitemprice.isListedOnSource
|
|
|
337 |
return t_marketplace_priceitem
|
| 9724 |
kshitij.so |
338 |
|
|
|
339 |
|
|
|
340 |
|
|
|
341 |
|
|
|
342 |
|