|
|
|
@ -127,6 +127,15 @@ namespace BWP.B3WeChat.Rpcs |
|
|
|
return dic; |
|
|
|
} |
|
|
|
|
|
|
|
[Rpc] |
|
|
|
public static void CleanByDependOn(string dependOn) |
|
|
|
{ |
|
|
|
var context = CustomerUserContext.Current; |
|
|
|
var del = new DQDeleteDom(typeof(ApproveMessage)); |
|
|
|
del.Where.Conditions.Add(DQCondition.EQ("DependOn", dependOn)); |
|
|
|
del.Where.Conditions.Add(DQCondition.EQ("CustomerCode", context.CustomerCode)); |
|
|
|
del.EExecute(); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
[Rpc] |
|
|
|
|