Merge branch 'develop' of http://git2.tenwa.com.cn/ApzlDev/apzl_leasing into develop

This commit is contained in:
zhulh 2019-08-06 15:18:10 +08:00
commit d8dbf86264
3 changed files with 4 additions and 1 deletions

View File

@ -24,6 +24,7 @@
function queryOrder(){
var orderNo = getItemValue(0,getRow(),"ORDER_NO");
if(undefined==orderNo){alert("请选择一行");return;}
var applyNo = getItemValue(0,getRow(),"APPLY_NO");
var projectId = getItemValue(0,getRow(),"PROJECT_ID");
var result =AsControl.RunJavaMethodTrans("com.tenwa.gps.GpsController","queryOrder","userId=<%=userId%>,flowUnid=Á÷³ÌÍâ²éѯ,applyNo="+applyNo+",orderNo="+orderNo+",tableName=LM_GPS_ORDER,projectId="+projectId);

View File

@ -1,5 +1,6 @@
TYuserAccount=tianyitest
TYtoken=9999
TYsign=3474A2D7CFEC5DECD54DE8A263F7A4A9
TYsign2=3474a2d7cfec5decd54de8a263f7a4a9
TYUrl=http://121.43.178.183:9989/dispatch_intf/apiController/order
TYQueryOrderToVin=http://121.43.178.183:80/gps-intf/api2/getGpsInfosByCarVin

View File

@ -19,6 +19,7 @@ public class GpsCommon {
private static String TYuserAccount = GPSConfigure.get("TYuserAccount");
private static String TYtoken = GPSConfigure.get("TYtoken");
private static String TYsign = GPSConfigure.get("TYsign");
private static String TYsign2 = GPSConfigure.get("TYsign2");
/**
*
* 天易--编辑新增工单请求参数
@ -113,7 +114,7 @@ public class GpsCommon {
Map<String,String> params = new HashMap<String,String>();
params.put("userAccount",TYuserAccount);
params.put("token",TYtoken);
params.put("sign",TYsign);
params.put("sign",TYsign2);
params.put("carVin",vin);
return params;
}