Commit bd2e80a6 by jianshuqin

修复出纳付需付款BUG

parent 551f4f71
......@@ -481,11 +481,11 @@ public abstract class AbstractCostService implements CostService {
SimpleDateFormat sdf = new SimpleDateFormat("yyyy/MM/dd");
NetsuiteDataDto netsuiteDataDto = new NetsuiteDataDto();
netsuiteDataDto.setTranid(costDomain.getCostNo());
if (costCashiercallbackDomain.getCashierunitcode() != null) {
netsuiteDataDto.setCurrency(costCashiercallbackDomain.getCashierunitcode().toUpperCase());
}
netsuiteDataDto.setCurrency(costCashiercallbackDomain.getCashierunitcode().toUpperCase());
netsuiteDataDto.setSubsidiary(companyCode);
netsuiteDataDto.setTrandate(sdf.format(costCashiercallbackDomain.getActualTime()));
if (costCashiercallbackDomain.getActualTime() != null) {
netsuiteDataDto.setTrandate(sdf.format(costCashiercallbackDomain.getActualTime()));
}
netsuiteDataDto.setCustbody_iofeetype(costDomain.getCostForm().toString());
//费用详情
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment