catalog.store.add
Scope: catalog Права на выполнение: для всех
catalog.store.add(fields)
Метод для добавления склада.
Если операция успешна, возвращается id добавленного склада.
Параметры
Параметр | Тип | Описание |
---|---|---|
fields | array | Параметры добавляемого склада. |
Примеры
BX24.callMethod( 'catalog.store.add', { 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.add', [ '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