<div class="total-summa col-sm-6 indents">
<span>Стоимость</span><br>
<span class="currency-shop1" name="summa" id="summa" value="774.41">774.41 руб.</span>
<input type="hidden" id="123" value="">
</div>
span
аттрибут value
и name
? Вам нужна структура типа<span class="currency-shop1" id="sum" data-value="774.41">774.41 руб.</span>
<input type="hidden" name="total_sum" id="some_id" value="">
$('some-form').on('submit', function(event) {
var $this = $(this);
var priceInput = $this.find('#some_id');
var sum = $this.find('#sum').data('value');
priceInput.val(sum);
....Отправка формы со всеми полями....
});