| 123456789101112131415161718192021 |
- package titemgroup;
- import baseclass.DataBeanCust;
- import p2.util.P2Exception;
- public class titemgroupDataBean extends DataBeanCust {
- @Override
- public int TOGGLEDELETEROW() throws P2Exception {
- super.TOGGLEDELETEROW();
- titemgroup titemgroup = (titemgroup) parent.getPao();
- titemgroup.reflashSaleclsnum();
- parent.save();
- byrefresh();
- return 1;
- }
- public int ADDROWS() throws P2Exception {
- return 2;
- }
- }
|