27 lines
892 B
Java
27 lines
892 B
Java
package com.tenwa.apzl.discount;
|
|
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
import com.amarsoft.are.jbo.BizObject;
|
|
import com.amarsoft.are.jbo.JBOTransaction;
|
|
import com.amarsoft.awe.util.SqlObject;
|
|
import com.amarsoft.awe.util.Transaction;
|
|
import com.amarsoft.context.ASUser;
|
|
import com.tenwa.officetempalte.importcallback.impl.BaseImportExcelCallBack;
|
|
|
|
public class ModelLibraryImport extends BaseImportExcelCallBack{
|
|
|
|
@Override
|
|
public void run(ASUser CurUser, BizObject importObject,Map<String, String> model, Integer rowIndex, JBOTransaction tx,Transaction Sqlca) throws Exception {
|
|
|
|
|
|
}
|
|
@Override
|
|
public void runAfter(ASUser CurUser, Map<String, String> model, List<BizObject> importObjects, JBOTransaction tx,
|
|
Transaction Sqlca) throws Exception {
|
|
// ÉÌÓóµ³µÐ͵¼ÈëÅäÖÃ
|
|
Sqlca.executeSQL(new SqlObject("{call proc_insert_shangyongche()}"));
|
|
}
|
|
}
|