订单rpc
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
505 B

package orderrpc
import (
"testing"
)
func Test_CreateByCart(t *testing.T) {
products := []map[string]string{
map[string]string{
"product_id": "18",
"sku_id": "6",
"quantity": "3",
},
map[string]string{
"product_id": "6",
"sku_id": "7",
"quantity": "2",
},
}
data := map[string]interface{}{
"product": products,
"name": "5BC02AB31C",
"mobile": "326598744",
}
ret, err := CreateByCart("test1_tetele_com", "100064", data)
t.Log(ret)
t.Log(err)
}