This commit is contained in:
2020-12-01 19:12:13 +00:00
parent 50eb631d51
commit f23a3ebed5
3 changed files with 65 additions and 1 deletions

View File

@@ -280,6 +280,12 @@ namespace AyaNova.Util
cmd.Connection = conn;
cmd.CommandText = "update auser set customerid=null;";
await cmd.ExecuteNonQueryAsync();
cmd.CommandText = "update auser set headofficeid=null;";
await cmd.ExecuteNonQueryAsync();
cmd.CommandText = "update auser set vendorid=null;";
await cmd.ExecuteNonQueryAsync();
}