本文整理汇总了Java中com.openbravo.data.loader.SerializerWriteBasicExt类的典型用法代码示例。如果您正苦于以下问题:Java SerializerWriteBasicExt类的具体用法?Java SerializerWriteBasicExt怎么用?Java SerializerWriteBasicExt使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
SerializerWriteBasicExt类属于com.openbravo.data.loader包,在下文中一共展示了SerializerWriteBasicExt类的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: getReservationsUpdate
import com.openbravo.data.loader.SerializerWriteBasicExt; //导入依赖的package包/类
public final SentenceExec getReservationsUpdate() {
return new SentenceExecTransaction(s) {
public int execInTransaction(Object params) throws BasicException {
new PreparedSentence(s
, "DELETE FROM RESERVATION_CUSTOMERS WHERE ID = ?"
, new SerializerWriteBasicExt(customerdatas, new int[]{0})).exec(params);
if (((Object[]) params)[3] != null) {
new PreparedSentence(s
, "INSERT INTO RESERVATION_CUSTOMERS (ID, CUSTOMER) VALUES (?, ?)"
, new SerializerWriteBasicExt(customerdatas, new int[]{0, 3})).exec(params);
}
return new PreparedSentence(s
, "UPDATE RESERVATIONS SET ID = ?, CREATED = ?, DATENEW = ?, TITLE = ?, CHAIRS = ?, ISDONE = ?, DESCRIPTION = ? WHERE ID = ?"
, new SerializerWriteBasicExt(customerdatas, new int[]{0, 1, 2, 6, 7, 8, 9, 0})).exec(params);
}
};
}
开发者ID:iMartinezMateu,项目名称:openbravo-pos,代码行数:19,代码来源:DataLogicCustomers.java
示例2: getReservationsInsert
import com.openbravo.data.loader.SerializerWriteBasicExt; //导入依赖的package包/类
public final SentenceExec getReservationsInsert() {
return new SentenceExecTransaction(s) {
public int execInTransaction(Object params) throws BasicException {
int i = new PreparedSentence(s
, "INSERT INTO RESERVATIONS (ID, CREATED, DATENEW, TITLE, CHAIRS, ISDONE, DESCRIPTION) VALUES (?, ?, ?, ?, ?, ?, ?)"
, new SerializerWriteBasicExt(customerdatas, new int[]{0, 1, 2, 6, 7, 8, 9})).exec(params);
if (((Object[]) params)[3] != null) {
new PreparedSentence(s
, "INSERT INTO RESERVATION_CUSTOMERS (ID, CUSTOMER) VALUES (?, ?)"
, new SerializerWriteBasicExt(customerdatas, new int[]{0, 3})).exec(params);
}
return i;
}
};
}
开发者ID:iMartinezMateu,项目名称:openbravo-pos,代码行数:18,代码来源:DataLogicCustomers.java
示例3: updateSharedTicket
import com.openbravo.data.loader.SerializerWriteBasicExt; //导入依赖的package包/类
/**
*
* @param id
* @param ticket
* @param pickupid
* @throws BasicException
*/
public final void updateSharedTicket(final String id, final TicketInfo ticket, int pickupid) throws BasicException {
Object[] values = new Object[] {
id,
ticket.getName(),
ticket,
pickupid
};
Datas[] datas = new Datas[] {
Datas.STRING,
Datas.STRING,
Datas.SERIALIZABLE,
Datas.INT
};
new PreparedSentence(s
, "UPDATE SHAREDTICKETS SET "
+ "NAME = ?, "
+ "CONTENT = ?, "
+ "PICKUPID = ? "
+ "WHERE ID = ?"
, new SerializerWriteBasicExt(datas, new int[] {1, 2, 3, 0})).exec(values);
}
开发者ID:gnoopy,项目名称:wifepos,代码行数:30,代码来源:DataLogicReceipts.java
示例4: insertSharedTicket
import com.openbravo.data.loader.SerializerWriteBasicExt; //导入依赖的package包/类
/**
*
* @param id
* @param ticket
* @param pickupid
* @throws BasicException
*/
public final void insertSharedTicket(final String id, final TicketInfo ticket, int pickupid) throws BasicException {
Object[] values = new Object[] {
id,
ticket.getName(),
ticket, pickupid,
ticket.getUser()
};
Datas[] datas;
datas = new Datas[] {
Datas.STRING,
Datas.STRING,
Datas.SERIALIZABLE,
Datas.INT
};
new PreparedSentence(s
, "INSERT INTO SHAREDTICKETS ("
+ "ID, "
+ "NAME, "
+ "CONTENT, "
+ "PICKUPID) "
+ "VALUES (?, ?, ?, ?)"
, new SerializerWriteBasicExt(datas, new int[] {0, 1, 2, 3})).exec(values);
}
开发者ID:gnoopy,项目名称:wifepos,代码行数:32,代码来源:DataLogicReceipts.java
示例5: getReservationsUpdate
import com.openbravo.data.loader.SerializerWriteBasicExt; //导入依赖的package包/类
public final SentenceExec getReservationsUpdate() {
return new SentenceExecTransaction(s) {
public int execInTransaction(Object params) throws BasicException {
new PreparedSentence(s
, "DELETE FROM RESERVATION_CUSTOMERS WHERE ID = ?"
, new SerializerWriteBasicExt(customerdatas, new int[]{0})).exec(params);
if (((Object[]) params)[3] != null) {
new PreparedSentence(s
, "INSERT INTO RESERVATION_CUSTOMERS (ID, CUSTOMER) VALUES (?, ?)"
, new SerializerWriteBasicExt(customerdatas, new int[]{0, 3})).exec(params);
}
return new PreparedSentence(s
, "UPDATE RESERVATIONS SET ID = ?, CREATED = ?, DATENEW = ?, TITLE = ?, CHAIRS = ?, ISDONE = ?, DESCRIPTION = ? WHERE ID = ?"
, new SerializerWriteBasicExt(customerdatas, new int[]{0, 1, 2, 6, 7, 8, 9, 0})).exec(params);
}
};
}
开发者ID:nordpos,项目名称:nordpos,代码行数:19,代码来源:DataLogicCustomers.java
示例6: getReservationsInsert
import com.openbravo.data.loader.SerializerWriteBasicExt; //导入依赖的package包/类
public final SentenceExec getReservationsInsert() {
return new SentenceExecTransaction(s) {
public int execInTransaction(Object params) throws BasicException {
int i = new PreparedSentence(s
, "INSERT INTO RESERVATIONS (ID, CREATED, DATENEW, TITLE, CHAIRS, ISDONE, DESCRIPTION) VALUES (?, ?, ?, ?, ?, ?, ?)"
, new SerializerWriteBasicExt(customerdatas, new int[]{0, 1, 2, 6, 7, 8, 9})).exec(params);
if (((Object[]) params)[3] != null) {
new PreparedSentence(s
, "INSERT INTO RESERVATION_CUSTOMERS (ID, CUSTOMER) VALUES (?, ?)"
, new SerializerWriteBasicExt(customerdatas, new int[]{0, 3})).exec(params);
}
return i;
}
};
}
开发者ID:nordpos,项目名称:nordpos,代码行数:18,代码来源:DataLogicCustomers.java
示例7: updateSharedTicket
import com.openbravo.data.loader.SerializerWriteBasicExt; //导入依赖的package包/类
public final void updateSharedTicket(final String id, final TicketInfo ticket) throws BasicException {
Object[] values = new Object[] {id, ticket.getName(), ticket};
Datas[] datas = new Datas[] {Datas.STRING, Datas.STRING, Datas.SERIALIZABLE};
new PreparedSentence(s
, "UPDATE SHAREDTICKETS SET NAME = ?, CONTENT = ? WHERE ID = ?"
, new SerializerWriteBasicExt(datas, new int[] {1, 2, 0})).exec(values);
}
开发者ID:iMartinezMateu,项目名称:openbravo-pos,代码行数:9,代码来源:DataLogicReceipts.java
示例8: insertSharedTicket
import com.openbravo.data.loader.SerializerWriteBasicExt; //导入依赖的package包/类
public final void insertSharedTicket(final String id, final TicketInfo ticket) throws BasicException {
Object[] values = new Object[] {id, ticket.getName(), ticket};
Datas[] datas = new Datas[] {Datas.STRING, Datas.STRING, Datas.SERIALIZABLE};
new PreparedSentence(s
, "INSERT INTO SHAREDTICKETS (ID, NAME,CONTENT) VALUES (?, ?, ?)"
, new SerializerWriteBasicExt(datas, new int[] {0, 1, 2})).exec(values);
}
开发者ID:iMartinezMateu,项目名称:openbravo-pos,代码行数:10,代码来源:DataLogicReceipts.java
示例9: getReservationsDelete
import com.openbravo.data.loader.SerializerWriteBasicExt; //导入依赖的package包/类
public final SentenceExec getReservationsDelete() {
return new SentenceExecTransaction(s) {
public int execInTransaction(Object params) throws BasicException {
new PreparedSentence(s
, "DELETE FROM RESERVATION_CUSTOMERS WHERE ID = ?"
, new SerializerWriteBasicExt(customerdatas, new int[]{0})).exec(params);
return new PreparedSentence(s
, "DELETE FROM RESERVATIONS WHERE ID = ?"
, new SerializerWriteBasicExt(customerdatas, new int[]{0})).exec(params);
}
};
}
开发者ID:iMartinezMateu,项目名称:openbravo-pos,代码行数:14,代码来源:DataLogicCustomers.java
示例10: getReservationsDelete
import com.openbravo.data.loader.SerializerWriteBasicExt; //导入依赖的package包/类
public final SentenceExec getReservationsDelete() {
return new SentenceExecTransaction(s) {
public int execInTransaction(Object params) throws BasicException {
new PreparedSentence(s
, "DELETE FROM RESERVATION_CUSTOMERS WHERE ID = ?"
, new SerializerWriteBasicExt(customerdatas, new int[]{0})).exec(params);
return new PreparedSentence(s
, "DELETE FROM RESERVATIONS WHERE ID = ?"
, new SerializerWriteBasicExt(customerdatas, new int[]{0})).exec(params);
}
};
}
开发者ID:nordpos,项目名称:nordpos,代码行数:14,代码来源:DataLogicCustomers.java
示例11: init
import com.openbravo.data.loader.SerializerWriteBasicExt; //导入依赖的package包/类
protected void init() {
m_paramslocation = new JParamsLocation();
m_paramslocation.init(app);
m_paramslocation.addActionListener(new ReloadActionListener());
row = new Row(
new Field("ID", Datas.STRING, Formats.STRING),
new Field("PRODUCT_ID", Datas.STRING, Formats.STRING),
new Field(AppLocal.getIntString("label.prodref"), Datas.STRING, Formats.STRING, true, true, true),
new Field(AppLocal.getIntString("label.prodname"), Datas.STRING, Formats.STRING, true, true, true),
new Field("LOCATION", Datas.STRING, Formats.STRING),
new Field("STOCKSECURITY", Datas.DOUBLE, Formats.DOUBLE),
new Field("STOCKMAXIMUM", Datas.DOUBLE, Formats.DOUBLE),
new Field("UNITS", Datas.DOUBLE, Formats.DOUBLE)
);
lpr = new ListProviderCreator(new PreparedSentence(app.getSession(),
"SELECT L.ID, P.ID, P.REFERENCE, P.NAME," +
"L.STOCKSECURITY, L.STOCKMAXIMUM, COALESCE(S.SUMUNITS, 0) " +
"FROM PRODUCTS P " +
"LEFT OUTER JOIN (SELECT ID, PRODUCT, LOCATION, STOCKSECURITY, STOCKMAXIMUM FROM STOCKLEVEL WHERE LOCATION = ?) L ON P.ID = L.PRODUCT " +
"LEFT OUTER JOIN (SELECT PRODUCT, SUM(UNITS) AS SUMUNITS FROM STOCKCURRENT WHERE LOCATION = ? GROUP BY PRODUCT) S ON P.ID = S.PRODUCT " +
"ORDER BY P.NAME",
new SerializerWriteBasicExt(new Datas[] {Datas.OBJECT, Datas.STRING}, new int[]{1, 1}),
new WarehouseSerializerRead()
),
m_paramslocation);
SentenceExec updatesent = new SentenceExecTransaction(app.getSession()) {
public int execInTransaction(Object params) throws BasicException {
Object[] values = (Object[]) params;
if (values[0] == null) {
// INSERT
values[0] = UUID.randomUUID().toString();
return new PreparedSentence(app.getSession()
, "INSERT INTO STOCKLEVEL (ID, LOCATION, PRODUCT, STOCKSECURITY, STOCKMAXIMUM) VALUES (?, ?, ?, ?, ?)"
, new SerializerWriteBasicExt(row.getDatas(), new int[] {0, 4, 1, 5, 6})).exec(params);
} else {
// UPDATE
return new PreparedSentence(app.getSession()
, "UPDATE STOCKLEVEL SET STOCKSECURITY = ?, STOCKMAXIMUM = ? WHERE ID = ?"
, new SerializerWriteBasicExt(row.getDatas(), new int[] {5, 6, 0})).exec(params);
}
}
};
spr = new SaveProvider(updatesent, null, null);
jeditor = new ProductsWarehouseEditor(dirty);
}
开发者ID:iMartinezMateu,项目名称:openbravo-pos,代码行数:53,代码来源:ProductsWarehousePanel.java
注:本文中的com.openbravo.data.loader.SerializerWriteBasicExt类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论