本文整理汇总了PHP中subinventory::findBy_parameter_withOrgDetails方法的典型用法代码示例。如果您正苦于以下问题:PHP subinventory::findBy_parameter_withOrgDetails方法的具体用法?PHP subinventory::findBy_parameter_withOrgDetails怎么用?PHP subinventory::findBy_parameter_withOrgDetails使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类subinventory
的用法示例。
在下文中一共展示了subinventory::findBy_parameter_withOrgDetails方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: switch
$param = get_postArray_From_jqSearializedArray($_GET['print_parameters']);
$sl = new bc_static_label();
$sl->findBy_id($_GET['bc_static_label_id']);
switch ($sl->label_type) {
case 'LOCATOR':
$locator = new locator_v();
$locator->org_id = !empty($param['org_id'][0]) ? $param['org_id'][0] : '';
$locator->subinventory_id = !empty($param['subinventory_id'][0]) ? $param['subinventory_id'][0] : '';
$locator->locator_id = !empty($param['locator_id'][0]) ? $param['locator_id'][0] : '';
$data_obj_a = $locator->findBy_parameter();
break;
case 'SUBINV':
$sub = new subinventory();
$sub->org_id = !empty($param['org_id'][0]) ? $param['org_id'][0] : '';
$sub->subinventory_id = !empty($param['subinventory_id'][0]) ? $param['subinventory_id'][0] : '';
$data_obj_a = $sub->findBy_parameter_withOrgDetails();
break;
case 'ORG':
case 'INV':
$org_id = !empty($param['org_id'][0]) ? $param['org_id'][0] : '';
$data_obj_a = org::find_by_id($org_id);
break;
default:
break;
}
if (!empty($data_obj_a) && is_array($data_obj_a)) {
foreach ($data_obj_a as $data_obj) {
$bc_lr = new bc_label_request();
$bc_lr->sys_printer_id = $sl->sys_printer_id;
$bc_lr->bc_label_format_header_id = $sl->bc_label_format_header_id;
$xml_content = $bc_lr->generate_label($data_obj);