增加提示语
parent
24d7a8a8a2
commit
1117c89904
|
@ -47,6 +47,9 @@ public class MonthlySettleService {
|
|||
public ResponseMsg check(Collection<Map> excelMap, String date) {
|
||||
int successCount = 0;
|
||||
int errorCount = 0;
|
||||
if (date == null) {
|
||||
return ResponseMsg.buildFailedMsg("请选择导入时间!");
|
||||
}
|
||||
List<String> errorList = new ArrayList<>();
|
||||
List<MonthlySettle> monthlySettleList = new ArrayList<>();
|
||||
Set<String> projectNameSet = new HashSet<>();
|
||||
|
|
|
@ -912,6 +912,7 @@ function updateIncomeDataUnsubmit(incomeDetails) {
|
|||
$("input[name='incomeTotalTaxInclude']").val(f2Fixed(deviceTaxInclude+engineerTaxInclude+serviceTaxInclude));
|
||||
$("input[name='incomeTotalTaxExclude']").val(f2Fixed(deviceTaxExclude+engineerTaxExclude+serviceTaxExclude));
|
||||
$("input[name='incomeTotalTax']").val(f2Fixed(deviceTaxInclude+engineerTaxInclude+serviceTaxInclude-(deviceTaxExclude+engineerTaxExclude+serviceTaxExclude)));
|
||||
console.log("costCompanyManageTaxExclude1: " + deviceTaxExclude + ", " + engineerTaxExclude + ", " + serviceTaxExclude);
|
||||
$("input[name='costCompanyManageTaxExclude']").val(f2Fixed(0.028*(deviceTaxExclude+engineerTaxExclude+serviceTaxExclude)));
|
||||
|
||||
|
||||
|
|
|
@ -127,6 +127,7 @@ function updateIncomeData(data,returnData) {
|
|||
$("input[name='incomeTotalTaxInclude']").val(f2Fixed(deviceTaxInclude+engineerTaxInclude+serviceTaxInclude));
|
||||
$("input[name='incomeTotalTaxExclude']").val(f2Fixed(deviceTaxExclude+engineerTaxExclude+serviceTaxExclude));
|
||||
$("input[name='incomeTotalTax']").val(f2Fixed(deviceTax+engineerTax+serviceTax));
|
||||
console.log("costCompanyManageTaxExclude2: " + deviceTaxExclude + ", " + engineerTaxExclude + ", " + serviceTaxExclude);
|
||||
$("input[name='costCompanyManageTaxExclude']").val(f2Fixed(0.028*(deviceTaxExclude+deviceTaxExclude+deviceTaxExclude)));
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue