1
22
23 package com.liferay.portlet.shopping.service;
24
25
26
46 public class ShoppingCouponLocalServiceUtil {
47 public static com.liferay.portlet.shopping.model.ShoppingCoupon addShoppingCoupon(
48 com.liferay.portlet.shopping.model.ShoppingCoupon shoppingCoupon)
49 throws com.liferay.portal.SystemException {
50 return getService().addShoppingCoupon(shoppingCoupon);
51 }
52
53 public static com.liferay.portlet.shopping.model.ShoppingCoupon createShoppingCoupon(
54 long couponId) {
55 return getService().createShoppingCoupon(couponId);
56 }
57
58 public static void deleteShoppingCoupon(long couponId)
59 throws com.liferay.portal.PortalException,
60 com.liferay.portal.SystemException {
61 getService().deleteShoppingCoupon(couponId);
62 }
63
64 public static void deleteShoppingCoupon(
65 com.liferay.portlet.shopping.model.ShoppingCoupon shoppingCoupon)
66 throws com.liferay.portal.SystemException {
67 getService().deleteShoppingCoupon(shoppingCoupon);
68 }
69
70 public static java.util.List<Object> dynamicQuery(
71 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
72 throws com.liferay.portal.SystemException {
73 return getService().dynamicQuery(dynamicQuery);
74 }
75
76 public static java.util.List<Object> dynamicQuery(
77 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
78 int end) throws com.liferay.portal.SystemException {
79 return getService().dynamicQuery(dynamicQuery, start, end);
80 }
81
82 public static com.liferay.portlet.shopping.model.ShoppingCoupon getShoppingCoupon(
83 long couponId)
84 throws com.liferay.portal.PortalException,
85 com.liferay.portal.SystemException {
86 return getService().getShoppingCoupon(couponId);
87 }
88
89 public static java.util.List<com.liferay.portlet.shopping.model.ShoppingCoupon> getShoppingCoupons(
90 int start, int end) throws com.liferay.portal.SystemException {
91 return getService().getShoppingCoupons(start, end);
92 }
93
94 public static int getShoppingCouponsCount()
95 throws com.liferay.portal.SystemException {
96 return getService().getShoppingCouponsCount();
97 }
98
99 public static com.liferay.portlet.shopping.model.ShoppingCoupon updateShoppingCoupon(
100 com.liferay.portlet.shopping.model.ShoppingCoupon shoppingCoupon)
101 throws com.liferay.portal.SystemException {
102 return getService().updateShoppingCoupon(shoppingCoupon);
103 }
104
105 public static com.liferay.portlet.shopping.model.ShoppingCoupon updateShoppingCoupon(
106 com.liferay.portlet.shopping.model.ShoppingCoupon shoppingCoupon,
107 boolean merge) throws com.liferay.portal.SystemException {
108 return getService().updateShoppingCoupon(shoppingCoupon, merge);
109 }
110
111 public static com.liferay.portlet.shopping.model.ShoppingCoupon addCoupon(
112 long userId, java.lang.String code, boolean autoCode,
113 java.lang.String name, java.lang.String description,
114 int startDateMonth, int startDateDay, int startDateYear,
115 int startDateHour, int startDateMinute, int endDateMonth,
116 int endDateDay, int endDateYear, int endDateHour, int endDateMinute,
117 boolean neverExpire, boolean active, java.lang.String limitCategories,
118 java.lang.String limitSkus, double minOrder, double discount,
119 java.lang.String discountType,
120 com.liferay.portal.service.ServiceContext serviceContext)
121 throws com.liferay.portal.PortalException,
122 com.liferay.portal.SystemException {
123 return getService()
124 .addCoupon(userId, code, autoCode, name, description,
125 startDateMonth, startDateDay, startDateYear, startDateHour,
126 startDateMinute, endDateMonth, endDateDay, endDateYear,
127 endDateHour, endDateMinute, neverExpire, active, limitCategories,
128 limitSkus, minOrder, discount, discountType, serviceContext);
129 }
130
131 public static void deleteCoupon(long couponId)
132 throws com.liferay.portal.PortalException,
133 com.liferay.portal.SystemException {
134 getService().deleteCoupon(couponId);
135 }
136
137 public static void deleteCoupons(long groupId)
138 throws com.liferay.portal.SystemException {
139 getService().deleteCoupons(groupId);
140 }
141
142 public static com.liferay.portlet.shopping.model.ShoppingCoupon getCoupon(
143 long couponId)
144 throws com.liferay.portal.PortalException,
145 com.liferay.portal.SystemException {
146 return getService().getCoupon(couponId);
147 }
148
149 public static com.liferay.portlet.shopping.model.ShoppingCoupon getCoupon(
150 java.lang.String code)
151 throws com.liferay.portal.PortalException,
152 com.liferay.portal.SystemException {
153 return getService().getCoupon(code);
154 }
155
156 public static java.util.List<com.liferay.portlet.shopping.model.ShoppingCoupon> search(
157 long groupId, long companyId, java.lang.String code, boolean active,
158 java.lang.String discountType, boolean andOperator, int start, int end)
159 throws com.liferay.portal.SystemException {
160 return getService()
161 .search(groupId, companyId, code, active, discountType,
162 andOperator, start, end);
163 }
164
165 public static int searchCount(long groupId, long companyId,
166 java.lang.String code, boolean active, java.lang.String discountType,
167 boolean andOperator) throws com.liferay.portal.SystemException {
168 return getService()
169 .searchCount(groupId, companyId, code, active, discountType,
170 andOperator);
171 }
172
173 public static com.liferay.portlet.shopping.model.ShoppingCoupon updateCoupon(
174 long userId, long couponId, java.lang.String name,
175 java.lang.String description, int startDateMonth, int startDateDay,
176 int startDateYear, int startDateHour, int startDateMinute,
177 int endDateMonth, int endDateDay, int endDateYear, int endDateHour,
178 int endDateMinute, boolean neverExpire, boolean active,
179 java.lang.String limitCategories, java.lang.String limitSkus,
180 double minOrder, double discount, java.lang.String discountType,
181 com.liferay.portal.service.ServiceContext serviceContext)
182 throws com.liferay.portal.PortalException,
183 com.liferay.portal.SystemException {
184 return getService()
185 .updateCoupon(userId, couponId, name, description,
186 startDateMonth, startDateDay, startDateYear, startDateHour,
187 startDateMinute, endDateMonth, endDateDay, endDateYear,
188 endDateHour, endDateMinute, neverExpire, active, limitCategories,
189 limitSkus, minOrder, discount, discountType, serviceContext);
190 }
191
192 public static ShoppingCouponLocalService getService() {
193 if (_service == null) {
194 throw new RuntimeException("ShoppingCouponLocalService is not set");
195 }
196
197 return _service;
198 }
199
200 public void setService(ShoppingCouponLocalService service) {
201 _service = service;
202 }
203
204 private static ShoppingCouponLocalService _service;
205 }