Details
-
Type: Bug
-
Status: Closed
-
Priority: Major
-
Resolution: Not a Bug
-
Affects Version/s: Mercury
-
Fix Version/s: Mercury
-
Component/s: Admax Deployment Service
-
Labels:None
-
Environment:
Bid Manager #812
Core #375
Tested on QA4
-
Sprint:Sprint 9
Description
.Soap request used to deploy a campaign, populates incorrect deployment date.
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:core="http://thesearchagency.com/smb/core">
<soapenv:Header/>
<soapenv:Body>
<core:deployCampaigns>
<!-Optional:->
<deployCampaignsRequest>
<header>
<requestID>076d9058-ca82-485c-aaeb-7e8b5a606369</requestID>
<retryID>1</retryID>
</header>
<customer>
<customerID>4be04a7f-dfb1-4c7b-bbab-222250083</customerID>
<domainName>www.google.com</domainName>
<budget>62</budget>
<anniversaryDate>2015-09-28</anniversaryDate>
<currencyCode>USD</currencyCode>
<timeZone>Pacific/Honolulu</timeZone>
<countryCode>US</countryCode>
</customer>
<campaignList>
<campaignID xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
<distribution>Bing</distribution>
<businessAreaID>11286</businessAreaID>
<keywordListID>538</keywordListID>
<businessLocationID>20</businessLocationID>
<customLandingPage>
<destinationURL>http://www.google.com</destinationURL>
<displayURL>www.google.com</displayURL>
</customLandingPage>
<localeName>en_US</localeName>
<campaignDataList>
<type>adContent</type>
<attributes>
<entry>
<key>adDesc1</key>
<value xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="xs:string">A Great Feature For Your Home.</value>
</entry>
<entry>
<key>adDisplayURL</key>
<value xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="xs:string">www.testurl.com</value>
</entry>
<entry>
<key>adDesURL</key>
<value xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="xs:string">http://www.testurl.com</value>
</entry>
<entry>
<key>adDesc2</key>
<value xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="xs:string">Large Selection of Window Shutters.</value>
</entry>
<entry>
<key>adHeadline</key>
<value xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="xs:string">
</value>
</entry>
</attributes>
</campaignDataList>
<campaignDataList>
<type>adContent</type>
<attributes>
<entry>
<key>adDesc1</key>
<value xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="xs:string">Get Shutters For Your Windows.</value>
</entry>
<entry>
<key>adDisplayURL</key>
<value xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="xs:string">www.testurl.com</value>
</entry>
<entry>
<key>adDesURL</key>
<value xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="xs:string">http://www.testurl.com</value>
</entry>
<entry>
<key>adDesc2</key>
<value xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="xs:string">Increase Your Home's Beauty.</value>
</entry>
<entry>
<key>adHeadline</key>
<value xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="xs:string">Stunning Shutters</value>
</entry>
</attributes>
</campaignDataList>
</campaignList>
</deployCampaignsRequest>
</core:deployCampaigns>
</soapenv:Body>
</soapenv:Envelope>
After deployment, check the anniversary date in `st-tracker`.admaxAccountAnniversary table.
Expected: anniversary date and start date must be same.
Actual: start date it set to (deployment date -1).
mysql> SELECT * FROM `st-tracker`.admaxAccountAnniversary WHERE accountID=852;
----------------------------------------------
id | accountId | anniversaryDate | startDate | endDate |
----------------------------------------------
851 | 852 | 2015-09-28 | 2015-09-27 | NULL |
----------------------------------------------
1 row in set (0.00 sec)