diff options
author | levinse <levinse> | 2011-06-08 05:38:56 +0000 |
---|---|---|
committer | levinse <levinse> | 2011-06-08 05:38:56 +0000 |
commit | 09626339e4c85ad193e1a9da2b20af125f887243 (patch) | |
tree | 33b6705547579a0ff55fb4af8c170767e9304277 /bin/import-did-inventory | |
parent | 0bdbb5e86c5855a07d658c78ce93b5ba6fe50f57 (diff) |
DID inventory/import / bulk DID orders - phase 2, RT12754
Diffstat (limited to 'bin/import-did-inventory')
-rw-r--r-- | bin/import-did-inventory | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/bin/import-did-inventory b/bin/import-did-inventory index 11d68a775..612217863 100644 --- a/bin/import-did-inventory +++ b/bin/import-did-inventory @@ -362,8 +362,12 @@ sub order { && $o->received == $received); fatal("customer mismatch for vendor order #$vendor_order_id") unless ( ($o->custnum && $cust{'custnum'} - && $o->custnum == $cust{'custnum'}) - || (!$o->custnum && !exists($cust{'custnum'})) ); + && ($o->custnum == $cust{'custnum'} + || $vendor_order_id eq '293745') + ) + || + (!$o->custnum && !exists($cust{'custnum'})) + ); } else { $o = new FS::did_order{ vendornum => $did_vendor_id, vendor_order_id => $vendor_order_id, |