for rakuten page source

Upload: omar-perez

Post on 05-Jul-2018

220 views

Category:

Documents


0 download

TRANSCRIPT

  • 8/16/2019 For Rakuten Page Source

    1/23

          RMS Portal - Order Details  

           

     

     

     

     

     

     

       

       

       

            if (!window.jQuery) {  document.write('');  }        if (!window.jQuery.ui) {

      document.write('');  }

  • 8/16/2019 For Rakuten Page Source

    2/23

           

     

            Working...     

     

     

                Welcome iphoneduck
        Account Status:    Active 

     
      Shop Owner ID: 48188150     

      $(document).ready(function() {  $('[data-toggle="tooltip"]').tooltip({ container: 'body' });  });

     

                   

       

  • 8/16/2019 For Rakuten Page Source

    3/23

                  Help  

      View Response File  User Manual  Instructional Videos  New SKU Documentation

      Inventory/Order Management Specs 

          Contact Us

     

      Technical Support

      Email Your ECC

      Compliance 

     

        Back to Rakuten.com      Sign Out       

     

    (function (contact, $, undefined) {  contact.toggle = function () {  $("#contact-menu").toggle();

  • 8/16/2019 For Rakuten Page Source

    4/23

      };

      contact.show = function () {  $("#contact-menu").show();  };

      contact.hide = function () {

      $("#contact-menu").hide();  }; 

    }(window.contact = window.contact || {}, jQuery));

      $(document).ready(function () {  $("#contact-list").on("mouseleave", function () {  contact.hide();  });

      $("#contact-link").on("click", function () {  contact.toggle();

      });  });

       

       

     

        Favorites   

     

        <span class="menu-item-parent">Home 

       

  • 8/16/2019 For Rakuten Page Source

    5/23

      Manage Products 

     

     

      List/Create a Product   

        View Incomplete Products 

        Manage Listings      Upload Feed      Download Listings   

     

          Manage SKUs      Validate Feed      View Your SKUs      View New SKU Feed Errors     

          Manage Orders   

  • 8/16/2019 For Rakuten Page Source

    6/23

      Manage Orders      Print Packing Slips 

     

            Payment History      Search Payment Statements 

              Reporting 

        Detailed Sales Reports 

        Monthly Sales      Sales By Category 

        Referrals</a> 

            Customer Analysis</a>

          Number of Purchases 

       

  • 8/16/2019 For Rakuten Page Source

    7/23

    Average Order Value 

     

       

      Trend Analysis

          Category GMV Trend 

        Top Selling SKUs 

       

        Download a Detailed Listing Report     

          Account Settings      Manage Account Settings      Manage Business Settings      Manage Subscription      Manage Notification Settings      Manage Information and Policies 

        Manage Shipping Settings   

  • 8/16/2019 For Rakuten Page Source

    8/23

      Manage Feedback      Manage Performance Profile 

        Manage Shop Settings      Manage Rakuten.com Shopper Account Settings     

       

          Featured Partners  view all partners! → 

           

      $(document).ready(function () {

      $("#favorites").sortable({  placeholder: "sortable-placeholder",  stop: function (event, ui) {  var data = $("#favorites").sortable("toArray");  var url = "/favorites/favoritesorderupdate";  for (var i = 0; i < data.length; i++) {  var favID = data[i].split("_")[1];

      $.ajax({  url: url,  type: 'POST',  data: {  favoriteID: favID,

      order: i + 1  }  }).fail(function () {

  • 8/16/2019 For Rakuten Page Source

    9/23

      toast.error("Unable to save favorites.");  });

      }

      }  });

      });

                Order Details  

     

       

     

     

     

     

    $(document).ready(function () {  var url = $("#spark-line").data("url");

      $.ajax({  url: url,  global: false  }).done(function (data) {  $("#spark-line").html(data);  });

      $("#quicklink").click(function () {  var quicklinkUrl;  var classes = $(this).attr("class");  var classParts = classes.split(" ");  var action;

      if (classParts.indexOf("fa-star-o") > -1) {  //quicklink is off  $(this).removeClass("fa-star-o");

  • 8/16/2019 For Rakuten Page Source

    10/23

      $(this).addClass("fa-star");  quicklinkUrl = "/favorites/favoritesadd";  action = "added";  } else {  //quicklink is on  $(this).removeClass("fa-star");  $(this).addClass("fa-star-o");

      quicklinkUrl = "/favorites/favoritesremove";  action = "removed";  }

      $.ajax({  url: quicklinkUrl,  data: {  url: window.location.href,  title: "Order Details"  }  })  .fail(function () {

      toast.error("error updating quicklink");  })  .done(function(data) {  var favs = $("#favorites");  favs.html(data.data);  toast.success("Favorite " + action);  });

      });

      });

     

         

     

      var dismissNotification = function(notificationID) {

      var url = "/webapi/notifications/" + notificationID;  $.ajax({  url: url,

      type: "PUT",  contentType: "application/json; charset=utf-8",  success: function (response) {

  • 8/16/2019 For Rakuten Page Source

    11/23

      if (!response) {  toast.error("Error dismissing notification.");  }  }  });

      }

       

      $(function () {

      function cleanMsgs() {  $("#notifications").empty();  toast.clear();  }

      function addMsg(msg) {  //var args = $.map(arguments, function (a) { return "" + a + "</li>" });  //var msg = "".concat.apply("", args);

      //AddError(msg);  toast.error(msg);  }

      function checkQuantity() {

      var itemsCancelled = false;

      $('input:text').each(function () {  if ($(this).hasClass('checkQty')) {  if ($(this).val() != "" && $(this).val() != "0") {  itemsCancelled = true;  bootbox.confirm("

    Are you sure you want to Cancel the indicated Quantity? Click OK to continue or Cancel to remove/update the value in the Cancel Qty field.

    ", function (result) {

      if (result) {  $("#refundForm").ajaxSubmit(function (data) {

      if (data.success) {  toast.success("Changes have been saved.");  document.location.reload(true);  } else {  cleanMsgs();

      if (data.data.Notifications.length > 0){  for (var i = 0; i < data.data.Notifications.length; i++) {  addMsg(data.data.Notifications[i].Message);

      }

      }

  • 8/16/2019 For Rakuten Page Source

    12/23

      }

      });  }

      });  }  }  });

      if (!itemsCancelled) {

      $("#refundForm").ajaxSubmit(function (data) {

      if (data.success) {  toast.success("Changes have been saved.");  document.location.reload(true);

      } else {  cleanMsgs();  if (data.data.Notifications.length > 0) {  for (var i = 0; i < data.data.Notifications.length;i++) {  addMsg(data.data.Notifications[i].Message);  }  }  }

      });

      }

      };

      $("#refundForm").on("submit", function (event) {

      event.preventDefault();  checkQuantity();  return true;  });

      //$("#confirmDialog").dialog({  // autoOpen: false,  // modal: true,  // resizable: false,  // height: 200,  // buttons: {  // Yes: function () {

      // $(this).dialog("close");

      // $("#refundForm").ajaxSubmit(function (result) {

      // if (!!result.success) {  // document.location.reload(true);  // } else {

      // cleanMsgs();  // addMsg(result.Message);  // }

  • 8/16/2019 For Rakuten Page Source

    13/23

      // });

      // },  // Cancel: function () {  // $(this).dialog("close");  // }

      // }  //});

      });

     

     

    Order ID: 80177318

       

          Order Information  Ship To 

                    Order Date:      4/8/2016          Buyer Name:      Pedro Lopes          Buyer Phone:

          203-217-8148

  • 8/16/2019 For Rakuten Page Source

    14/23

              Buyer Email:   

      [email protected]                 Sales Channel:   

      Rakuten.com          Sales Channel Order ID:      80177318       

           

     

    Pedro Lopes

     
    22 Bradley St

     
    Naugatuck, CT 067704263

     
    203-217-8148

     

       

        View/Print

  • 8/16/2019 For Rakuten Page Source

    15/23

     Packing Slip          

       

     

     

    Order Items 

     

          Item Details  Order Total  Order Qty  Ship

      Cancel  Refund             

          Apple iPhone 4S 8GB Unlocked GSM iOS Cell Phone - White            Listing ID:  505790366   

      Sku:  261549444 

  • 8/16/2019 For Rakuten Page Source

    16/23

        Reference ID:  4S-UNL-WHITE-8GB</td>      Condition:

      UsedAcceptable      Ship Method:  Standard   

           

          Order Qty:  1      Item Price:  $79.00      Sub Total:  $79.00 

        Shipping:  $6.99      Tax (CT):  $0.00 

        Total:  $85.99     

          1     

         

  • 8/16/2019 For Rakuten Page Source

    17/23

      Ship Qty  Ship Date  Tracking Number 

       

     

         

                 

      -Select-  UPS  UPS-MI  FEDEX  FEDEX SmartPost  DHL  DHL Global Mail  USPS  Other  ------LTL Carriers------  A. Duie Pyle  ABF  AIM Trans  AIT  All States World Cargo  AM Home Delivery  Blue Package Delivery LLC  CEVA Logistics  Conway  Dependable Highway Express

      Ensenda  Estes  FedEx Freight

  • 8/16/2019 For Rakuten Page Source

    18/23

      FedEx LTL Freight East  Fox Brother  Hollywood Delivery Service  Home Direct  Lakeville Motor

      Manna  New England Motor Freight  Old Dominion  OnTrac  Pilot  Pitt Ohio  R&L Global  S&J Transportation  SAIA  Team Worldwide  UPS Freight

      USF Holland  USF Reddaway  Vitran Express  Watkins Motor Line Freight Standard  Wilson Trucking  Yellow Freight  ------International Carriers------  JP Post - Express Mail Service (EMS)   

         

              Cancel Qty        0             

          $0.00

  • 8/16/2019 For Rakuten Page Source

    19/23

     

     

     

           

     Canc

    el / Go Back

       

     

       

     

          Terms of Use | Copyright 1997-2015 Rakuten.com, All rights reserved. | Rakuten.com Privacy Policy 

     

     

        Mai

  • 8/16/2019 For Rakuten Page Source

    20/23

    l 14       Calendar  

        <span>Maps       Invoice 99 </a>   

      </i> Gallery       My Profile    

     

       

  • 8/16/2019 For Rakuten Page Source

    21/23

    <

    /script>

      $(document).ready(function () {  pageSetUp();  $('#image-rotator').cycle({  timeout: 8000,  pause: 1,  random: 1,  containerResize: 0,  width: 195,  slideResize:0  });  });

     

  • 8/16/2019 For Rakuten Page Source

    22/23

    e9309749e32">

     

    (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],

  • 8/16/2019 For Rakuten Page Source

    23/23

    j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src='//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window, document, 'script', 'dataLayer', 'GTM-TLZ8ML');