分隔符漏写
parent
c47632341b
commit
c75c4eb49f
|
@ -224,13 +224,13 @@ function bindChangeableInputProjectManage() {
|
||||||
$(".input-changeable-amount-project-manage").change(function () {
|
$(".input-changeable-amount-project-manage").change(function () {
|
||||||
var amount = parseInt($(this).val());
|
var amount = parseInt($(this).val());
|
||||||
//找到对应的单价
|
//找到对应的单价
|
||||||
var price = f2($(this).parent().parent().find(".input-changeable-price-project-manage").val());
|
var price = f5($(this).parent().parent().find(".input-changeable-price-project-manage").val());
|
||||||
|
|
||||||
$(this).parent().parent().find(".input-changeable-total-project-manage").val(f2Fixed(amount*price));
|
$(this).parent().parent().find(".input-changeable-total-project-manage").val(f2Fixed(amount*price));
|
||||||
});
|
});
|
||||||
//单价改变
|
//单价改变
|
||||||
$(".input-changeable-price-project-manage").change(function () {
|
$(".input-changeable-price-project-manage").change(function () {
|
||||||
var price = f2($(this).val());
|
var price = f5($(this).val());
|
||||||
//找到对应的数量
|
//找到对应的数量
|
||||||
var amount = parseInt($(this).parent().parent().find(".input-changeable-amount-project-manage").val());
|
var amount = parseInt($(this).parent().parent().find(".input-changeable-amount-project-manage").val());
|
||||||
|
|
||||||
|
@ -297,7 +297,6 @@ function updateCostProjectManageData(data,returnData) {
|
||||||
|
|
||||||
calCostExclude();
|
calCostExclude();
|
||||||
calCostInclude();
|
calCostInclude();
|
||||||
console.log("51");
|
|
||||||
|
|
||||||
updateProjectContributionProfitRate();
|
updateProjectContributionProfitRate();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue