當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Invoice::canEditItem方法代碼示例

本文整理匯總了PHP中app\models\Invoice::canEditItem方法的典型用法代碼示例。如果您正苦於以下問題:PHP Invoice::canEditItem方法的具體用法?PHP Invoice::canEditItem怎麽用?PHP Invoice::canEditItem使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在app\models\Invoice的用法示例。


在下文中一共展示了Invoice::canEditItem方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: getDatatableActions

 protected function getDatatableActions($entityType)
 {
     return [[trans('texts.edit_invoice'), function ($model) {
         return URL::to("invoices/{$model->public_id}/edit");
     }, function ($model) {
         return Invoice::canEditItem($model);
     }]];
 }
開發者ID:sseshachala,項目名稱:invoiceninja,代碼行數:8,代碼來源:RecurringInvoiceService.php

示例2: getDatatableActions

 protected function getDatatableActions($entityType)
 {
     return [[trans("texts.edit_{$entityType}"), function ($model) use($entityType) {
         return URL::to("{$entityType}s/{$model->public_id}/edit");
     }, function ($model) {
         return Invoice::canEditItem($model);
     }], [trans("texts.clone_{$entityType}"), function ($model) use($entityType) {
         return URL::to("{$entityType}s/{$model->public_id}/clone");
     }, function ($model) {
         return Invoice::canCreate();
     }], [trans("texts.view_history"), function ($model) use($entityType) {
         return URL::to("{$entityType}s/{$entityType}_history/{$model->public_id}");
     }], ['--divider--', function () {
         return false;
     }, function ($model) {
         return Invoice::canEditItem($model) || Payment::canCreate();
     }], [trans("texts.mark_sent"), function ($model) {
         return "javascript:markEntity({$model->public_id})";
     }, function ($model) {
         return $model->invoice_status_id < INVOICE_STATUS_SENT && Invoice::canEditItem($model);
     }], [trans('texts.enter_payment'), function ($model) {
         return URL::to("payments/create/{$model->client_public_id}/{$model->public_id}");
     }, function ($model) use($entityType) {
         return $entityType == ENTITY_INVOICE && $model->balance > 0 && Payment::canCreate();
     }], [trans("texts.view_quote"), function ($model) {
         return URL::to("quotes/{$model->quote_id}/edit");
     }, function ($model) use($entityType) {
         return $entityType == ENTITY_INVOICE && $model->quote_id && Invoice::canEditItem($model);
     }], [trans("texts.view_invoice"), function ($model) {
         return URL::to("invoices/{$model->quote_invoice_id}/edit");
     }, function ($model) use($entityType) {
         return $entityType == ENTITY_QUOTE && $model->quote_invoice_id && Invoice::canEditItem($model);
     }], [trans("texts.convert_to_invoice"), function ($model) {
         return "javascript:convertEntity({$model->public_id})";
     }, function ($model) use($entityType) {
         return $entityType == ENTITY_QUOTE && !$model->quote_invoice_id && Invoice::canEditItem($model);
     }]];
 }
開發者ID:sseshachala,項目名稱:invoiceninja,代碼行數:38,代碼來源:InvoiceService.php


注:本文中的app\models\Invoice::canEditItem方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。