+ TestGetSelfTakeCode

This commit is contained in:
gazebo
2019-09-03 18:28:06 +08:00
parent d54a4f569a
commit 3eb83f4dfc

View File

@@ -39,3 +39,11 @@ func TestListOrders(t *testing.T) {
}
t.Log(utils.Format4Output(result, false))
}
func TestGetSelfTakeCode(t *testing.T) {
selfTakeCode, err := CurPurchaseHandler.GetSelfTakeCode(jxcontext.AdminCtx, "921160248000222")
if err != nil {
t.Fatal(err.Error())
}
t.Log(selfTakeCode)
}