Exemplo n.º 1
0
func (c *PimProductList) Render() web.Result {
	d := []ent.PimProduct{}

	q := biz.PimProduct.Select()
	err := q.Parse(c.Cond).Rows(&d)
	if err != nil {
		return web.Fail(err)
	}

	return web.Done(d)
}
Exemplo n.º 2
0
func (c *MrkPromotionList) Render() web.Result {
	d := []ent.MrkPromotion{}

	q := biz.MrkPromotion.Select()
	err := q.Parse(c.Cond).Rows(&d)
	if err != nil {
		return web.Fail(err)
	}

	return web.Done(d)
}
Exemplo n.º 3
0
func (c *SrmSupplierList) Render() web.Result {
	d := []ent.SrmSupplier{}

	q := biz.SrmSupplier.Select()
	err := q.Parse(c.Cond).Rows(&d)
	if err != nil {
		return web.Fail(err)
	}

	return web.Done(d)
}
Exemplo n.º 4
0
func (c *WhlOrderSkuList) Render() web.Result {
	d := []ent.WhlOrderSku{}

	q := biz.WhlOrderSku.Select()
	err := q.Parse(c.Cond).Rows(&d)
	if err != nil {
		return web.Fail(err)
	}

	return web.Done(d)
}
Exemplo n.º 5
0
func (c *InvLogList) Render() web.Result {
	d := []ent.InvLog{}

	q := biz.InvLog.Select()
	err := q.Parse(c.Cond).Rows(&d)
	if err != nil {
		return web.Fail(err)
	}

	return web.Done(d)
}
Exemplo n.º 6
0
func (c *MrkPriceEdit) Render() web.Result {
	return web.Done(1)
}
Exemplo n.º 7
0
func (c *InvLogDelete) Render() web.Result {
	return web.Done(1)
}
Exemplo n.º 8
0
func (c *IdmLoginDelete) Render() web.Result {
	return web.Done(1)
}
Exemplo n.º 9
0
func (c *InvLogEdit) Render() web.Result {
	return web.Done(1)
}
Exemplo n.º 10
0
func (c *RetCustomerDelete) Render() web.Result {
	return web.Done(1)
}
Exemplo n.º 11
0
func (c *MrkPromotionDelete) Render() web.Result {
	return web.Done(1)
}
Exemplo n.º 12
0
func (c *MrkPriceDelete) Render() web.Result {
	return web.Done(1)
}
Exemplo n.º 13
0
func (c *PimProductDelete) Render() web.Result {
	return web.Done(1)
}
Exemplo n.º 14
0
func (c *SrmSupplierEdit) Render() web.Result {
	return web.Done(1)
}
Exemplo n.º 15
0
func (c *SrmSupplierDelete) Render() web.Result {
	return web.Done(1)
}
Exemplo n.º 16
0
func (c *PimSkuDelete) Render() web.Result {
	return web.Done(1)
}
Exemplo n.º 17
0
func (c *PimSkuEdit) Render() web.Result {
	return web.Done(1)
}
Exemplo n.º 18
0
func (c *PimColorEdit) Render() web.Result {
	return web.Done(1)
}
Exemplo n.º 19
0
func (c *PimTaxonomyDelete) Render() web.Result {
	return web.Done(1)
}
Exemplo n.º 20
0
func (c *PimTaxonomyEdit) Render() web.Result {
	return web.Done(1)
}
Exemplo n.º 21
0
func (c *PimProductEdit) Render() web.Result {
	return web.Done(1)
}
Exemplo n.º 22
0
func (c *WhlOrderSkuEdit) Render() web.Result {
	return web.Done(1)
}
Exemplo n.º 23
0
func (c *IdmRoleActionEdit) Render() web.Result {
	return web.Done(1)
}
Exemplo n.º 24
0
func (c *RetCustomerEdit) Render() web.Result {
	return web.Done(1)
}
Exemplo n.º 25
0
func (c *WhlOrderSkuDelete) Render() web.Result {
	return web.Done(1)
}
Exemplo n.º 26
0
func (c *IdmRoleActionDelete) Render() web.Result {
	return web.Done(1)
}
Exemplo n.º 27
0
func (c *MrkPromotionEdit) Render() web.Result {
	return web.Done(1)
}
Exemplo n.º 28
0
func (c *IdmUserRoleEdit) Render() web.Result {
	return web.Done(1)
}
Exemplo n.º 29
0
func (c *IdmUserRoleDelete) Render() web.Result {
	return web.Done(1)
}
Exemplo n.º 30
0
func (c *IdmLoginEdit) Render() web.Result {
	return web.Done(1)
}