Please try the following:
- Find the file Taxmodule.php (normally in C:\Program Files (x86)\SellerDeck\SellerDeck 2016\PHPModules, or whatever is your SellerDeck 2016 install path)
- Take a backup copy of the file
- Open the file in Notepad or a similar application
- Search for
$oNode->SetAttributeValue('ordertax1rounded', $this->m_fOrderTax1Rounded);
- Replace with
$oNode->SetAttributeValue('ordertax1rounded', intval($this->m_fOrderTax1Rounded));
- Restart SellerDeck Desktop
I can't reproduce you crash in v16.0.1 adding a £72.56 product to a MOTO order. But the above fix resolved a very similar crash that was reported to support in v16.0.0 and the cause is very likely to be the same.
Let me know here how you get on.
- Find the file Taxmodule.php (normally in C:\Program Files (x86)\SellerDeck\SellerDeck 2016\PHPModules, or whatever is your SellerDeck 2016 install path)
- Take a backup copy of the file
- Open the file in Notepad or a similar application
- Search for
$oNode->SetAttributeValue('ordertax1rounded', $this->m_fOrderTax1Rounded);
- Replace with
$oNode->SetAttributeValue('ordertax1rounded', intval($this->m_fOrderTax1Rounded));
- Restart SellerDeck Desktop
I can't reproduce you crash in v16.0.1 adding a £72.56 product to a MOTO order. But the above fix resolved a very similar crash that was reported to support in v16.0.0 and the cause is very likely to be the same.
Let me know here how you get on.
Comment