|
@@ -122,6 +122,18 @@ public class WmScorePackageSettleNoteServiceImpl extends ServiceImpl<WmScorePack
|
|
|
return noteMapper.getWmTaskForSettlePage(page, note);
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 结算包结算列表(分页)
|
|
|
+ *
|
|
|
+ * @param page
|
|
|
+ * @param note
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @Override
|
|
|
+ public IPage<WmTaskSettleNoteOutput> getWmTaskForSettlePage2(Page page, WmScorePackageSettleNote note) {
|
|
|
+ return noteMapper.getWmTaskForSettlePage2(page, note);
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 结算包结算列表
|
|
|
*
|
|
@@ -440,7 +452,7 @@ public class WmScorePackageSettleNoteServiceImpl extends ServiceImpl<WmScorePack
|
|
|
updateEntity.setSubType(subType);
|
|
|
updateEntity.setSubjectLocation(note.getSubjectLocation());
|
|
|
updateEntity.setInvoiceType(note.getInvoiceType());
|
|
|
- updateEntity.setCategoryName(note.toCategoryName());
|
|
|
+ updateEntity.setCategoryName(note.getCategoryName());
|
|
|
updateEntity.setSettleAmount(note.getSettleAmount());
|
|
|
updateEntity.setActualAmount(note.getActualAmount());
|
|
|
updateEntity.setSettleNoteStatus(9);
|
|
@@ -459,7 +471,7 @@ public class WmScorePackageSettleNoteServiceImpl extends ServiceImpl<WmScorePack
|
|
|
entity.setSubType(subType);
|
|
|
entity.setSubjectLocation(note.getSubjectLocation());
|
|
|
entity.setInvoiceType(note.getInvoiceType());
|
|
|
- entity.setCategoryName(note.toCategoryName());
|
|
|
+ entity.setCategoryName(note.getCategoryName());
|
|
|
entity.setSettleAmount(note.getSettleAmount());
|
|
|
entity.setActualAmount(note.getActualAmount());
|
|
|
entity.setDiscount(new BigDecimal(1));
|