bms2.0出账及发票修改;
This commit is contained in:
@@ -133,4 +133,10 @@ public class BillDetailDTO extends BaseVOEntity{
|
||||
private Double taxRate;
|
||||
@ApiModelProperty("结算币种")
|
||||
private String settlementCurrency;
|
||||
@ApiModelProperty(value = "开票项目")
|
||||
private String invoiceItem;
|
||||
@ApiModelProperty(value = "开票项目名称")
|
||||
private String invoiceItemName;
|
||||
@ApiModelProperty(value = "费用类别")
|
||||
private String feeType;
|
||||
}
|
||||
@@ -262,4 +262,9 @@ public class BillManageDTO extends BaseVOEntity{
|
||||
private Double taxRate;
|
||||
@ApiModelProperty("结算币种")
|
||||
private String settlementCurrency;
|
||||
@ApiModelProperty("业务员ID")
|
||||
private String salesmanId;
|
||||
|
||||
@ApiModelProperty("业务员ID")
|
||||
private String salesmanName;
|
||||
}
|
||||
+18
-1
@@ -1,5 +1,6 @@
|
||||
package com.mhd.bms.interfaces.dto.billingStatement;
|
||||
|
||||
import com.mhd.bms.domain.billingStatement.repository.po.BillingStatementADDVO;
|
||||
import com.mhd.common.core.annotation.Excel;
|
||||
import lombok.Data;
|
||||
import java.util.Date;
|
||||
@@ -227,4 +228,20 @@ public class BillingStatementDTO extends BaseVOEntity{
|
||||
@ApiModelProperty("业务单据记录id")
|
||||
private Long businessDocumentId;
|
||||
|
||||
}
|
||||
@ApiModelProperty(value = "无税费用")
|
||||
private BigDecimal taxFreeFee;
|
||||
@ApiModelProperty(value = "税额")
|
||||
private BigDecimal taxAmount;
|
||||
@ApiModelProperty(value = "税率")
|
||||
private Double taxRate;
|
||||
@ApiModelProperty("结算币种")
|
||||
private String settlementCurrency;
|
||||
|
||||
@ApiModelProperty("业务员ID")
|
||||
private String salesmanId;
|
||||
|
||||
@ApiModelProperty("业务员ID")
|
||||
private String salesmanName;
|
||||
private List<BillingStatementADDVO> billingStatementList;
|
||||
|
||||
}
|
||||
@@ -298,10 +298,10 @@ public class BillManageApi extends BaseController{
|
||||
@Log(title = "应收账单应收单同步用户nc65", description = "应收账单应收单同步用户nc65", businessType = BusinessType.OTHER)
|
||||
@ApiOperation("应收账单应收单同步用户nc65")
|
||||
@GetMapping(value = "/synchronousNc")
|
||||
public AjaxResult synchronousNc(@RequestParam(name="reconciliationId") String reconciliationId)
|
||||
public AjaxResult synchronousNc(@RequestParam(name="billManageId") String billManageId)
|
||||
{
|
||||
try{
|
||||
return AjaxResult.success(billManageApplicationService.synchronousNc(reconciliationId));}
|
||||
return AjaxResult.success(billManageApplicationService.synchronousNc(billManageId));}
|
||||
catch (Exception e){
|
||||
e.printStackTrace();
|
||||
return AjaxResult.error(e.getMessage());
|
||||
@@ -314,10 +314,10 @@ public class BillManageApi extends BaseController{
|
||||
@Log(title = "应收账单收款单同步用户nc65", description = "应收账单收款单同步用户nc65", businessType = BusinessType.OTHER)
|
||||
@ApiOperation("应收账单收款单同步用户nc65")
|
||||
@GetMapping(value = "/synchronousNcSK")
|
||||
public AjaxResult synchronousNcSK(@RequestParam(name="reconciliationId") String reconciliationId)
|
||||
public AjaxResult synchronousNcSK(@RequestParam(name="billManageId") String billManageId)
|
||||
{
|
||||
try{
|
||||
return AjaxResult.success(billManageApplicationService.synchronousNcSK(reconciliationId));
|
||||
return AjaxResult.success(billManageApplicationService.synchronousNcSK(billManageId));
|
||||
} catch (Exception e){
|
||||
e.printStackTrace();
|
||||
return AjaxResult.error(e.getMessage());
|
||||
|
||||
Reference in New Issue
Block a user