Browse Source

销售订单合同模板调整

master
dimengzhe 2 years ago
parent
commit
422c9cc6aa
  1. 31
      anrui-base/anrui-base-biz/src/main/java/com/yxt/anrui/base/biz/commoncontract/CommonContractService.java
  2. 50
      anrui-base/anrui-base-biz/src/main/resources/ftl/carContract.ftl
  3. 2
      anrui-base/anrui-base-biz/src/main/resources/ftl/carFin.ftl
  4. 12
      anrui-base/anrui-base-biz/src/main/resources/ftl/existingvehicles.ftl
  5. 24
      anrui-base/anrui-base-biz/src/main/resources/ftl/existingvehicles_black.ftl
  6. 4
      anrui-base/anrui-base-biz/src/main/resources/ftl/moneyFin.ftl
  7. 16
      anrui-base/anrui-base-biz/src/main/resources/ftl/orderacar.ftl
  8. 24
      anrui-base/anrui-base-biz/src/main/resources/ftl/orderacar_black.ftl
  9. 14
      anrui-base/anrui-base-biz/src/main/resources/ftl/receiveCar.ftl

31
anrui-base/anrui-base-biz/src/main/java/com/yxt/anrui/base/biz/commoncontract/CommonContractService.java

@ -6,7 +6,6 @@ import com.alibaba.fastjson.JSON;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.google.common.util.concurrent.ThreadFactoryBuilder;
import com.yxt.anrui.base.api.basevehicle.BaseVehicleSelectVo;
import com.yxt.anrui.base.api.commonappendix.CommonAppendix;
import com.yxt.anrui.base.api.commonappendix.CommonAttachTypeEnum;
import com.yxt.anrui.base.api.commoncontract.*;
@ -856,9 +855,9 @@ public class CommonContractService extends MybatisBaseService<CommonContractMapp
//查询销售订单的现车
AppOrderModelInfoVo orderModelInfoVo = appOrderDetailsVo.getModelInfo();
List<String> stringList = orderModelInfoVo.getVinList();
if (stringList.size() > 0) {
/*if (stringList.size() > 0) {
map.put("vinNo", String.join(",", stringList));
}
}*/
String ftl = "receiveCar";
InputStream inputStream = this.getClass().getClassLoader().getResourceAsStream("ftl/" + ftl + ".ftl");
//生成word文件名
@ -941,7 +940,7 @@ public class CommonContractService extends MybatisBaseService<CommonContractMapp
private String getCarFin(Map<String, Object> map, AppOrderDetailsVo appOrderDetailsVo) {
String url = "";
//查询销售订单的现车
AppOrderModelInfoVo orderModelInfoVo = appOrderDetailsVo.getModelInfo();
/*AppOrderModelInfoVo orderModelInfoVo = appOrderDetailsVo.getModelInfo();
AppOrderPriceInfoVo priceInfo = appOrderDetailsVo.getPriceInfo();
AppOrderDepositInfoVo depositInfo = appOrderDetailsVo.getDepositInfo();
String singleFinalPrice = priceInfo.getSingleFinalPrice();
@ -955,7 +954,7 @@ public class CommonContractService extends MybatisBaseService<CommonContractMapp
List<String> stringList = orderModelInfoVo.getVinList();
if (stringList.size() > 0) {
map.put("vinNo", String.join(",", stringList));
}
}*/
//车款:money,大写:moneyDx
String ftl = "carFin";
InputStream inputStream = this.getClass().getClassLoader().getResourceAsStream("ftl/" + ftl + ".ftl");
@ -980,14 +979,14 @@ public class CommonContractService extends MybatisBaseService<CommonContractMapp
private String getMoneyFin(Map<String, Object> map, AppOrderDetailsVo appOrderDetailsVo) {
String url = "";
//查询销售订单的现车
AppOrderModelInfoVo orderModelInfoVo = appOrderDetailsVo.getModelInfo();
/* AppOrderModelInfoVo orderModelInfoVo = appOrderDetailsVo.getModelInfo();
AppOrderPriceInfoVo priceInfo = appOrderDetailsVo.getPriceInfo();
AppOrderDepositInfoVo depositInfo = appOrderDetailsVo.getDepositInfo();
String singleFinalPrice = priceInfo.getSingleFinalPrice();
String deposit = depositInfo.getDeposit();
map.put("money", new BigDecimal(singleFinalPrice).multiply(new BigDecimal(priceInfo.getNumber())));
map.put("moneyDx", TransformMoney.transform(TransformMoney.getDecimalStr(Double.valueOf(new BigDecimal(singleFinalPrice).multiply(new BigDecimal(priceInfo.getNumber())).toString()).doubleValue())));
map.put("moneyXx", new BigDecimal(deposit).multiply(new BigDecimal(priceInfo.getNumber())));
map.put("moneyXx", new BigDecimal(deposit).multiply(new BigDecimal(priceInfo.getNumber())));*/
//车款:money,大写:moneyDx
String ftl = "moneyFin";
InputStream inputStream = this.getClass().getClassLoader().getResourceAsStream("ftl/" + ftl + ".ftl");
@ -1011,7 +1010,7 @@ public class CommonContractService extends MybatisBaseService<CommonContractMapp
private String getCarContract(Map<String, Object> map, AppOrderDetailsVo appOrderDetailsVo) {
String url = "";
map.put("createDate", DateUtil.today());
// map.put("createDate", DateUtil.today());
//查询销售订单的现车
AppOrderModelInfoVo orderModelInfoVo = appOrderDetailsVo.getModelInfo();
List<CarContractListVo> carContractListVos = new ArrayList<>();
@ -1019,7 +1018,7 @@ public class CommonContractService extends MybatisBaseService<CommonContractMapp
if (vinNoList.size() > 0) {
for (int i = 0; i < vinNoList.size(); i++) {
CarContractListVo carContractListVo = new CarContractListVo();
carContractListVo.setBrand(orderModelInfoVo.getBrand());
/*carContractListVo.setBrand(orderModelInfoVo.getBrand());
carContractListVo.setVinNo(vinNoList.get(i).getVinNo());
String vinSid = vinNoList.get(i).getVinSid();
if (StringUtils.isNotBlank(vinSid)) {
@ -1028,7 +1027,7 @@ public class CommonContractService extends MybatisBaseService<CommonContractMapp
if (baseVehicleSelectVo != null) {
carContractListVo.setEnginNo(baseVehicleSelectVo.getEngineNo());
}
}
}*/
carContractListVos.add(carContractListVo);
}
}
@ -1591,14 +1590,22 @@ public class CommonContractService extends MybatisBaseService<CommonContractMapp
//车辆交付地点
String address = priceInfo.getAddress();
//组装到文档相对应的字段中
map.put("createOrgName", createOrgName);
ResultBean<FinCompanyInvoicingDetailsVo> invoicingDetailsVoResultBean = finCompanyInvoicingFeign.fetchDetailsByUseOrgSid(appOrderDetailsVo.getUseOrgSid());
if (invoicingDetailsVoResultBean.getData() != null) {
map.put("createOrgName", invoicingDetailsVoResultBean.getData().getUseOrgName());
}else{
return rb.setMsg("请先完善公司开票信息");
}
// map.put("createOrgName", createOrgName);
map.put("customerName", customerName);
map.put("mobile", mobile);
map.put("idNo", idNo);
map.put("modelName", modelName);
map.put("modelConfig", modelConfig);
map.put("remarks", remarks);
map.put("insuranceInfo", insuranceInfo);
if(appOrderDetailsVo.getInsuranceState()){
map.put("insuranceInfo", insuranceInfo);
}
map.put("totalPrice", totalPrice);
map.put("priceRemarks", priceRemarks);
map.put("depositTotal", depositTotal);

50
anrui-base/anrui-base-biz/src/main/resources/ftl/carContract.ftl

@ -608,8 +608,8 @@
<wx:font wx:val="宋体"/>
<w:b/>
<w:color w:val="000000"/>
<w:sz w:val="28"/>
<w:sz-cs w:val="28"/>
<w:sz w:val="34"/>
<w:sz-cs w:val="34"/>
</w:rPr>
<w:t>车</w:t>
</w:r>
@ -628,8 +628,8 @@
<wx:font wx:val="宋体"/>
<w:b/>
<w:color w:val="000000"/>
<w:sz w:val="28"/>
<w:sz-cs w:val="28"/>
<w:sz w:val="34"/>
<w:sz-cs w:val="34"/>
</w:rPr>
<w:t>辆</w:t>
</w:r>
@ -648,8 +648,8 @@
<wx:font wx:val="宋体"/>
<w:b/>
<w:color w:val="000000"/>
<w:sz w:val="28"/>
<w:sz-cs w:val="28"/>
<w:sz w:val="34"/>
<w:sz-cs w:val="34"/>
</w:rPr>
<w:t>登</w:t>
</w:r>
@ -668,8 +668,8 @@
<wx:font wx:val="宋体"/>
<w:b/>
<w:color w:val="000000"/>
<w:sz w:val="28"/>
<w:sz-cs w:val="28"/>
<w:sz w:val="34"/>
<w:sz-cs w:val="34"/>
</w:rPr>
<w:t>记</w:t>
</w:r>
@ -688,8 +688,8 @@
<wx:font wx:val="宋体"/>
<w:b/>
<w:color w:val="000000"/>
<w:sz w:val="28"/>
<w:sz-cs w:val="28"/>
<w:sz w:val="34"/>
<w:sz-cs w:val="34"/>
</w:rPr>
<w:t>合</w:t>
</w:r>
@ -708,8 +708,8 @@
<wx:font wx:val="宋体"/>
<w:b/>
<w:color w:val="000000"/>
<w:sz w:val="28"/>
<w:sz-cs w:val="28"/>
<w:sz w:val="34"/>
<w:sz-cs w:val="34"/>
</w:rPr>
<w:t>同</w:t>
</w:r>
@ -796,7 +796,7 @@
<w:sz-cs w:val="28"/>
<w:u w:val="single"/>
</w:rPr>
<w:t> ${createOrgName!} </w:t>
<w:t> ${createOrgName1!} </w:t>
</w:r>
<w:proofErr w:type="spellEnd"/>
<w:r wsp:rsidR="003D769D">
@ -1527,7 +1527,27 @@
</w:rPr>
</w:pPr>
</w:p>
<w:p wsp:rsidR="005D1251" wsp:rsidRDefault="005D1251" wsp:rsidP="005D1251">
<w:p wsp:rsidR="00CE5AB6" wsp:rsidRDefault="00000000">
<w:pPr>
<w:spacing w:line="440" w:line-rule="exact"/>
<w:rPr>
<w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:hint="fareast"/>
<wx:font wx:val="宋体"/>
<w:sz w:val="20"/>
<w:sz-cs w:val="20"/>
</w:rPr>
</w:pPr>
<w:r>
<w:rPr>
<w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:hint="fareast"/>
<wx:font wx:val="宋体"/>
<w:sz w:val="20"/>
<w:sz-cs w:val="20"/>
</w:rPr>
<w:t> 年 月 日 年 月 日</w:t>
</w:r>
</w:p>
<#-- <w:p wsp:rsidR="005D1251" wsp:rsidRDefault="005D1251" wsp:rsidP="005D1251">
<w:pPr>
<w:rPr>
<w:rFonts w:ascii="仿宋" w:fareast="仿宋" w:h-ansi="仿宋"/>
@ -1543,7 +1563,7 @@
</w:rPr>
<w:t>注:打印1份空白合同,根据实际情况复印使用。如果开增值税票则不用打印。</w:t>
</w:r>
</w:p>
</w:p>-->
<w:p wsp:rsidR="006215F5" wsp:rsidRDefault="006215F5"/>
<w:sectPr wsp:rsidR="006215F5">
<w:pgSz w:w="11906" w:h="16838"/>

2
anrui-base/anrui-base-biz/src/main/resources/ftl/carFin.ftl

@ -904,7 +904,7 @@
<w:sz-cs w:val="28"/>
<w:u w:val="single"/>
</w:rPr>
<w:t></w:t></w:r><w:proofErr w:type="spellStart"/><w:r><w:rPr><w:rFonts w:hint="fareast"/><w:sz w:val="28"/><w:sz-cs w:val="28"/><w:u w:val="single"/></w:rPr><w:t> ${vinNo!} </w:t></w:r><w:proofErr w:type="spellEnd"/><w:r><w:rPr><w:rFonts w:hint="fareast"/><w:sz w:val="28"/><w:sz-cs w:val="28"/><w:u w:val="single"/></w:rPr><w:t></w:t>
<w:t></w:t></w:r><w:proofErr w:type="spellStart"/><w:r><w:rPr><w:rFonts w:hint="fareast"/><w:sz w:val="28"/><w:sz-cs w:val="28"/><w:u w:val="single"/></w:rPr><w:t> ${vinNo!} </w:t></w:r><w:proofErr w:type="spellEnd"/><w:r><w:rPr><w:rFonts w:hint="fareast"/><w:sz w:val="28"/><w:sz-cs w:val="28"/><w:u w:val="single"/></w:rPr><w:t></w:t>
</w:r>
<w:r>
<w:rPr>

12
anrui-base/anrui-base-biz/src/main/resources/ftl/existingvehicles.ftl

@ -906,6 +906,7 @@
<w:tcPr>
<w:tcW w:w="8522" w:type="dxa"/>
</w:tcPr>
<#if modelName??>
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
<w:pPr>
<w:widowControl/>
@ -927,6 +928,8 @@
<w:t>${modelName!}</w:t>
</w:r>
</w:p>
</#if>
<#if modelConfig??>
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
<w:pPr>
<w:widowControl/>
@ -948,6 +951,8 @@
<w:t>${modelConfig!}</w:t>
</w:r>
</w:p>
</#if>
<#if topName??>
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
<w:pPr>
<w:widowControl/>
@ -969,6 +974,7 @@
<w:t>${topName!}</w:t>
</w:r>
</w:p>
</#if>
<#if trailerName??>
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
<w:pPr>
@ -992,6 +998,7 @@
</w:r>
</w:p>
</#if>
<#if remarks??>
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
<w:pPr>
<w:widowControl/>
@ -1013,6 +1020,7 @@
<w:t>${remarks!}</w:t>
</w:r>
</w:p>
</#if>
<#if discountDetail??>
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
<w:pPr>
@ -1401,7 +1409,7 @@
<w:sz w:val="20"/>
<w:sz-cs w:val="20"/>
</w:rPr>
<w:t> 甲方: 乙方:</w:t>
<w:t> 甲方: 乙方:</w:t>
</w:r>
</w:p>
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
@ -1551,7 +1559,7 @@
<w:sz w:val="20"/>
<w:sz-cs w:val="20"/>
</w:rPr>
<w:t> 年 月 日 年 月 日</w:t>
<w:t> 年 月 日 年 月 日</w:t>
</w:r>
</w:p>
<w:sectPr wsp:rsidR="00CE5AB6">

24
anrui-base/anrui-base-biz/src/main/resources/ftl/existingvehicles_black.ftl

@ -906,6 +906,7 @@
<w:tcPr>
<w:tcW w:w="8522" w:type="dxa"/>
</w:tcPr>
<#if modelName??>
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
<w:pPr>
<w:widowControl/>
@ -927,6 +928,8 @@
<w:t>${modelName!}</w:t>
</w:r>
</w:p>
</#if>
<#if modelConfig??>
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
<w:pPr>
<w:widowControl/>
@ -948,6 +951,8 @@
<w:t>${modelConfig!}</w:t>
</w:r>
</w:p>
</#if>
<#if topName??>
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
<w:pPr>
<w:widowControl/>
@ -969,6 +974,7 @@
<w:t>${topName!}</w:t>
</w:r>
</w:p>
</#if>
<#if trailerName??>
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
<w:pPr>
@ -992,6 +998,7 @@
</w:r>
</w:p>
</#if>
<#if remarks??>
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
<w:pPr>
<w:widowControl/>
@ -1013,6 +1020,7 @@
<w:t>${remarks!}</w:t>
</w:r>
</w:p>
</#if>
<#if discountDetail??>
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
<w:pPr>
@ -1036,6 +1044,7 @@
</w:r>
</w:p>
</#if>
<#if insuranceInfo??>
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
<w:pPr>
<w:widowControl/>
@ -1059,6 +1068,7 @@
<w:t>${insuranceInfo!}</w:t>
</w:r>
</w:p>
</#if>
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
<w:pPr>
<w:widowControl/>
@ -1124,7 +1134,7 @@
<w:sz-cs w:val="20"/>
<w:u w:val="single"/>
</w:rPr>
<w:t> ${totalPrice!} </w:t>
<w:t> ${totalPrice!} </w:t>
</w:r>
<w:r>
<w:rPr>
@ -1143,7 +1153,7 @@
<w:sz-cs w:val="20"/>
<w:u w:val="single"/>
</w:rPr>
<w:t> ${priceRemarks!} </w:t>
<w:t> ${priceRemarks!} </w:t>
</w:r>
<w:r>
<w:rPr>
@ -1184,7 +1194,7 @@
<w:sz-cs w:val="20"/>
<w:u w:val="single"/>
</w:rPr>
<w:t> ${depositTotal!} </w:t>
<w:t> ${depositTotal!} </w:t>
</w:r>
<w:r>
<w:rPr>
@ -1193,7 +1203,7 @@
<w:sz w:val="20"/>
<w:sz-cs w:val="20"/>
</w:rPr>
<w:t>元${depositRemarks!},乙方提车时交清全部车款。甲方未收到全款前,车辆所有权归甲方所有。</w:t>
<w:t>元 ${depositRemarks!},乙方提车时交清全部车款。甲方未收到全款前,车辆所有权归甲方所有。</w:t>
</w:r>
</w:p>
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
@ -1401,7 +1411,7 @@
<w:sz w:val="20"/>
<w:sz-cs w:val="20"/>
</w:rPr>
<w:t> 甲方: 乙方:</w:t>
<w:t> 甲方: 乙方:</w:t>
</w:r>
</w:p>
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
@ -1531,7 +1541,7 @@
<w:sz-cs w:val="20"/>
</w:rPr>
<w:tab/>
<w:t> 地址:</w:t>
<w:t> 地址:</w:t>
</w:r>
</w:p>
<w:p wsp:rsidR="00CE5AB6" wsp:rsidRDefault="00000000">
@ -1551,7 +1561,7 @@
<w:sz w:val="20"/>
<w:sz-cs w:val="20"/>
</w:rPr>
<w:t> 年 月 日</w:t>
<w:t> 日</w:t>
</w:r>
</w:p>
<w:sectPr wsp:rsidR="00CE5AB6">

4
anrui-base/anrui-base-biz/src/main/resources/ftl/moneyFin.ftl

@ -1016,7 +1016,7 @@
<w:sz-cs w:val="28"/>
<w:u w:val="single"/>
</w:rPr>
<w:t></w:t></w:r><w:proofErr w:type="spellStart"/><w:r wsp:rsidR="00BC09AB"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:cs="宋体"/><wx:font wx:val="宋体"/><w:color w:val="000000"/><w:sz w:val="28"/><w:sz-cs w:val="28"/><w:u w:val="single"/></w:rPr><w:t> ${moneyDx!} </w:t></w:r><w:proofErr w:type="spellEnd"/><w:r wsp:rsidR="00BC09AB"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:cs="宋体"/><wx:font wx:val="宋体"/><w:color w:val="000000"/><w:sz w:val="28"/><w:sz-cs w:val="28"/><w:u w:val="single"/></w:rPr><w:t></w:t>
<w:t></w:t></w:r><w:proofErr w:type="spellStart"/><w:r wsp:rsidR="00BC09AB"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:cs="宋体"/><wx:font wx:val="宋体"/><w:color w:val="000000"/><w:sz w:val="28"/><w:sz-cs w:val="28"/><w:u w:val="single"/></w:rPr><w:t> ${moneyDx!} </w:t></w:r><w:proofErr w:type="spellEnd"/><w:r wsp:rsidR="00BC09AB"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:cs="宋体"/><wx:font wx:val="宋体"/><w:color w:val="000000"/><w:sz w:val="28"/><w:sz-cs w:val="28"/><w:u w:val="single"/></w:rPr><w:t></w:t>
</w:r>
<w:r>
<w:rPr>
@ -1342,7 +1342,7 @@
<w:sz-cs w:val="28"/>
<w:lang w:val="EN-US"/>
</w:rPr>
<w:t> 年 月 日</w:t>
<w:t> 日</w:t>
</w:r>
</w:p>
<w:sectPr wsp:rsidR="009D3B52" wsp:rsidRPr="00631439">

16
anrui-base/anrui-base-biz/src/main/resources/ftl/orderacar.ftl

@ -1021,6 +1021,7 @@
<w:tcPr>
<w:tcW w:w="8522" w:type="dxa"/>
</w:tcPr>
<#if modelName??>
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
<w:pPr>
<w:widowControl/>
@ -1043,6 +1044,8 @@
<w:t>${modelName!}</w:t>
</w:r>
</w:p>
</#if>
<#if modelConfig??>
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
<w:pPr>
<w:widowControl/>
@ -1065,6 +1068,8 @@
<w:t>${modelConfig!}</w:t>
</w:r>
</w:p>
</#if>
<#if topName??>
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
<w:pPr>
<w:widowControl/>
@ -1087,6 +1092,7 @@
<w:t>${topName!}</w:t>
</w:r>
</w:p>
</#if>
<#if trailerName??>
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
<w:pPr>
@ -1111,6 +1117,7 @@
</w:r>
</w:p>
</#if>
<#if remarks??>
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
<w:pPr>
<w:widowControl/>
@ -1133,6 +1140,7 @@
<w:t>${remarks!}</w:t>
</w:r>
</w:p>
</#if>
<#if discountDetail??>
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
<w:pPr>
@ -1157,6 +1165,7 @@
</w:r>
</w:p>
</#if>
<#if insuranceInfo??>
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
<w:pPr>
<w:widowControl/>
@ -1181,6 +1190,7 @@
<w:t>${insuranceInfo!}</w:t>
</w:r>
</w:p>
</#if>
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
<w:pPr>
<w:widowControl/>
@ -1525,7 +1535,7 @@
<w:sz w:val="20"/>
<w:sz-cs w:val="20"/>
</w:rPr>
<w:t> 甲方: 乙方:</w:t>
<w:t> 甲方: 乙方:</w:t>
</w:r>
</w:p>
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
@ -1655,7 +1665,7 @@
<w:sz-cs w:val="20"/>
</w:rPr>
<w:tab/>
<w:t> 地址:</w:t>
<w:t> 地址:</w:t>
</w:r>
</w:p>
<w:p wsp:rsidR="00CE5AB6" wsp:rsidRDefault="00000000">
@ -1675,7 +1685,7 @@
<w:sz w:val="20"/>
<w:sz-cs w:val="20"/>
</w:rPr>
<w:t> 年 月 日 年 月 日</w:t>
<w:t> 日</w:t>
</w:r>
</w:p>
<w:sectPr wsp:rsidR="008F6CBB">

24
anrui-base/anrui-base-biz/src/main/resources/ftl/orderacar_black.ftl

@ -1021,6 +1021,7 @@
<w:tcPr>
<w:tcW w:w="8522" w:type="dxa"/>
</w:tcPr>
<#if modelName??>
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
<w:pPr>
<w:widowControl/>
@ -1043,6 +1044,8 @@
<w:t>${modelName!}</w:t>
</w:r>
</w:p>
</#if>
<#if modelConfig??>
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
<w:pPr>
<w:widowControl/>
@ -1065,6 +1068,8 @@
<w:t>${modelConfig!}</w:t>
</w:r>
</w:p>
</#if>
<#if topName??>
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
<w:pPr>
<w:widowControl/>
@ -1087,6 +1092,7 @@
<w:t>${topName!}</w:t>
</w:r>
</w:p>
</#if>
<#if trailerName??>
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
<w:pPr>
@ -1111,6 +1117,7 @@
</w:r>
</w:p>
</#if>
<#if remarks??>
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
<w:pPr>
<w:widowControl/>
@ -1133,6 +1140,7 @@
<w:t>${remarks!}</w:t>
</w:r>
</w:p>
</#if>
<#if discountDetail??>
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
<w:pPr>
@ -1157,6 +1165,7 @@
</w:r>
</w:p>
</#if>
<#if insuranceInfo??>
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
<w:pPr>
<w:widowControl/>
@ -1181,6 +1190,7 @@
<w:t>${insuranceInfo!}</w:t>
</w:r>
</w:p>
</#if>
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
<w:pPr>
<w:widowControl/>
@ -1247,7 +1257,7 @@
<w:sz-cs w:val="20"/>
<w:u w:val="single"/>
</w:rPr>
<w:t> ${totalPrice!} </w:t>
<w:t> ${totalPrice!} </w:t>
</w:r>
<w:r>
<w:rPr>
@ -1266,7 +1276,7 @@
<w:sz-cs w:val="20"/>
<w:u w:val="single"/>
</w:rPr>
<w:t> ${priceRemarks!} </w:t>
<w:t> ${priceRemarks!} </w:t>
</w:r>
<w:r>
<w:rPr>
@ -1307,7 +1317,7 @@
<w:sz-cs w:val="20"/>
<w:u w:val="single"/>
</w:rPr>
<w:t> ${depositTotal!} </w:t>
<w:t> ${depositTotal!} </w:t>
</w:r>
<w:r>
<w:rPr>
@ -1316,7 +1326,7 @@
<w:sz w:val="20"/>
<w:sz-cs w:val="20"/>
</w:rPr>
<w:t>元${depositRemarks!},乙方提车时交清全部车款。甲方未收到全款前,车辆所有权归甲方所有。</w:t>
<w:t>元 ${depositRemarks!},乙方提车时交清全部车款。甲方未收到全款前,车辆所有权归甲方所有。</w:t>
</w:r>
</w:p>
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
@ -1525,7 +1535,7 @@
<w:sz w:val="20"/>
<w:sz-cs w:val="20"/>
</w:rPr>
<w:t> 甲方: 乙方:</w:t>
<w:t> 甲方: 乙方:</w:t>
</w:r>
</w:p>
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
@ -1655,7 +1665,7 @@
<w:sz-cs w:val="20"/>
</w:rPr>
<w:tab/>
<w:t> 地址:</w:t>
<w:t> 地址:</w:t>
</w:r>
</w:p>
<w:p wsp:rsidR="00CE5AB6" wsp:rsidRDefault="00000000">
@ -1675,7 +1685,7 @@
<w:sz w:val="20"/>
<w:sz-cs w:val="20"/>
</w:rPr>
<w:t> 年 月 日 年 月 日</w:t>
<w:t> 年 月 日 年 月 日</w:t>
</w:r>
</w:p>
<w:sectPr wsp:rsidR="008F6CBB">

14
anrui-base/anrui-base-biz/src/main/resources/ftl/receiveCar.ftl

@ -1157,7 +1157,7 @@
<w:sz-cs w:val="28"/>
<w:u w:val="single"/>
</w:rPr>
<w:t></w:t></w:r><w:proofErr w:type="spellStart"/><w:r wsp:rsidR="00053B2C"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:cs="宋体"/><wx:font wx:val="宋体"/><w:color w:val="000000"/><w:kern w:val="0"/><w:sz w:val="28"/><w:sz-cs w:val="28"/><w:u w:val="single"/></w:rPr><w:t> ${vinNo!} </w:t></w:r><w:proofErr w:type="spellEnd"/><w:r wsp:rsidR="00053B2C"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:cs="宋体"/><wx:font wx:val="宋体"/><w:color w:val="000000"/><w:kern w:val="0"/><w:sz w:val="28"/><w:sz-cs w:val="28"/><w:u w:val="single"/></w:rPr><w:t></w:t>
<w:t></w:t></w:r><w:proofErr w:type="spellStart"/><w:r wsp:rsidR="00053B2C"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:cs="宋体"/><wx:font wx:val="宋体"/><w:color w:val="000000"/><w:kern w:val="0"/><w:sz w:val="28"/><w:sz-cs w:val="28"/><w:u w:val="single"/></w:rPr><w:t> ${vinNo!} </w:t></w:r><w:proofErr w:type="spellEnd"/><w:r wsp:rsidR="00053B2C"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:cs="宋体"/><wx:font wx:val="宋体"/><w:color w:val="000000"/><w:kern w:val="0"/><w:sz w:val="28"/><w:sz-cs w:val="28"/><w:u w:val="single"/></w:rPr><w:t></w:t>
</w:r>
<w:r>
<w:rPr>
@ -1307,7 +1307,7 @@
<w:sz w:val="28"/>
<w:sz-cs w:val="28"/>
</w:rPr>
<w:t> 年</w:t>
<w:t> 年</w:t>
</w:r>
<w:r>
<w:rPr>
@ -1326,7 +1326,7 @@
<w:sz w:val="28"/>
<w:sz-cs w:val="28"/>
</w:rPr>
<w:t> 月</w:t>
<w:t> 月</w:t>
</w:r>
<w:r>
<w:rPr>
@ -1345,7 +1345,7 @@
<w:sz w:val="28"/>
<w:sz-cs w:val="28"/>
</w:rPr>
<w:t> 日至</w:t>
<w:t> 日至</w:t>
</w:r>
<w:r>
<w:rPr>
@ -1364,7 +1364,7 @@
<w:sz w:val="28"/>
<w:sz-cs w:val="28"/>
</w:rPr>
<w:t> 年</w:t>
<w:t> 年</w:t>
</w:r>
<w:r>
<w:rPr>
@ -1383,7 +1383,7 @@
<w:sz w:val="28"/>
<w:sz-cs w:val="28"/>
</w:rPr>
<w:t> 月</w:t>
<w:t> 月</w:t>
</w:r>
<w:r>
<w:rPr>
@ -1402,7 +1402,7 @@
<w:sz w:val="28"/>
<w:sz-cs w:val="28"/>
</w:rPr>
<w:t> 日</w:t>
<w:t> 日</w:t>
</w:r>
</w:p>
<w:p wsp:rsidR="00460A50" wsp:rsidRDefault="00460A50"/>

Loading…
Cancel
Save