Skip to content

Commit

Permalink
removed console log and updated status codes
Browse files Browse the repository at this point in the history
  • Loading branch information
antman10001 committed Aug 8, 2019
1 parent f0ff61d commit 748e3f0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions carriers/pitneyBowes.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const CITY_BLACKLIST = /DISTRIBUTION CENTER|INTERNATIONAL DISTRIBUTION CENTER|NE
const DELIVERED_TRACKING_STATUS_CODES = ['01', 'DEL'];

// These tracking status codes indicate the shipment was shipped (shows movement beyond a shipping label being created)
const SHIPPED_TRACKING_STATUS_CODES = ['02', '07', '10', '14', '30', '81', '82', 'ACF', 'AD', 'ADU', 'DCF', 'IPS', 'OF', 'OFD', 'PC'];
const SHIPPED_TRACKING_STATUS_CODES = ['02', '07', '10', '14', '30', '81', '82', 'AD', 'OF', 'OFD', 'PC'];

const geography = require('../util/geography');

Expand Down Expand Up @@ -92,7 +92,6 @@ function PitneyBowes(options) {
}

if (SHIPPED_TRACKING_STATUS_CODES.includes(scanDetail.scanType.toString())) {
// console.log(scanDetail.scanType);
results.shippedAt = new Date(event.date);
}

Expand Down

0 comments on commit 748e3f0

Please sign in to comment.