catalog.store.update
Scope: catalog Права на выполнение: для всех
catalog.store.update(id, fields)
Метод для обновления склада.
Если операция успешна, возвращается id обновлённого склада.
Параметры
Параметр | Тип | Описание |
---|---|---|
id | string | Идентификатор склада. |
fields | array | Параметры обновляемого склада. |
Примеры
BX24.callMethod( 'catalog.store.update', { id: 42, fields: { 'title': 'Склад 1', 'sort': '100', 'active': 'Y', 'issuingCenter': 'Y', 'shippingCenter': 'Y', 'code': 'store_1', 'address': 'пр. Московский д. 52', 'phone': '+0 123 456 789', 'schedule': 'Пн.-Пт. с 9:00 до 20:00, Сб.-Вс. с 11:00 до 18:00', 'xmlId': 'store_1', } }, function(result) { if(result.error()) console.error(result.error()); else console.log(result.data()); } );
$result = CRest::call( 'catalog.store.update', [ 'id' => 42, 'fields' => [ 'title' => 'Склад 1', 'sort' => '100', 'active' => 'Y', 'issuingCenter' => 'Y', 'shippingCenter' => 'Y', 'code' => 'store_1', 'address' => 'пр. Московский д. 52', 'phone' => '+0 123 456 789', 'schedule' => 'Пн.-Пт. с 9:00 до 20:00, Сб.-Вс. с 11:00 до 18:00', 'xmlId' => 'store_1', ], ] ); echo '<pre>'; print_r($result); echo '</pre>';
© «Битрикс», 2001-2024, «1С-Битрикс», 2024