Export Order Statuses from B2B Wave
This task will export order status from B2B Wave. You can create and edit these if you login to your B2B Wave admin panel and go to Settings -> Order Statuses.
File Settings
Output File
Required The file to save records to.
Zynk Settings
See Common Task Settings.
Examples
<?xml version="1.0" encoding="utf-8"?>
<order_status xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<order_status>
<id>1</id>
<name>Temporary</name>
<is_temp>true</is_temp>
<cannot_delete>true</cannot_delete>
<sort>0</sort>
<notify_customer>false</notify_customer>
</order_status>
<order_status>
<id>2</id>
<name>Submitted</name>
<is_temp>false</is_temp>
<cannot_delete>true</cannot_delete>
<sort>0</sort>
<notify_customer>false</notify_customer>
</order_status>
<order_status>
<id>3</id>
<name>Awaiting Payment</name>
<is_temp>false</is_temp>
<cannot_delete>false</cannot_delete>
<sort>5</sort>
<colors xsi:type="xsd:string">#337AB7#FFFFFF</colors>
<notify_customer>true</notify_customer>
</order_status>
<order_status>
<id>4</id>
<name>Being Prepared</name>
<is_temp>false</is_temp>
<cannot_delete>false</cannot_delete>
<sort>7</sort>
<colors xsi:type="xsd:string">#FFCCCC#000000</colors>
<notify_customer>true</notify_customer>
</order_status>
<order_status>
<id>5</id>
<name>Sent</name>
<is_temp>false</is_temp>
<cannot_delete>false</cannot_delete>
<sort>8</sort>
<colors xsi:type="xsd:string">#CCFF99#000000</colors>
<notify_customer>false</notify_customer>
</order_status>
<order_status>
<id>6</id>
<name>Complete</name>
<is_temp>false</is_temp>
<cannot_delete>false</cannot_delete>
<sort>9</sort>
<notify_customer>false</notify_customer>
</order_status>
<order_status>
<id>7</id>
<name>Canceled</name>
<is_temp>false</is_temp>
<cannot_delete>false</cannot_delete>
<sort>10</sort>
<colors xsi:type="xsd:string">#D9534F#FFFFFF</colors>
<notify_customer>false</notify_customer>
</order_status>
<order_status>
<id>8</id>
<name>Invoiced</name>
<is_temp>false</is_temp>
<cannot_delete>false</cannot_delete>
<sort>0</sort>
<notify_customer>false</notify_customer>
</order_status>
<order_status>
<id>9</id>
<name>Closed</name>
<is_temp>false</is_temp>
<cannot_delete>false</cannot_delete>
<sort>0</sort>
<colors xsi:type="xsd:string"></colors>
<notify_customer>false</notify_customer>
</order_status>
</order_status>