预算页面修改

master
hanbo 2022-01-05 11:29:47 +08:00
parent a2df7ab148
commit 4cb8f85788
1 changed files with 26 additions and 0 deletions

View File

@ -124,6 +124,12 @@ $(function () {
return; return;
} }
dataPlan = prepareAjaxDataVerify(dataPlan, BUDGET_PLAN_DETAIL, $("#id").val());
if(dataPlan){
postAjax(base+"/project/budgetEditSaveBudgetPlanDetail", dataPlan);
}
updateBudgetPlanDetailDataUnsubmit();
$("#saveDraft").attr('disabled', true); $("#saveDraft").attr('disabled', true);
var message = verifyProjectContributionProfitRate(); var message = verifyProjectContributionProfitRate();
@ -159,6 +165,13 @@ $(function () {
return; return;
} }
//如果没有提交则自动计算预算信息
dataIncome = prepareAjaxDataVerify(dataIncome, INCOME_DETAIL, $("#id").val());
if(dataIncome.details){
postAjax(base+"/project/budgetEditSaveIncomeDetail", dataIncome);
}
updateIncomeDataUnsubmit(dataIncomeCheck);
var dataCost = collectData("am-modal-prompt-input-cost"); var dataCost = collectData("am-modal-prompt-input-cost");
if (dataCost.length <= 0) { if (dataCost.length <= 0) {
window.confirm('请填写采购成本明细表'); window.confirm('请填写采购成本明细表');
@ -170,6 +183,13 @@ $(function () {
return; return;
} }
//如果没有提交则自动计算预算信息
dataCost = prepareAjaxDataVerify(dataCost, COST_DETAIL, $("#id").val());
if(dataCost){
postAjax(base+"/project/budgetEditSaveCostDetail", dataCost);
}
updateCostDataIfUnsubmit(dataCostCheck);
var dataManage = collectData("am-modal-prompt-input-cost-project-manage"); var dataManage = collectData("am-modal-prompt-input-cost-project-manage");
if (dataManage.length <= 0) { if (dataManage.length <= 0) {
window.confirm('请填写项目管理成本表'); window.confirm('请填写项目管理成本表');
@ -181,6 +201,12 @@ $(function () {
return; return;
} }
dataManage = prepareAjaxDataVerify(dataManage, COST_PROJECT_MANAGE_DETAIL, $("#id").val());
if(dataManage){
postAjax(base+"/project/budgetEditSaveCostProjectManageDetail", dataManage);
}
updateCostProjectManageDataUnsubmit(dataManageCheck);
var dataPlan = collectData("am-modal-prompt-input-budget-plan-detail"); var dataPlan = collectData("am-modal-prompt-input-budget-plan-detail");
if (dataPlan.length <= 0) { if (dataPlan.length <= 0) {
window.confirm('请填写项目资金计划表'); window.confirm('请填写项目资金计划表');