付款单申请
This commit is contained in:
parent
37a4b2fa71
commit
113e7018e0
|
|
@ -394,8 +394,8 @@ function getEditedActualValues() {
|
|||
if (!itemId) return; // 无ID则跳过
|
||||
|
||||
// 获取输入框中的实际值(为空则用原值)
|
||||
const actualGls = $tr.find('.actual-gls').val() || $tr.find('td:eq(8)').text(); // 实际公里数,为空取预估公里数
|
||||
const actualMoney = $tr.find('.actual-money').val() || $tr.find('td:eq(11)').text().replace('¥ ', ''); // 实际金额,为空取预估金额
|
||||
const actualGls = $tr.find('.actual-gls').val() || $tr.find('td:eq(9)').text(); // 实际公里数,为空取预估公里数
|
||||
const actualMoney = $tr.find('.actual-money').val() || $tr.find('td:eq(12)').text().replace('¥ ', ''); // 实际金额,为空取预估金额
|
||||
|
||||
actualValues.carActualList.push({
|
||||
outDetailId: itemId,
|
||||
|
|
@ -411,8 +411,8 @@ function getEditedActualValues() {
|
|||
if (!itemId) return; // 无ID则跳过
|
||||
|
||||
// 获取输入框中的实际金额(为空则用原值)
|
||||
const actualPlanDay = $tr.find('.actual-dc-planDay').val() || $tr.find('td:eq(5)').text().replace('¥ ', '');
|
||||
const actualDcMoney = $tr.find('.actual-dc-money').val() || $tr.find('td:eq(8)').text().replace('¥ ', '');
|
||||
const actualPlanDay = $tr.find('.actual-dc-planDay').val() || $tr.find('td:eq(6)').text();
|
||||
const actualDcMoney = $tr.find('.actual-dc-money').val() || $tr.find('td:eq(9)').text().replace('¥ ', '');
|
||||
|
||||
actualValues.craneActualList.push({
|
||||
outDetailId: itemId,
|
||||
|
|
|
|||
|
|
@ -102,7 +102,7 @@
|
|||
<th style="width: 5%;">实际公里数</th>
|
||||
<th style="width: 6%;">单价<br>(元/吨*公里)</th>
|
||||
<th style="width: 6%;">预估金额</th>
|
||||
<th style="width: 6%;">实际金额</th>
|
||||
<th style="width: 6%;">出入场金额</th>
|
||||
<th style="width: 10%;">行驶证/挂靠协议<br>驾驶证/身份证/导航图</th>
|
||||
<th style="width: 9%;">需求计划编号</th>
|
||||
</tr>
|
||||
|
|
@ -118,7 +118,7 @@
|
|||
<th style="width: 8%;">实际使用天数</th>
|
||||
<th style="width: 15%;">租赁单价</th>
|
||||
<th style="width: 8%;">预估金额</th>
|
||||
<th style="width: 8%;">实际金额</th>
|
||||
<th style="width: 8%;">出入场金额</th>
|
||||
<th style="width: 11%;">操作证/<br>身份证/导航图</th>
|
||||
<th style="width: 10%;">需求计划编号</th>
|
||||
</tr>
|
||||
|
|
|
|||
Loading…
Reference in New Issue