1
0
mirror of synced 2024-11-25 14:56:09 +03:00
bitrix-module/intaro.retailcrm/update/updater-5.5.0.php
Neur0toxine 4125565570
Ability to disable payment passthrough (#140)
* optional payment total in the order
* updater won't fail in case of error
2020-09-25 12:17:29 +03:00

9 lines
164 B
PHP

<?php
function update_5_5_0()
{
if (!RetailcrmConfigProvider::shouldSendPaymentAmount()) {
RetailcrmConfigProvider::setSendPaymentAmount('Y');
}
}