首页 > 其他 > 详细

InventReserve on InventTable form button script

时间:2021-08-30 02:36:03      阅读:13      评论:0      收藏:0      [点我收藏+]

void clicked()
{
Args args;

FormRun formCreate;
FormRun formRun;
InventTrans invTrans;

MenuFunction menuFunction;
;
select invTrans
where invTrans.ItemId == InventTable.ItemId;


// Use whole table (i.e. No filtering, show all rows)
// Establish this form as the caller
args = new Args();
args.caller(element);
args.record(invTrans);
// Create a new MenuFunction that launches the Reserve Menu Item
menuFunction = new MenuFunction(
menuitemdisplaystr(InventReserve),
MenuItemType::Display);
menuFunction.run(args);

/*
//args = new Args();

args.name(formstr(InventOnhandReserve));

//args.caller(formRun);

//args.record();

args.parmObject(this);

formCreate = classfactory.formRunClass(args);
formCreate.init();
formCreate.run();
formCreate.wait();
*/

}

InventReserve on InventTable form button script

原文:https://www.cnblogs.com/lingdanglfw/p/15202613.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!