| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- <?php
- /**
- * The manageLine view file of product module of ZenTaoPMS.
- * @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.zentao.net)
- * @license ZPL(https://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
- * @author Shujie Tian<tianshujie@easycorp.ltd>
- * @package product
- * @link https://www.zentao.net
- */
- namespace zin;
- jsVar('changeProgramTip', $lang->product->lineChangeProgram);
- $hasProgram = in_array($this->config->systemMode, array('ALM', 'PLM')) && helper::hasFeature('program');
- $tree = array();
- $formRowList = null;
- $formRowList[] = formRow
- (
- cell
- (
- setClass('flex flex-1'),
- formGroup
- (
- set::width($hasProgram ? '1/2' : 'full'),
- set::label($lang->product->lineName),
- set::labelClass('font-bold')
- ),
- $hasProgram ? formGroup
- (
- set::width('1/2'),
- set::className('ml-4'),
- set::label($lang->product->program),
- set::labelClass('font-bold required')
- ) : null
- ),
- cell
- (
- set::width('100px'),
- formGroup
- (
- span(setClass('form-label font-bold'), set::style(array('justify-content' =>'flex-start')), $lang->actions)
- )
- )
- );
- foreach($lines as $line)
- {
- $line->actions['items'][] = array('key' => 'delete', 'icon' => 'trash', 'className' => 'btn ghost toolbar-item square size-sm rounded ajax-submit', 'data-confirm' => $lang->product->confirmDeleteLine, 'url' => createLink('product', 'ajaxDeleteLine', 'lineID=' . $line->id));
- $formRowList[] = formRow
- (
- cell
- (
- setClass('flex flex-1'),
- formGroup
- (
- set::width($hasProgram ? '1/2' : 'full'),
- set::control(array('control' => 'text', 'id' => "modules_id{$line->id}")),
- set::name("modules[id$line->id]"),
- set::value($line->name)
- ),
- $hasProgram ? formGroup
- (
- set::width('1/2'),
- set::className('ml-4'),
- set::control(array('control' => 'picker', 'id' => "programs_id{$line->id}", 'required' => true)),
- set::name("programs[id$line->id]"),
- set::items($linePrograms[$line->id]),
- set::value($line->root),
- on::change('isProductLineEmpty')
- ) : null
- ),
- cell(set::width('100px'))
- );
- }
- for($i = 0; $i <= 5; $i ++)
- {
- $formRowList[] = formRow
- (
- set::className('line-row-add'),
- cell
- (
- setClass('flex flex-1'),
- formGroup
- (
- set::width($hasProgram ? '1/2' : 'full'),
- set::control(array('control' => 'text', 'id' => "modules_{$i}")),
- set::name("modules[$i]")
- ),
- $hasProgram ? formGroup
- (
- set::width('1/2'),
- set::className('ml-4'),
- set::control(array('control' => 'picker', 'id' => "programs_{$i}", 'required'=> true)),
- set::name("programs[$i]"),
- set::items($programs),
- set::value('0')
- ) : null
- ),
- cell
- (
- set::width('100px'),
- formGroup
- (
- setClass('ml-5 pl-2 flex self-center'),
- btn
- (
- setClass('btn btn-link text-gray addLine'),
- icon('plus'),
- on::click('addNewLine')
- ),
- btn
- (
- setClass('btn btn-link text-gray removeLine'),
- icon('trash'),
- on::click('removeLine')
- )
- )
- )
- );
- }
- jsVar('+index', $i);
- modalHeader(set::title($lang->product->manageLine), set::titleClass('text-lg font-bold'));
- div
- (
- set::className('flex'),
- cell
- (
- set::width('232px'),
- set::className('lineTree mr-1'),
- panel
- (
- set::title($lang->product->line),
- treeEditor
- (
- set::type('line'),
- set::items($lines),
- set::canEdit(false),
- set::canSplit(false),
- set::canDelete(false),
- set::sortable(),
- set::onSort(jsRaw('window.updateOrder'))
- )
- )
- ),
- cell
- (
- set::width('2/3'),
- form
- (
- set::submitBtnText($lang->save),
- set::className('border-b-0'),
- $formRowList
- )
- )
- );
- /* ====== Render page ====== */
- render();
|