上下架读取商品名称
parent
47afd60a1f
commit
943e0a1b72
|
@ -124,11 +124,11 @@ public class dscUtil {
|
|||
String res = HttpUtil.get(baseurl,paramMap);
|
||||
return res;
|
||||
}
|
||||
public static String getOrderGoods(int orderId){
|
||||
public static String getOrderGoods(String orderId){
|
||||
String baseurl = ResourceUtil.getConfigByName("dsc.url");
|
||||
Map<String, Object> paramMap = getbasepara();
|
||||
paramMap.put("method","dsc.order.goods.info.get");
|
||||
paramMap.put("order_id",orderId);
|
||||
paramMap.put("method","dsc.order.goods.list.get");
|
||||
paramMap.put("order_sn",orderId);
|
||||
String res = HttpUtil.get(baseurl,paramMap);
|
||||
return res;
|
||||
}
|
||||
|
@ -197,6 +197,7 @@ public class dscUtil {
|
|||
public static void saveOneOrder(orderRes orderhead) {
|
||||
String cusCode = ResourceUtil.getConfigByName("dsc.cuscode");
|
||||
String imcuscode = orderhead.getInfo().getOrderSn();
|
||||
String order_id =orderhead.getInfo().getMainOrderId();
|
||||
SystemService systemService =ApplicationContextUtil.getContext().getBean(SystemService.class);
|
||||
WmOmNoticeHServiceI wmOmNoticeHService =ApplicationContextUtil.getContext().getBean(WmOmNoticeHServiceI.class);
|
||||
WmOmNoticeHEntity wmimh = systemService.findUniqueByProperty(WmOmNoticeHEntity.class, "imCusCode", imcuscode);
|
||||
|
@ -217,6 +218,27 @@ public class dscUtil {
|
|||
wmOmNoticeH.setDelvMember(orderhead.getInfo().getConsignee());
|
||||
wmOmNoticeH.setDelvMobile(orderhead.getInfo().getMobile());
|
||||
wmOmNoticeH.setDelvAddr(orderhead.getInfo().getAddress());
|
||||
String orderGoodsRes = getOrderGoods(order_id);
|
||||
orderGoodsRes orderGoods = JSONHelper.fromJsonToObject(orderGoodsRes,orderGoodsRes.class);
|
||||
for(com.zzjee.wmutil.dsc.orderGoodsRes.InfoBean.ListBean t:orderGoods.getInfo().getList()){
|
||||
WmOmNoticeIEntity wmi = new WmOmNoticeIEntity();
|
||||
wmi.setGoodsId(t.getGoodsId());
|
||||
MvGoodsEntity mvgoods = systemService.findUniqueByProperty(MvGoodsEntity.class, "goodsCode", wmi.getGoodsId());
|
||||
if (mvgoods != null) {
|
||||
wmi.setGoodsName(mvgoods.getGoodsName());
|
||||
wmi.setGoodsUnit(mvgoods.getShlDanWei());
|
||||
}
|
||||
// wmi.setGoodsProData(DateUtils.str2Date(billResult.getData().get(s).getDetail().get(k).getPdProdmadedate(), DateUtils.date_sdf));
|
||||
wmi.setGoodsQua(t.getGoodsNumber());
|
||||
// wmi.setGoodsPrdData(billResult.getData().get(s).getDetail().get(k).getPdProdmadedate2User());
|
||||
wmi.setOtherId(t.getRecId());
|
||||
|
||||
wmomNoticeIListnew.add(wmi);
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
// for (int k = 0; k <order.getInfo().; k++) {
|
||||
// WmOmNoticeIEntity wmi = new WmOmNoticeIEntity();
|
||||
// wmi.setGoodsId(billResult.getData().get(s).getDetail().get(k).getPdProdcode());
|
||||
|
|
|
@ -0,0 +1,515 @@
|
|||
package com.zzjee.wmutil.dsc;
|
||||
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class orderGoodsRes {
|
||||
|
||||
|
||||
/**
|
||||
* result : success
|
||||
* error : 0
|
||||
* msg : 成功获取数据
|
||||
* info : {"list":[{"rec_id":"6","order_id":"9","order_sn":null,"user_id":"0","cart_recid":"","goods_id":"923","goods_name":"YSL/圣罗兰 莹亮纯魅唇膏","goods_sn":"ECS000923","product_id":"0","goods_number":"2","market_price":"320.00","goods_price":"171.00","goods_attr":"","send_number":"0","is_real":"1","extension_code":"","parent_id":"0","is_gift":"0","model_attr":"0","goods_attr_id":"","ru_id":"0","shopping_fee":"0.00","warehouse_id":"1","area_id":"4","is_single":"0","freight":"0","tid":"0","shipping_fee":"0.00","drp_money":"0.00","is_distribution":"0","commission_rate":"0","stages_qishu":"-1"},{"rec_id":"7","order_id":"10","order_sn":null,"user_id":"0","cart_recid":"","goods_id":"922","goods_name":"MAC/魅可 立体绒光修容饼","goods_sn":"ECS000922","product_id":"0","goods_number":"10","market_price":"340.00","goods_price":"173.00","goods_attr":"","send_number":"0","is_real":"1","extension_code":"","parent_id":"0","is_gift":"0","model_attr":"0","goods_attr_id":"","ru_id":"0","shopping_fee":"0.00","warehouse_id":"0","area_id":"0","is_single":"0","freight":"0","tid":"0","shipping_fee":"0.00","drp_money":"0.00","is_distribution":"0","commission_rate":"0","stages_qishu":"-1"},{"rec_id":"8","order_id":"17","order_sn":null,"user_id":"0","cart_recid":"","goods_id":"2345","goods_name":"爱他美3段婴儿奶粉900克","goods_sn":"PGT002345","product_id":"0","goods_number":"1","market_price":"111.60","goods_price":"93.00","goods_attr":"","send_number":"0","is_real":"1","extension_code":"","parent_id":"0","is_gift":"0","model_attr":"0","goods_attr_id":"","ru_id":"0","shopping_fee":"0.00","warehouse_id":"0","area_id":"0","is_single":"0","freight":"0","tid":"0","shipping_fee":"0.00","drp_money":"0.00","is_distribution":"0","commission_rate":"0","stages_qishu":"-1"}],"filter":{"page":1,"page_size":15,"record_count":"3","page_count":1},"page_count":1,"record_count":"3"}
|
||||
*/
|
||||
|
||||
@SerializedName("result")
|
||||
private String result;
|
||||
@SerializedName("error")
|
||||
private int error;
|
||||
@SerializedName("msg")
|
||||
private String msg;
|
||||
@SerializedName("info")
|
||||
private InfoBean info;
|
||||
|
||||
public String getResult() {
|
||||
return result;
|
||||
}
|
||||
|
||||
public void setResult(String result) {
|
||||
this.result = result;
|
||||
}
|
||||
|
||||
public int getError() {
|
||||
return error;
|
||||
}
|
||||
|
||||
public void setError(int error) {
|
||||
this.error = error;
|
||||
}
|
||||
|
||||
public String getMsg() {
|
||||
return msg;
|
||||
}
|
||||
|
||||
public void setMsg(String msg) {
|
||||
this.msg = msg;
|
||||
}
|
||||
|
||||
public InfoBean getInfo() {
|
||||
return info;
|
||||
}
|
||||
|
||||
public void setInfo(InfoBean info) {
|
||||
this.info = info;
|
||||
}
|
||||
|
||||
public static class InfoBean {
|
||||
/**
|
||||
* list : [{"rec_id":"6","order_id":"9","order_sn":null,"user_id":"0","cart_recid":"","goods_id":"923","goods_name":"YSL/圣罗兰 莹亮纯魅唇膏","goods_sn":"ECS000923","product_id":"0","goods_number":"2","market_price":"320.00","goods_price":"171.00","goods_attr":"","send_number":"0","is_real":"1","extension_code":"","parent_id":"0","is_gift":"0","model_attr":"0","goods_attr_id":"","ru_id":"0","shopping_fee":"0.00","warehouse_id":"1","area_id":"4","is_single":"0","freight":"0","tid":"0","shipping_fee":"0.00","drp_money":"0.00","is_distribution":"0","commission_rate":"0","stages_qishu":"-1"},{"rec_id":"7","order_id":"10","order_sn":null,"user_id":"0","cart_recid":"","goods_id":"922","goods_name":"MAC/魅可 立体绒光修容饼","goods_sn":"ECS000922","product_id":"0","goods_number":"10","market_price":"340.00","goods_price":"173.00","goods_attr":"","send_number":"0","is_real":"1","extension_code":"","parent_id":"0","is_gift":"0","model_attr":"0","goods_attr_id":"","ru_id":"0","shopping_fee":"0.00","warehouse_id":"0","area_id":"0","is_single":"0","freight":"0","tid":"0","shipping_fee":"0.00","drp_money":"0.00","is_distribution":"0","commission_rate":"0","stages_qishu":"-1"},{"rec_id":"8","order_id":"17","order_sn":null,"user_id":"0","cart_recid":"","goods_id":"2345","goods_name":"爱他美3段婴儿奶粉900克","goods_sn":"PGT002345","product_id":"0","goods_number":"1","market_price":"111.60","goods_price":"93.00","goods_attr":"","send_number":"0","is_real":"1","extension_code":"","parent_id":"0","is_gift":"0","model_attr":"0","goods_attr_id":"","ru_id":"0","shopping_fee":"0.00","warehouse_id":"0","area_id":"0","is_single":"0","freight":"0","tid":"0","shipping_fee":"0.00","drp_money":"0.00","is_distribution":"0","commission_rate":"0","stages_qishu":"-1"}]
|
||||
* filter : {"page":1,"page_size":15,"record_count":"3","page_count":1}
|
||||
* page_count : 1
|
||||
* record_count : 3
|
||||
*/
|
||||
|
||||
@SerializedName("filter")
|
||||
private FilterBean filter;
|
||||
@SerializedName("page_count")
|
||||
private int pageCount;
|
||||
@SerializedName("record_count")
|
||||
private String recordCount;
|
||||
@SerializedName("list")
|
||||
private List<ListBean> list;
|
||||
|
||||
public FilterBean getFilter() {
|
||||
return filter;
|
||||
}
|
||||
|
||||
public void setFilter(FilterBean filter) {
|
||||
this.filter = filter;
|
||||
}
|
||||
|
||||
public int getPageCount() {
|
||||
return pageCount;
|
||||
}
|
||||
|
||||
public void setPageCount(int pageCount) {
|
||||
this.pageCount = pageCount;
|
||||
}
|
||||
|
||||
public String getRecordCount() {
|
||||
return recordCount;
|
||||
}
|
||||
|
||||
public void setRecordCount(String recordCount) {
|
||||
this.recordCount = recordCount;
|
||||
}
|
||||
|
||||
public List<ListBean> getList() {
|
||||
return list;
|
||||
}
|
||||
|
||||
public void setList(List<ListBean> list) {
|
||||
this.list = list;
|
||||
}
|
||||
|
||||
public static class FilterBean {
|
||||
/**
|
||||
* page : 1
|
||||
* page_size : 15
|
||||
* record_count : 3
|
||||
* page_count : 1
|
||||
*/
|
||||
|
||||
@SerializedName("page")
|
||||
private int page;
|
||||
@SerializedName("page_size")
|
||||
private int pageSize;
|
||||
@SerializedName("record_count")
|
||||
private String recordCount;
|
||||
@SerializedName("page_count")
|
||||
private int pageCount;
|
||||
|
||||
public int getPage() {
|
||||
return page;
|
||||
}
|
||||
|
||||
public void setPage(int page) {
|
||||
this.page = page;
|
||||
}
|
||||
|
||||
public int getPageSize() {
|
||||
return pageSize;
|
||||
}
|
||||
|
||||
public void setPageSize(int pageSize) {
|
||||
this.pageSize = pageSize;
|
||||
}
|
||||
|
||||
public String getRecordCount() {
|
||||
return recordCount;
|
||||
}
|
||||
|
||||
public void setRecordCount(String recordCount) {
|
||||
this.recordCount = recordCount;
|
||||
}
|
||||
|
||||
public int getPageCount() {
|
||||
return pageCount;
|
||||
}
|
||||
|
||||
public void setPageCount(int pageCount) {
|
||||
this.pageCount = pageCount;
|
||||
}
|
||||
}
|
||||
|
||||
public static class ListBean {
|
||||
/**
|
||||
* rec_id : 6
|
||||
* order_id : 9
|
||||
* order_sn : null
|
||||
* user_id : 0
|
||||
* cart_recid :
|
||||
* goods_id : 923
|
||||
* goods_name : YSL/圣罗兰 莹亮纯魅唇膏
|
||||
* goods_sn : ECS000923
|
||||
* product_id : 0
|
||||
* goods_number : 2
|
||||
* market_price : 320.00
|
||||
* goods_price : 171.00
|
||||
* goods_attr :
|
||||
* send_number : 0
|
||||
* is_real : 1
|
||||
* extension_code :
|
||||
* parent_id : 0
|
||||
* is_gift : 0
|
||||
* model_attr : 0
|
||||
* goods_attr_id :
|
||||
* ru_id : 0
|
||||
* shopping_fee : 0.00
|
||||
* warehouse_id : 1
|
||||
* area_id : 4
|
||||
* is_single : 0
|
||||
* freight : 0
|
||||
* tid : 0
|
||||
* shipping_fee : 0.00
|
||||
* drp_money : 0.00
|
||||
* is_distribution : 0
|
||||
* commission_rate : 0
|
||||
* stages_qishu : -1
|
||||
*/
|
||||
|
||||
@SerializedName("rec_id")
|
||||
private String recId;
|
||||
@SerializedName("order_id")
|
||||
private String orderId;
|
||||
@SerializedName("order_sn")
|
||||
private Object orderSn;
|
||||
@SerializedName("user_id")
|
||||
private String userId;
|
||||
@SerializedName("cart_recid")
|
||||
private String cartRecid;
|
||||
@SerializedName("goods_id")
|
||||
private String goodsId;
|
||||
@SerializedName("goods_name")
|
||||
private String goodsName;
|
||||
@SerializedName("goods_sn")
|
||||
private String goodsSn;
|
||||
@SerializedName("product_id")
|
||||
private String productId;
|
||||
@SerializedName("goods_number")
|
||||
private String goodsNumber;
|
||||
@SerializedName("market_price")
|
||||
private String marketPrice;
|
||||
@SerializedName("goods_price")
|
||||
private String goodsPrice;
|
||||
@SerializedName("goods_attr")
|
||||
private String goodsAttr;
|
||||
@SerializedName("send_number")
|
||||
private String sendNumber;
|
||||
@SerializedName("is_real")
|
||||
private String isReal;
|
||||
@SerializedName("extension_code")
|
||||
private String extensionCode;
|
||||
@SerializedName("parent_id")
|
||||
private String parentId;
|
||||
@SerializedName("is_gift")
|
||||
private String isGift;
|
||||
@SerializedName("model_attr")
|
||||
private String modelAttr;
|
||||
@SerializedName("goods_attr_id")
|
||||
private String goodsAttrId;
|
||||
@SerializedName("ru_id")
|
||||
private String ruId;
|
||||
@SerializedName("shopping_fee")
|
||||
private String shoppingFee;
|
||||
@SerializedName("warehouse_id")
|
||||
private String warehouseId;
|
||||
@SerializedName("area_id")
|
||||
private String areaId;
|
||||
@SerializedName("is_single")
|
||||
private String isSingle;
|
||||
@SerializedName("freight")
|
||||
private String freight;
|
||||
@SerializedName("tid")
|
||||
private String tid;
|
||||
@SerializedName("shipping_fee")
|
||||
private String shippingFee;
|
||||
@SerializedName("drp_money")
|
||||
private String drpMoney;
|
||||
@SerializedName("is_distribution")
|
||||
private String isDistribution;
|
||||
@SerializedName("commission_rate")
|
||||
private String commissionRate;
|
||||
@SerializedName("stages_qishu")
|
||||
private String stagesQishu;
|
||||
|
||||
public String getRecId() {
|
||||
return recId;
|
||||
}
|
||||
|
||||
public void setRecId(String recId) {
|
||||
this.recId = recId;
|
||||
}
|
||||
|
||||
public String getOrderId() {
|
||||
return orderId;
|
||||
}
|
||||
|
||||
public void setOrderId(String orderId) {
|
||||
this.orderId = orderId;
|
||||
}
|
||||
|
||||
public Object getOrderSn() {
|
||||
return orderSn;
|
||||
}
|
||||
|
||||
public void setOrderSn(Object orderSn) {
|
||||
this.orderSn = orderSn;
|
||||
}
|
||||
|
||||
public String getUserId() {
|
||||
return userId;
|
||||
}
|
||||
|
||||
public void setUserId(String userId) {
|
||||
this.userId = userId;
|
||||
}
|
||||
|
||||
public String getCartRecid() {
|
||||
return cartRecid;
|
||||
}
|
||||
|
||||
public void setCartRecid(String cartRecid) {
|
||||
this.cartRecid = cartRecid;
|
||||
}
|
||||
|
||||
public String getGoodsId() {
|
||||
return goodsId;
|
||||
}
|
||||
|
||||
public void setGoodsId(String goodsId) {
|
||||
this.goodsId = goodsId;
|
||||
}
|
||||
|
||||
public String getGoodsName() {
|
||||
return goodsName;
|
||||
}
|
||||
|
||||
public void setGoodsName(String goodsName) {
|
||||
this.goodsName = goodsName;
|
||||
}
|
||||
|
||||
public String getGoodsSn() {
|
||||
return goodsSn;
|
||||
}
|
||||
|
||||
public void setGoodsSn(String goodsSn) {
|
||||
this.goodsSn = goodsSn;
|
||||
}
|
||||
|
||||
public String getProductId() {
|
||||
return productId;
|
||||
}
|
||||
|
||||
public void setProductId(String productId) {
|
||||
this.productId = productId;
|
||||
}
|
||||
|
||||
public String getGoodsNumber() {
|
||||
return goodsNumber;
|
||||
}
|
||||
|
||||
public void setGoodsNumber(String goodsNumber) {
|
||||
this.goodsNumber = goodsNumber;
|
||||
}
|
||||
|
||||
public String getMarketPrice() {
|
||||
return marketPrice;
|
||||
}
|
||||
|
||||
public void setMarketPrice(String marketPrice) {
|
||||
this.marketPrice = marketPrice;
|
||||
}
|
||||
|
||||
public String getGoodsPrice() {
|
||||
return goodsPrice;
|
||||
}
|
||||
|
||||
public void setGoodsPrice(String goodsPrice) {
|
||||
this.goodsPrice = goodsPrice;
|
||||
}
|
||||
|
||||
public String getGoodsAttr() {
|
||||
return goodsAttr;
|
||||
}
|
||||
|
||||
public void setGoodsAttr(String goodsAttr) {
|
||||
this.goodsAttr = goodsAttr;
|
||||
}
|
||||
|
||||
public String getSendNumber() {
|
||||
return sendNumber;
|
||||
}
|
||||
|
||||
public void setSendNumber(String sendNumber) {
|
||||
this.sendNumber = sendNumber;
|
||||
}
|
||||
|
||||
public String getIsReal() {
|
||||
return isReal;
|
||||
}
|
||||
|
||||
public void setIsReal(String isReal) {
|
||||
this.isReal = isReal;
|
||||
}
|
||||
|
||||
public String getExtensionCode() {
|
||||
return extensionCode;
|
||||
}
|
||||
|
||||
public void setExtensionCode(String extensionCode) {
|
||||
this.extensionCode = extensionCode;
|
||||
}
|
||||
|
||||
public String getParentId() {
|
||||
return parentId;
|
||||
}
|
||||
|
||||
public void setParentId(String parentId) {
|
||||
this.parentId = parentId;
|
||||
}
|
||||
|
||||
public String getIsGift() {
|
||||
return isGift;
|
||||
}
|
||||
|
||||
public void setIsGift(String isGift) {
|
||||
this.isGift = isGift;
|
||||
}
|
||||
|
||||
public String getModelAttr() {
|
||||
return modelAttr;
|
||||
}
|
||||
|
||||
public void setModelAttr(String modelAttr) {
|
||||
this.modelAttr = modelAttr;
|
||||
}
|
||||
|
||||
public String getGoodsAttrId() {
|
||||
return goodsAttrId;
|
||||
}
|
||||
|
||||
public void setGoodsAttrId(String goodsAttrId) {
|
||||
this.goodsAttrId = goodsAttrId;
|
||||
}
|
||||
|
||||
public String getRuId() {
|
||||
return ruId;
|
||||
}
|
||||
|
||||
public void setRuId(String ruId) {
|
||||
this.ruId = ruId;
|
||||
}
|
||||
|
||||
public String getShoppingFee() {
|
||||
return shoppingFee;
|
||||
}
|
||||
|
||||
public void setShoppingFee(String shoppingFee) {
|
||||
this.shoppingFee = shoppingFee;
|
||||
}
|
||||
|
||||
public String getWarehouseId() {
|
||||
return warehouseId;
|
||||
}
|
||||
|
||||
public void setWarehouseId(String warehouseId) {
|
||||
this.warehouseId = warehouseId;
|
||||
}
|
||||
|
||||
public String getAreaId() {
|
||||
return areaId;
|
||||
}
|
||||
|
||||
public void setAreaId(String areaId) {
|
||||
this.areaId = areaId;
|
||||
}
|
||||
|
||||
public String getIsSingle() {
|
||||
return isSingle;
|
||||
}
|
||||
|
||||
public void setIsSingle(String isSingle) {
|
||||
this.isSingle = isSingle;
|
||||
}
|
||||
|
||||
public String getFreight() {
|
||||
return freight;
|
||||
}
|
||||
|
||||
public void setFreight(String freight) {
|
||||
this.freight = freight;
|
||||
}
|
||||
|
||||
public String getTid() {
|
||||
return tid;
|
||||
}
|
||||
|
||||
public void setTid(String tid) {
|
||||
this.tid = tid;
|
||||
}
|
||||
|
||||
public String getShippingFee() {
|
||||
return shippingFee;
|
||||
}
|
||||
|
||||
public void setShippingFee(String shippingFee) {
|
||||
this.shippingFee = shippingFee;
|
||||
}
|
||||
|
||||
public String getDrpMoney() {
|
||||
return drpMoney;
|
||||
}
|
||||
|
||||
public void setDrpMoney(String drpMoney) {
|
||||
this.drpMoney = drpMoney;
|
||||
}
|
||||
|
||||
public String getIsDistribution() {
|
||||
return isDistribution;
|
||||
}
|
||||
|
||||
public void setIsDistribution(String isDistribution) {
|
||||
this.isDistribution = isDistribution;
|
||||
}
|
||||
|
||||
public String getCommissionRate() {
|
||||
return commissionRate;
|
||||
}
|
||||
|
||||
public void setCommissionRate(String commissionRate) {
|
||||
this.commissionRate = commissionRate;
|
||||
}
|
||||
|
||||
public String getStagesQishu() {
|
||||
return stagesQishu;
|
||||
}
|
||||
|
||||
public void setStagesQishu(String stagesQishu) {
|
||||
this.stagesQishu = stagesQishu;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -109,10 +109,12 @@ public class HttpUtil {
|
|||
|
||||
public static void main(String args[]){
|
||||
// dscUtil.updateGoodsFromDsc();
|
||||
// String res = dscUtil.getOrderList("1");
|
||||
String res = dscUtil.getOrderGoods(4);
|
||||
// String res = dscUtil.getOrderList("1","","");
|
||||
// System.out.println(res);
|
||||
|
||||
System.out.println(res);
|
||||
String res = dscUtil.getOrderGoods("2019122315252182980");
|
||||
|
||||
System.out.println("order="+res);
|
||||
|
||||
|
||||
// String key="26F72780372E84B6CFAED6F7B19139CC47B1912B6CAED753";
|
||||
|
|
|
@ -98,7 +98,6 @@ function printview(){
|
|||
|
||||
</head>
|
||||
<body style="overflow-y:auto" scroll="no">
|
||||
<a class="easyui-linkbutton" style="margin-top:3px" icon="icon-print" href="javascript:printall()">打印</a>
|
||||
|
||||
<div class="printdiv"><t:formvalid formid="formobj" dialog="true" usePlugin="password" layout="table" >
|
||||
<table border=0 cellpadding=0 cellspacing=0 width=1000 style='border-collapse:
|
||||
|
@ -162,4 +161,7 @@ function printview(){
|
|||
</tr>
|
||||
</table>
|
||||
</t:formvalid></div>
|
||||
|
||||
<a class="easyui-linkbutton" style="margin-top:3px" icon="icon-print" href="javascript:printall()">打印</a>
|
||||
|
||||
</body>
|
Loading…
Reference in New Issue